swagger: "2.0" host: kubernetes.local info: contact: x-twitter: kubernetesio title: Kubernetes version: v1.10.0 x-apisguru-categories: - developer_tools x-logo: url: https://upload.wikimedia.org/wikipedia/commons/3/39/Kubernetes_logo_without_workmark.svg x-origin: - format: swagger url: https://raw.githubusercontent.com/kubernetes/kubernetes/v1.10.0/api/openapi-spec/swagger.json version: "2.0" x-preferred: false x-providerName: kubernetes.io securityDefinitions: BearerToken: description: Bearer Token authentication in: header name: authorization type: apiKey security: - BearerToken: [] paths: /api/: get: consumes: - application/json - application/yaml - application/vnd.kubernetes.protobuf description: get available API versions operationId: getCoreAPIVersions produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIVersions" "401": description: Unauthorized schemes: - https tags: - core /api/v1/: get: consumes: - application/json - application/yaml - application/vnd.kubernetes.protobuf description: get available resources operationId: getCoreV1APIResources produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList" "401": description: Unauthorized schemes: - https tags: - core_v1 /api/v1/componentstatuses: get: consumes: - "*/*" description: list objects of kind ComponentStatus operationId: listCoreV1ComponentStatus produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.core.v1.ComponentStatusList" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: list x-kubernetes-group-version-kind: group: "" kind: ComponentStatus version: v1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true "/api/v1/componentstatuses/{name}": get: consumes: - "*/*" description: read the specified ComponentStatus operationId: readCoreV1ComponentStatus produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.core.v1.ComponentStatus" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: get x-kubernetes-group-version-kind: group: "" kind: ComponentStatus version: v1 parameters: - description: name of the ComponentStatus in: path name: name required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true /api/v1/configmaps: get: consumes: - "*/*" description: list or watch objects of kind ConfigMap operationId: listCoreV1ConfigMapForAllNamespaces produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.core.v1.ConfigMapList" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: list x-kubernetes-group-version-kind: group: "" kind: ConfigMap version: v1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true /api/v1/endpoints: get: consumes: - "*/*" description: list or watch objects of kind Endpoints operationId: listCoreV1EndpointsForAllNamespaces produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.core.v1.EndpointsList" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: list x-kubernetes-group-version-kind: group: "" kind: Endpoints version: v1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true /api/v1/events: get: consumes: - "*/*" description: list or watch objects of kind Event operationId: listCoreV1EventForAllNamespaces produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.core.v1.EventList" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: list x-kubernetes-group-version-kind: group: "" kind: Event version: v1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true /api/v1/limitranges: get: consumes: - "*/*" description: list or watch objects of kind LimitRange operationId: listCoreV1LimitRangeForAllNamespaces produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.core.v1.LimitRangeList" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: list x-kubernetes-group-version-kind: group: "" kind: LimitRange version: v1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true /api/v1/namespaces: get: consumes: - "*/*" description: list or watch objects of kind Namespace operationId: listCoreV1Namespace parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.core.v1.NamespaceList" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: list x-kubernetes-group-version-kind: group: "" kind: Namespace version: v1 parameters: - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true post: consumes: - "*/*" description: create a Namespace operationId: createCoreV1Namespace parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.core.v1.Namespace" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.core.v1.Namespace" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.core.v1.Namespace" "202": description: Accepted schema: $ref: "#/definitions/io.k8s.api.core.v1.Namespace" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: post x-kubernetes-group-version-kind: group: "" kind: Namespace version: v1 "/api/v1/namespaces/{namespace}/bindings": parameters: - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true post: consumes: - "*/*" description: create a Binding operationId: createCoreV1NamespacedBinding parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.core.v1.Binding" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.core.v1.Binding" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.core.v1.Binding" "202": description: Accepted schema: $ref: "#/definitions/io.k8s.api.core.v1.Binding" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: post x-kubernetes-group-version-kind: group: "" kind: Binding version: v1 "/api/v1/namespaces/{namespace}/configmaps": delete: consumes: - "*/*" description: delete collection of ConfigMap operationId: deleteCoreV1CollectionNamespacedConfigMap parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: deletecollection x-kubernetes-group-version-kind: group: "" kind: ConfigMap version: v1 get: consumes: - "*/*" description: list or watch objects of kind ConfigMap operationId: listCoreV1NamespacedConfigMap parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.core.v1.ConfigMapList" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: list x-kubernetes-group-version-kind: group: "" kind: ConfigMap version: v1 parameters: - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true post: consumes: - "*/*" description: create a ConfigMap operationId: createCoreV1NamespacedConfigMap parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.core.v1.ConfigMap" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.core.v1.ConfigMap" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.core.v1.ConfigMap" "202": description: Accepted schema: $ref: "#/definitions/io.k8s.api.core.v1.ConfigMap" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: post x-kubernetes-group-version-kind: group: "" kind: ConfigMap version: v1 "/api/v1/namespaces/{namespace}/configmaps/{name}": delete: consumes: - "*/*" description: delete a ConfigMap operationId: deleteCoreV1NamespacedConfigMap parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" - description: The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. in: query name: gracePeriodSeconds type: integer uniqueItems: true - description: "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both." in: query name: orphanDependents type: boolean uniqueItems: true - description: "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground." in: query name: propagationPolicy type: string uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: delete x-kubernetes-group-version-kind: group: "" kind: ConfigMap version: v1 get: consumes: - "*/*" description: read the specified ConfigMap operationId: readCoreV1NamespacedConfigMap parameters: - description: Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. in: query name: exact type: boolean uniqueItems: true - description: Should this value be exported. Export strips fields that a user can not specify. in: query name: export type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.core.v1.ConfigMap" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: get x-kubernetes-group-version-kind: group: "" kind: ConfigMap version: v1 parameters: - description: name of the ConfigMap in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true patch: consumes: - application/json-patch+json - application/merge-patch+json - application/strategic-merge-patch+json description: partially update the specified ConfigMap operationId: patchCoreV1NamespacedConfigMap parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.core.v1.ConfigMap" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: patch x-kubernetes-group-version-kind: group: "" kind: ConfigMap version: v1 put: consumes: - "*/*" description: replace the specified ConfigMap operationId: replaceCoreV1NamespacedConfigMap parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.core.v1.ConfigMap" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.core.v1.ConfigMap" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.core.v1.ConfigMap" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: put x-kubernetes-group-version-kind: group: "" kind: ConfigMap version: v1 "/api/v1/namespaces/{namespace}/endpoints": delete: consumes: - "*/*" description: delete collection of Endpoints operationId: deleteCoreV1CollectionNamespacedEndpoints parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: deletecollection x-kubernetes-group-version-kind: group: "" kind: Endpoints version: v1 get: consumes: - "*/*" description: list or watch objects of kind Endpoints operationId: listCoreV1NamespacedEndpoints parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.core.v1.EndpointsList" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: list x-kubernetes-group-version-kind: group: "" kind: Endpoints version: v1 parameters: - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true post: consumes: - "*/*" description: create Endpoints operationId: createCoreV1NamespacedEndpoints parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.core.v1.Endpoints" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.core.v1.Endpoints" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.core.v1.Endpoints" "202": description: Accepted schema: $ref: "#/definitions/io.k8s.api.core.v1.Endpoints" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: post x-kubernetes-group-version-kind: group: "" kind: Endpoints version: v1 "/api/v1/namespaces/{namespace}/endpoints/{name}": delete: consumes: - "*/*" description: delete Endpoints operationId: deleteCoreV1NamespacedEndpoints parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" - description: The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. in: query name: gracePeriodSeconds type: integer uniqueItems: true - description: "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both." in: query name: orphanDependents type: boolean uniqueItems: true - description: "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground." in: query name: propagationPolicy type: string uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: delete x-kubernetes-group-version-kind: group: "" kind: Endpoints version: v1 get: consumes: - "*/*" description: read the specified Endpoints operationId: readCoreV1NamespacedEndpoints parameters: - description: Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. in: query name: exact type: boolean uniqueItems: true - description: Should this value be exported. Export strips fields that a user can not specify. in: query name: export type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.core.v1.Endpoints" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: get x-kubernetes-group-version-kind: group: "" kind: Endpoints version: v1 parameters: - description: name of the Endpoints in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true patch: consumes: - application/json-patch+json - application/merge-patch+json - application/strategic-merge-patch+json description: partially update the specified Endpoints operationId: patchCoreV1NamespacedEndpoints parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.core.v1.Endpoints" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: patch x-kubernetes-group-version-kind: group: "" kind: Endpoints version: v1 put: consumes: - "*/*" description: replace the specified Endpoints operationId: replaceCoreV1NamespacedEndpoints parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.core.v1.Endpoints" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.core.v1.Endpoints" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.core.v1.Endpoints" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: put x-kubernetes-group-version-kind: group: "" kind: Endpoints version: v1 "/api/v1/namespaces/{namespace}/events": delete: consumes: - "*/*" description: delete collection of Event operationId: deleteCoreV1CollectionNamespacedEvent parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: deletecollection x-kubernetes-group-version-kind: group: "" kind: Event version: v1 get: consumes: - "*/*" description: list or watch objects of kind Event operationId: listCoreV1NamespacedEvent parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.core.v1.EventList" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: list x-kubernetes-group-version-kind: group: "" kind: Event version: v1 parameters: - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true post: consumes: - "*/*" description: create an Event operationId: createCoreV1NamespacedEvent parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.core.v1.Event" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.core.v1.Event" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.core.v1.Event" "202": description: Accepted schema: $ref: "#/definitions/io.k8s.api.core.v1.Event" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: post x-kubernetes-group-version-kind: group: "" kind: Event version: v1 "/api/v1/namespaces/{namespace}/events/{name}": delete: consumes: - "*/*" description: delete an Event operationId: deleteCoreV1NamespacedEvent parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" - description: The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. in: query name: gracePeriodSeconds type: integer uniqueItems: true - description: "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both." in: query name: orphanDependents type: boolean uniqueItems: true - description: "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground." in: query name: propagationPolicy type: string uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: delete x-kubernetes-group-version-kind: group: "" kind: Event version: v1 get: consumes: - "*/*" description: read the specified Event operationId: readCoreV1NamespacedEvent parameters: - description: Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. in: query name: exact type: boolean uniqueItems: true - description: Should this value be exported. Export strips fields that a user can not specify. in: query name: export type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.core.v1.Event" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: get x-kubernetes-group-version-kind: group: "" kind: Event version: v1 parameters: - description: name of the Event in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true patch: consumes: - application/json-patch+json - application/merge-patch+json - application/strategic-merge-patch+json description: partially update the specified Event operationId: patchCoreV1NamespacedEvent parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.core.v1.Event" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: patch x-kubernetes-group-version-kind: group: "" kind: Event version: v1 put: consumes: - "*/*" description: replace the specified Event operationId: replaceCoreV1NamespacedEvent parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.core.v1.Event" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.core.v1.Event" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.core.v1.Event" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: put x-kubernetes-group-version-kind: group: "" kind: Event version: v1 "/api/v1/namespaces/{namespace}/limitranges": delete: consumes: - "*/*" description: delete collection of LimitRange operationId: deleteCoreV1CollectionNamespacedLimitRange parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: deletecollection x-kubernetes-group-version-kind: group: "" kind: LimitRange version: v1 get: consumes: - "*/*" description: list or watch objects of kind LimitRange operationId: listCoreV1NamespacedLimitRange parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.core.v1.LimitRangeList" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: list x-kubernetes-group-version-kind: group: "" kind: LimitRange version: v1 parameters: - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true post: consumes: - "*/*" description: create a LimitRange operationId: createCoreV1NamespacedLimitRange parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.core.v1.LimitRange" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.core.v1.LimitRange" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.core.v1.LimitRange" "202": description: Accepted schema: $ref: "#/definitions/io.k8s.api.core.v1.LimitRange" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: post x-kubernetes-group-version-kind: group: "" kind: LimitRange version: v1 "/api/v1/namespaces/{namespace}/limitranges/{name}": delete: consumes: - "*/*" description: delete a LimitRange operationId: deleteCoreV1NamespacedLimitRange parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" - description: The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. in: query name: gracePeriodSeconds type: integer uniqueItems: true - description: "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both." in: query name: orphanDependents type: boolean uniqueItems: true - description: "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground." in: query name: propagationPolicy type: string uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: delete x-kubernetes-group-version-kind: group: "" kind: LimitRange version: v1 get: consumes: - "*/*" description: read the specified LimitRange operationId: readCoreV1NamespacedLimitRange parameters: - description: Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. in: query name: exact type: boolean uniqueItems: true - description: Should this value be exported. Export strips fields that a user can not specify. in: query name: export type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.core.v1.LimitRange" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: get x-kubernetes-group-version-kind: group: "" kind: LimitRange version: v1 parameters: - description: name of the LimitRange in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true patch: consumes: - application/json-patch+json - application/merge-patch+json - application/strategic-merge-patch+json description: partially update the specified LimitRange operationId: patchCoreV1NamespacedLimitRange parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.core.v1.LimitRange" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: patch x-kubernetes-group-version-kind: group: "" kind: LimitRange version: v1 put: consumes: - "*/*" description: replace the specified LimitRange operationId: replaceCoreV1NamespacedLimitRange parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.core.v1.LimitRange" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.core.v1.LimitRange" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.core.v1.LimitRange" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: put x-kubernetes-group-version-kind: group: "" kind: LimitRange version: v1 "/api/v1/namespaces/{namespace}/persistentvolumeclaims": delete: consumes: - "*/*" description: delete collection of PersistentVolumeClaim operationId: deleteCoreV1CollectionNamespacedPersistentVolumeClaim parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: deletecollection x-kubernetes-group-version-kind: group: "" kind: PersistentVolumeClaim version: v1 get: consumes: - "*/*" description: list or watch objects of kind PersistentVolumeClaim operationId: listCoreV1NamespacedPersistentVolumeClaim parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaimList" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: list x-kubernetes-group-version-kind: group: "" kind: PersistentVolumeClaim version: v1 parameters: - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true post: consumes: - "*/*" description: create a PersistentVolumeClaim operationId: createCoreV1NamespacedPersistentVolumeClaim parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaim" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaim" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaim" "202": description: Accepted schema: $ref: "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaim" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: post x-kubernetes-group-version-kind: group: "" kind: PersistentVolumeClaim version: v1 "/api/v1/namespaces/{namespace}/persistentvolumeclaims/{name}": delete: consumes: - "*/*" description: delete a PersistentVolumeClaim operationId: deleteCoreV1NamespacedPersistentVolumeClaim parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" - description: The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. in: query name: gracePeriodSeconds type: integer uniqueItems: true - description: "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both." in: query name: orphanDependents type: boolean uniqueItems: true - description: "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground." in: query name: propagationPolicy type: string uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: delete x-kubernetes-group-version-kind: group: "" kind: PersistentVolumeClaim version: v1 get: consumes: - "*/*" description: read the specified PersistentVolumeClaim operationId: readCoreV1NamespacedPersistentVolumeClaim parameters: - description: Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. in: query name: exact type: boolean uniqueItems: true - description: Should this value be exported. Export strips fields that a user can not specify. in: query name: export type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaim" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: get x-kubernetes-group-version-kind: group: "" kind: PersistentVolumeClaim version: v1 parameters: - description: name of the PersistentVolumeClaim in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true patch: consumes: - application/json-patch+json - application/merge-patch+json - application/strategic-merge-patch+json description: partially update the specified PersistentVolumeClaim operationId: patchCoreV1NamespacedPersistentVolumeClaim parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaim" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: patch x-kubernetes-group-version-kind: group: "" kind: PersistentVolumeClaim version: v1 put: consumes: - "*/*" description: replace the specified PersistentVolumeClaim operationId: replaceCoreV1NamespacedPersistentVolumeClaim parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaim" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaim" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaim" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: put x-kubernetes-group-version-kind: group: "" kind: PersistentVolumeClaim version: v1 "/api/v1/namespaces/{namespace}/persistentvolumeclaims/{name}/status": get: consumes: - "*/*" description: read status of the specified PersistentVolumeClaim operationId: readCoreV1NamespacedPersistentVolumeClaimStatus produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaim" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: get x-kubernetes-group-version-kind: group: "" kind: PersistentVolumeClaim version: v1 parameters: - description: name of the PersistentVolumeClaim in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true patch: consumes: - application/json-patch+json - application/merge-patch+json - application/strategic-merge-patch+json description: partially update status of the specified PersistentVolumeClaim operationId: patchCoreV1NamespacedPersistentVolumeClaimStatus parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaim" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: patch x-kubernetes-group-version-kind: group: "" kind: PersistentVolumeClaim version: v1 put: consumes: - "*/*" description: replace status of the specified PersistentVolumeClaim operationId: replaceCoreV1NamespacedPersistentVolumeClaimStatus parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaim" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaim" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaim" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: put x-kubernetes-group-version-kind: group: "" kind: PersistentVolumeClaim version: v1 "/api/v1/namespaces/{namespace}/pods": delete: consumes: - "*/*" description: delete collection of Pod operationId: deleteCoreV1CollectionNamespacedPod parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: deletecollection x-kubernetes-group-version-kind: group: "" kind: Pod version: v1 get: consumes: - "*/*" description: list or watch objects of kind Pod operationId: listCoreV1NamespacedPod parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.core.v1.PodList" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: list x-kubernetes-group-version-kind: group: "" kind: Pod version: v1 parameters: - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true post: consumes: - "*/*" description: create a Pod operationId: createCoreV1NamespacedPod parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.core.v1.Pod" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.core.v1.Pod" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.core.v1.Pod" "202": description: Accepted schema: $ref: "#/definitions/io.k8s.api.core.v1.Pod" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: post x-kubernetes-group-version-kind: group: "" kind: Pod version: v1 "/api/v1/namespaces/{namespace}/pods/{name}": delete: consumes: - "*/*" description: delete a Pod operationId: deleteCoreV1NamespacedPod parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" - description: The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. in: query name: gracePeriodSeconds type: integer uniqueItems: true - description: "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both." in: query name: orphanDependents type: boolean uniqueItems: true - description: "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground." in: query name: propagationPolicy type: string uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: delete x-kubernetes-group-version-kind: group: "" kind: Pod version: v1 get: consumes: - "*/*" description: read the specified Pod operationId: readCoreV1NamespacedPod parameters: - description: Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. in: query name: exact type: boolean uniqueItems: true - description: Should this value be exported. Export strips fields that a user can not specify. in: query name: export type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.core.v1.Pod" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: get x-kubernetes-group-version-kind: group: "" kind: Pod version: v1 parameters: - description: name of the Pod in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true patch: consumes: - application/json-patch+json - application/merge-patch+json - application/strategic-merge-patch+json description: partially update the specified Pod operationId: patchCoreV1NamespacedPod parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.core.v1.Pod" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: patch x-kubernetes-group-version-kind: group: "" kind: Pod version: v1 put: consumes: - "*/*" description: replace the specified Pod operationId: replaceCoreV1NamespacedPod parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.core.v1.Pod" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.core.v1.Pod" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.core.v1.Pod" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: put x-kubernetes-group-version-kind: group: "" kind: Pod version: v1 "/api/v1/namespaces/{namespace}/pods/{name}/attach": get: consumes: - "*/*" description: connect GET requests to attach of Pod operationId: connectCoreV1GetNamespacedPodAttach produces: - "*/*" responses: "200": description: OK schema: type: string "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: connect x-kubernetes-group-version-kind: group: "" kind: Pod version: v1 parameters: - description: The container in which to execute the command. Defaults to only container if there is only one container in the pod. in: query name: container type: string uniqueItems: true - description: name of the Pod in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: Stderr if true indicates that stderr is to be redirected for the attach call. Defaults to true. in: query name: stderr type: boolean uniqueItems: true - description: Stdin if true, redirects the standard input stream of the pod for this call. Defaults to false. in: query name: stdin type: boolean uniqueItems: true - description: Stdout if true indicates that stdout is to be redirected for the attach call. Defaults to true. in: query name: stdout type: boolean uniqueItems: true - description: TTY if true indicates that a tty will be allocated for the attach call. This is passed through the container runtime so the tty is allocated on the worker node by the container runtime. Defaults to false. in: query name: tty type: boolean uniqueItems: true post: consumes: - "*/*" description: connect POST requests to attach of Pod operationId: connectCoreV1PostNamespacedPodAttach produces: - "*/*" responses: "200": description: OK schema: type: string "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: connect x-kubernetes-group-version-kind: group: "" kind: Pod version: v1 "/api/v1/namespaces/{namespace}/pods/{name}/binding": parameters: - description: name of the Binding in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true post: consumes: - "*/*" description: create binding of a Pod operationId: createCoreV1NamespacedPodBinding parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.core.v1.Binding" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.core.v1.Binding" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.core.v1.Binding" "202": description: Accepted schema: $ref: "#/definitions/io.k8s.api.core.v1.Binding" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: post x-kubernetes-group-version-kind: group: "" kind: Binding version: v1 "/api/v1/namespaces/{namespace}/pods/{name}/eviction": parameters: - description: name of the Eviction in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true post: consumes: - "*/*" description: create eviction of a Pod operationId: createCoreV1NamespacedPodEviction parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.policy.v1beta1.Eviction" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.policy.v1beta1.Eviction" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.policy.v1beta1.Eviction" "202": description: Accepted schema: $ref: "#/definitions/io.k8s.api.policy.v1beta1.Eviction" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: post x-kubernetes-group-version-kind: group: policy kind: Eviction version: v1beta1 "/api/v1/namespaces/{namespace}/pods/{name}/exec": get: consumes: - "*/*" description: connect GET requests to exec of Pod operationId: connectCoreV1GetNamespacedPodExec produces: - "*/*" responses: "200": description: OK schema: type: string "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: connect x-kubernetes-group-version-kind: group: "" kind: Pod version: v1 parameters: - description: Command is the remote command to execute. argv array. Not executed within a shell. in: query name: command type: string uniqueItems: true - description: Container in which to execute the command. Defaults to only container if there is only one container in the pod. in: query name: container type: string uniqueItems: true - description: name of the Pod in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: Redirect the standard error stream of the pod for this call. Defaults to true. in: query name: stderr type: boolean uniqueItems: true - description: Redirect the standard input stream of the pod for this call. Defaults to false. in: query name: stdin type: boolean uniqueItems: true - description: Redirect the standard output stream of the pod for this call. Defaults to true. in: query name: stdout type: boolean uniqueItems: true - description: TTY if true indicates that a tty will be allocated for the exec call. Defaults to false. in: query name: tty type: boolean uniqueItems: true post: consumes: - "*/*" description: connect POST requests to exec of Pod operationId: connectCoreV1PostNamespacedPodExec produces: - "*/*" responses: "200": description: OK schema: type: string "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: connect x-kubernetes-group-version-kind: group: "" kind: Pod version: v1 "/api/v1/namespaces/{namespace}/pods/{name}/log": get: consumes: - "*/*" description: read log of the specified Pod operationId: readCoreV1NamespacedPodLog produces: - text/plain - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: type: string "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: get x-kubernetes-group-version-kind: group: "" kind: Pod version: v1 parameters: - description: The container for which to stream logs. Defaults to only container if there is one container in the pod. in: query name: container type: string uniqueItems: true - description: Follow the log stream of the pod. Defaults to false. in: query name: follow type: boolean uniqueItems: true - description: If set, the number of bytes to read from the server before terminating the log output. This may not display a complete final line of logging, and may return slightly more or slightly less than the specified limit. in: query name: limitBytes type: integer uniqueItems: true - description: name of the Pod in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: Return previous terminated container logs. Defaults to false. in: query name: previous type: boolean uniqueItems: true - description: A relative time in seconds before the current time from which to show logs. If this value precedes the time a pod was started, only logs since the pod start will be returned. If this value is in the future, no logs will be returned. Only one of sinceSeconds or sinceTime may be specified. in: query name: sinceSeconds type: integer uniqueItems: true - description: If set, the number of lines from the end of the logs to show. If not specified, logs are shown from the creation of the container or sinceSeconds or sinceTime in: query name: tailLines type: integer uniqueItems: true - description: If true, add an RFC3339 or RFC3339Nano timestamp at the beginning of every line of log output. Defaults to false. in: query name: timestamps type: boolean uniqueItems: true "/api/v1/namespaces/{namespace}/pods/{name}/portforward": get: consumes: - "*/*" description: connect GET requests to portforward of Pod operationId: connectCoreV1GetNamespacedPodPortforward produces: - "*/*" responses: "200": description: OK schema: type: string "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: connect x-kubernetes-group-version-kind: group: "" kind: Pod version: v1 parameters: - description: name of the Pod in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: List of ports to forward Required when using WebSockets in: query name: ports type: integer uniqueItems: true post: consumes: - "*/*" description: connect POST requests to portforward of Pod operationId: connectCoreV1PostNamespacedPodPortforward produces: - "*/*" responses: "200": description: OK schema: type: string "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: connect x-kubernetes-group-version-kind: group: "" kind: Pod version: v1 "/api/v1/namespaces/{namespace}/pods/{name}/proxy": delete: consumes: - "*/*" description: connect DELETE requests to proxy of Pod operationId: connectCoreV1DeleteNamespacedPodProxy produces: - "*/*" responses: "200": description: OK schema: type: string "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: connect x-kubernetes-group-version-kind: group: "" kind: Pod version: v1 get: consumes: - "*/*" description: connect GET requests to proxy of Pod operationId: connectCoreV1GetNamespacedPodProxy produces: - "*/*" responses: "200": description: OK schema: type: string "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: connect x-kubernetes-group-version-kind: group: "" kind: Pod version: v1 head: consumes: - "*/*" description: connect HEAD requests to proxy of Pod operationId: connectCoreV1HeadNamespacedPodProxy produces: - "*/*" responses: "200": description: OK schema: type: string "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: connect x-kubernetes-group-version-kind: group: "" kind: Pod version: v1 options: consumes: - "*/*" description: connect OPTIONS requests to proxy of Pod operationId: connectCoreV1OptionsNamespacedPodProxy produces: - "*/*" responses: "200": description: OK schema: type: string "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: connect x-kubernetes-group-version-kind: group: "" kind: Pod version: v1 parameters: - description: name of the Pod in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: Path is the URL path to use for the current proxy request to pod. in: query name: path type: string uniqueItems: true patch: consumes: - "*/*" description: connect PATCH requests to proxy of Pod operationId: connectCoreV1PatchNamespacedPodProxy produces: - "*/*" responses: "200": description: OK schema: type: string "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: connect x-kubernetes-group-version-kind: group: "" kind: Pod version: v1 post: consumes: - "*/*" description: connect POST requests to proxy of Pod operationId: connectCoreV1PostNamespacedPodProxy produces: - "*/*" responses: "200": description: OK schema: type: string "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: connect x-kubernetes-group-version-kind: group: "" kind: Pod version: v1 put: consumes: - "*/*" description: connect PUT requests to proxy of Pod operationId: connectCoreV1PutNamespacedPodProxy produces: - "*/*" responses: "200": description: OK schema: type: string "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: connect x-kubernetes-group-version-kind: group: "" kind: Pod version: v1 "/api/v1/namespaces/{namespace}/pods/{name}/proxy/{path}": delete: consumes: - "*/*" description: connect DELETE requests to proxy of Pod operationId: connectCoreV1DeleteNamespacedPodProxyWithPath produces: - "*/*" responses: "200": description: OK schema: type: string "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: connect x-kubernetes-group-version-kind: group: "" kind: Pod version: v1 get: consumes: - "*/*" description: connect GET requests to proxy of Pod operationId: connectCoreV1GetNamespacedPodProxyWithPath produces: - "*/*" responses: "200": description: OK schema: type: string "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: connect x-kubernetes-group-version-kind: group: "" kind: Pod version: v1 head: consumes: - "*/*" description: connect HEAD requests to proxy of Pod operationId: connectCoreV1HeadNamespacedPodProxyWithPath produces: - "*/*" responses: "200": description: OK schema: type: string "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: connect x-kubernetes-group-version-kind: group: "" kind: Pod version: v1 options: consumes: - "*/*" description: connect OPTIONS requests to proxy of Pod operationId: connectCoreV1OptionsNamespacedPodProxyWithPath produces: - "*/*" responses: "200": description: OK schema: type: string "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: connect x-kubernetes-group-version-kind: group: "" kind: Pod version: v1 parameters: - description: name of the Pod in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: path to the resource in: path name: path required: true type: string uniqueItems: true - description: Path is the URL path to use for the current proxy request to pod. in: query name: path type: string uniqueItems: true patch: consumes: - "*/*" description: connect PATCH requests to proxy of Pod operationId: connectCoreV1PatchNamespacedPodProxyWithPath produces: - "*/*" responses: "200": description: OK schema: type: string "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: connect x-kubernetes-group-version-kind: group: "" kind: Pod version: v1 post: consumes: - "*/*" description: connect POST requests to proxy of Pod operationId: connectCoreV1PostNamespacedPodProxyWithPath produces: - "*/*" responses: "200": description: OK schema: type: string "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: connect x-kubernetes-group-version-kind: group: "" kind: Pod version: v1 put: consumes: - "*/*" description: connect PUT requests to proxy of Pod operationId: connectCoreV1PutNamespacedPodProxyWithPath produces: - "*/*" responses: "200": description: OK schema: type: string "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: connect x-kubernetes-group-version-kind: group: "" kind: Pod version: v1 "/api/v1/namespaces/{namespace}/pods/{name}/status": get: consumes: - "*/*" description: read status of the specified Pod operationId: readCoreV1NamespacedPodStatus produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.core.v1.Pod" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: get x-kubernetes-group-version-kind: group: "" kind: Pod version: v1 parameters: - description: name of the Pod in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true patch: consumes: - application/json-patch+json - application/merge-patch+json - application/strategic-merge-patch+json description: partially update status of the specified Pod operationId: patchCoreV1NamespacedPodStatus parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.core.v1.Pod" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: patch x-kubernetes-group-version-kind: group: "" kind: Pod version: v1 put: consumes: - "*/*" description: replace status of the specified Pod operationId: replaceCoreV1NamespacedPodStatus parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.core.v1.Pod" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.core.v1.Pod" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.core.v1.Pod" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: put x-kubernetes-group-version-kind: group: "" kind: Pod version: v1 "/api/v1/namespaces/{namespace}/podtemplates": delete: consumes: - "*/*" description: delete collection of PodTemplate operationId: deleteCoreV1CollectionNamespacedPodTemplate parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: deletecollection x-kubernetes-group-version-kind: group: "" kind: PodTemplate version: v1 get: consumes: - "*/*" description: list or watch objects of kind PodTemplate operationId: listCoreV1NamespacedPodTemplate parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.core.v1.PodTemplateList" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: list x-kubernetes-group-version-kind: group: "" kind: PodTemplate version: v1 parameters: - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true post: consumes: - "*/*" description: create a PodTemplate operationId: createCoreV1NamespacedPodTemplate parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.core.v1.PodTemplate" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.core.v1.PodTemplate" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.core.v1.PodTemplate" "202": description: Accepted schema: $ref: "#/definitions/io.k8s.api.core.v1.PodTemplate" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: post x-kubernetes-group-version-kind: group: "" kind: PodTemplate version: v1 "/api/v1/namespaces/{namespace}/podtemplates/{name}": delete: consumes: - "*/*" description: delete a PodTemplate operationId: deleteCoreV1NamespacedPodTemplate parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" - description: The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. in: query name: gracePeriodSeconds type: integer uniqueItems: true - description: "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both." in: query name: orphanDependents type: boolean uniqueItems: true - description: "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground." in: query name: propagationPolicy type: string uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: delete x-kubernetes-group-version-kind: group: "" kind: PodTemplate version: v1 get: consumes: - "*/*" description: read the specified PodTemplate operationId: readCoreV1NamespacedPodTemplate parameters: - description: Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. in: query name: exact type: boolean uniqueItems: true - description: Should this value be exported. Export strips fields that a user can not specify. in: query name: export type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.core.v1.PodTemplate" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: get x-kubernetes-group-version-kind: group: "" kind: PodTemplate version: v1 parameters: - description: name of the PodTemplate in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true patch: consumes: - application/json-patch+json - application/merge-patch+json - application/strategic-merge-patch+json description: partially update the specified PodTemplate operationId: patchCoreV1NamespacedPodTemplate parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.core.v1.PodTemplate" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: patch x-kubernetes-group-version-kind: group: "" kind: PodTemplate version: v1 put: consumes: - "*/*" description: replace the specified PodTemplate operationId: replaceCoreV1NamespacedPodTemplate parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.core.v1.PodTemplate" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.core.v1.PodTemplate" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.core.v1.PodTemplate" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: put x-kubernetes-group-version-kind: group: "" kind: PodTemplate version: v1 "/api/v1/namespaces/{namespace}/replicationcontrollers": delete: consumes: - "*/*" description: delete collection of ReplicationController operationId: deleteCoreV1CollectionNamespacedReplicationController parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: deletecollection x-kubernetes-group-version-kind: group: "" kind: ReplicationController version: v1 get: consumes: - "*/*" description: list or watch objects of kind ReplicationController operationId: listCoreV1NamespacedReplicationController parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.core.v1.ReplicationControllerList" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: list x-kubernetes-group-version-kind: group: "" kind: ReplicationController version: v1 parameters: - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true post: consumes: - "*/*" description: create a ReplicationController operationId: createCoreV1NamespacedReplicationController parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.core.v1.ReplicationController" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.core.v1.ReplicationController" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.core.v1.ReplicationController" "202": description: Accepted schema: $ref: "#/definitions/io.k8s.api.core.v1.ReplicationController" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: post x-kubernetes-group-version-kind: group: "" kind: ReplicationController version: v1 "/api/v1/namespaces/{namespace}/replicationcontrollers/{name}": delete: consumes: - "*/*" description: delete a ReplicationController operationId: deleteCoreV1NamespacedReplicationController parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" - description: The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. in: query name: gracePeriodSeconds type: integer uniqueItems: true - description: "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both." in: query name: orphanDependents type: boolean uniqueItems: true - description: "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground." in: query name: propagationPolicy type: string uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: delete x-kubernetes-group-version-kind: group: "" kind: ReplicationController version: v1 get: consumes: - "*/*" description: read the specified ReplicationController operationId: readCoreV1NamespacedReplicationController parameters: - description: Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. in: query name: exact type: boolean uniqueItems: true - description: Should this value be exported. Export strips fields that a user can not specify. in: query name: export type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.core.v1.ReplicationController" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: get x-kubernetes-group-version-kind: group: "" kind: ReplicationController version: v1 parameters: - description: name of the ReplicationController in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true patch: consumes: - application/json-patch+json - application/merge-patch+json - application/strategic-merge-patch+json description: partially update the specified ReplicationController operationId: patchCoreV1NamespacedReplicationController parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.core.v1.ReplicationController" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: patch x-kubernetes-group-version-kind: group: "" kind: ReplicationController version: v1 put: consumes: - "*/*" description: replace the specified ReplicationController operationId: replaceCoreV1NamespacedReplicationController parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.core.v1.ReplicationController" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.core.v1.ReplicationController" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.core.v1.ReplicationController" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: put x-kubernetes-group-version-kind: group: "" kind: ReplicationController version: v1 "/api/v1/namespaces/{namespace}/replicationcontrollers/{name}/scale": get: consumes: - "*/*" description: read scale of the specified ReplicationController operationId: readCoreV1NamespacedReplicationControllerScale produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.autoscaling.v1.Scale" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: get x-kubernetes-group-version-kind: group: autoscaling kind: Scale version: v1 parameters: - description: name of the Scale in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true patch: consumes: - application/json-patch+json - application/merge-patch+json - application/strategic-merge-patch+json description: partially update scale of the specified ReplicationController operationId: patchCoreV1NamespacedReplicationControllerScale parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.autoscaling.v1.Scale" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: patch x-kubernetes-group-version-kind: group: autoscaling kind: Scale version: v1 put: consumes: - "*/*" description: replace scale of the specified ReplicationController operationId: replaceCoreV1NamespacedReplicationControllerScale parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.autoscaling.v1.Scale" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.autoscaling.v1.Scale" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.autoscaling.v1.Scale" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: put x-kubernetes-group-version-kind: group: autoscaling kind: Scale version: v1 "/api/v1/namespaces/{namespace}/replicationcontrollers/{name}/status": get: consumes: - "*/*" description: read status of the specified ReplicationController operationId: readCoreV1NamespacedReplicationControllerStatus produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.core.v1.ReplicationController" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: get x-kubernetes-group-version-kind: group: "" kind: ReplicationController version: v1 parameters: - description: name of the ReplicationController in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true patch: consumes: - application/json-patch+json - application/merge-patch+json - application/strategic-merge-patch+json description: partially update status of the specified ReplicationController operationId: patchCoreV1NamespacedReplicationControllerStatus parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.core.v1.ReplicationController" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: patch x-kubernetes-group-version-kind: group: "" kind: ReplicationController version: v1 put: consumes: - "*/*" description: replace status of the specified ReplicationController operationId: replaceCoreV1NamespacedReplicationControllerStatus parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.core.v1.ReplicationController" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.core.v1.ReplicationController" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.core.v1.ReplicationController" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: put x-kubernetes-group-version-kind: group: "" kind: ReplicationController version: v1 "/api/v1/namespaces/{namespace}/resourcequotas": delete: consumes: - "*/*" description: delete collection of ResourceQuota operationId: deleteCoreV1CollectionNamespacedResourceQuota parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: deletecollection x-kubernetes-group-version-kind: group: "" kind: ResourceQuota version: v1 get: consumes: - "*/*" description: list or watch objects of kind ResourceQuota operationId: listCoreV1NamespacedResourceQuota parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.core.v1.ResourceQuotaList" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: list x-kubernetes-group-version-kind: group: "" kind: ResourceQuota version: v1 parameters: - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true post: consumes: - "*/*" description: create a ResourceQuota operationId: createCoreV1NamespacedResourceQuota parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.core.v1.ResourceQuota" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.core.v1.ResourceQuota" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.core.v1.ResourceQuota" "202": description: Accepted schema: $ref: "#/definitions/io.k8s.api.core.v1.ResourceQuota" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: post x-kubernetes-group-version-kind: group: "" kind: ResourceQuota version: v1 "/api/v1/namespaces/{namespace}/resourcequotas/{name}": delete: consumes: - "*/*" description: delete a ResourceQuota operationId: deleteCoreV1NamespacedResourceQuota parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" - description: The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. in: query name: gracePeriodSeconds type: integer uniqueItems: true - description: "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both." in: query name: orphanDependents type: boolean uniqueItems: true - description: "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground." in: query name: propagationPolicy type: string uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: delete x-kubernetes-group-version-kind: group: "" kind: ResourceQuota version: v1 get: consumes: - "*/*" description: read the specified ResourceQuota operationId: readCoreV1NamespacedResourceQuota parameters: - description: Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. in: query name: exact type: boolean uniqueItems: true - description: Should this value be exported. Export strips fields that a user can not specify. in: query name: export type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.core.v1.ResourceQuota" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: get x-kubernetes-group-version-kind: group: "" kind: ResourceQuota version: v1 parameters: - description: name of the ResourceQuota in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true patch: consumes: - application/json-patch+json - application/merge-patch+json - application/strategic-merge-patch+json description: partially update the specified ResourceQuota operationId: patchCoreV1NamespacedResourceQuota parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.core.v1.ResourceQuota" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: patch x-kubernetes-group-version-kind: group: "" kind: ResourceQuota version: v1 put: consumes: - "*/*" description: replace the specified ResourceQuota operationId: replaceCoreV1NamespacedResourceQuota parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.core.v1.ResourceQuota" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.core.v1.ResourceQuota" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.core.v1.ResourceQuota" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: put x-kubernetes-group-version-kind: group: "" kind: ResourceQuota version: v1 "/api/v1/namespaces/{namespace}/resourcequotas/{name}/status": get: consumes: - "*/*" description: read status of the specified ResourceQuota operationId: readCoreV1NamespacedResourceQuotaStatus produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.core.v1.ResourceQuota" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: get x-kubernetes-group-version-kind: group: "" kind: ResourceQuota version: v1 parameters: - description: name of the ResourceQuota in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true patch: consumes: - application/json-patch+json - application/merge-patch+json - application/strategic-merge-patch+json description: partially update status of the specified ResourceQuota operationId: patchCoreV1NamespacedResourceQuotaStatus parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.core.v1.ResourceQuota" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: patch x-kubernetes-group-version-kind: group: "" kind: ResourceQuota version: v1 put: consumes: - "*/*" description: replace status of the specified ResourceQuota operationId: replaceCoreV1NamespacedResourceQuotaStatus parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.core.v1.ResourceQuota" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.core.v1.ResourceQuota" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.core.v1.ResourceQuota" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: put x-kubernetes-group-version-kind: group: "" kind: ResourceQuota version: v1 "/api/v1/namespaces/{namespace}/secrets": delete: consumes: - "*/*" description: delete collection of Secret operationId: deleteCoreV1CollectionNamespacedSecret parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: deletecollection x-kubernetes-group-version-kind: group: "" kind: Secret version: v1 get: consumes: - "*/*" description: list or watch objects of kind Secret operationId: listCoreV1NamespacedSecret parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.core.v1.SecretList" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: list x-kubernetes-group-version-kind: group: "" kind: Secret version: v1 parameters: - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true post: consumes: - "*/*" description: create a Secret operationId: createCoreV1NamespacedSecret parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.core.v1.Secret" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.core.v1.Secret" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.core.v1.Secret" "202": description: Accepted schema: $ref: "#/definitions/io.k8s.api.core.v1.Secret" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: post x-kubernetes-group-version-kind: group: "" kind: Secret version: v1 "/api/v1/namespaces/{namespace}/secrets/{name}": delete: consumes: - "*/*" description: delete a Secret operationId: deleteCoreV1NamespacedSecret parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" - description: The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. in: query name: gracePeriodSeconds type: integer uniqueItems: true - description: "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both." in: query name: orphanDependents type: boolean uniqueItems: true - description: "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground." in: query name: propagationPolicy type: string uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: delete x-kubernetes-group-version-kind: group: "" kind: Secret version: v1 get: consumes: - "*/*" description: read the specified Secret operationId: readCoreV1NamespacedSecret parameters: - description: Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. in: query name: exact type: boolean uniqueItems: true - description: Should this value be exported. Export strips fields that a user can not specify. in: query name: export type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.core.v1.Secret" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: get x-kubernetes-group-version-kind: group: "" kind: Secret version: v1 parameters: - description: name of the Secret in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true patch: consumes: - application/json-patch+json - application/merge-patch+json - application/strategic-merge-patch+json description: partially update the specified Secret operationId: patchCoreV1NamespacedSecret parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.core.v1.Secret" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: patch x-kubernetes-group-version-kind: group: "" kind: Secret version: v1 put: consumes: - "*/*" description: replace the specified Secret operationId: replaceCoreV1NamespacedSecret parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.core.v1.Secret" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.core.v1.Secret" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.core.v1.Secret" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: put x-kubernetes-group-version-kind: group: "" kind: Secret version: v1 "/api/v1/namespaces/{namespace}/serviceaccounts": delete: consumes: - "*/*" description: delete collection of ServiceAccount operationId: deleteCoreV1CollectionNamespacedServiceAccount parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: deletecollection x-kubernetes-group-version-kind: group: "" kind: ServiceAccount version: v1 get: consumes: - "*/*" description: list or watch objects of kind ServiceAccount operationId: listCoreV1NamespacedServiceAccount parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.core.v1.ServiceAccountList" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: list x-kubernetes-group-version-kind: group: "" kind: ServiceAccount version: v1 parameters: - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true post: consumes: - "*/*" description: create a ServiceAccount operationId: createCoreV1NamespacedServiceAccount parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.core.v1.ServiceAccount" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.core.v1.ServiceAccount" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.core.v1.ServiceAccount" "202": description: Accepted schema: $ref: "#/definitions/io.k8s.api.core.v1.ServiceAccount" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: post x-kubernetes-group-version-kind: group: "" kind: ServiceAccount version: v1 "/api/v1/namespaces/{namespace}/serviceaccounts/{name}": delete: consumes: - "*/*" description: delete a ServiceAccount operationId: deleteCoreV1NamespacedServiceAccount parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" - description: The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. in: query name: gracePeriodSeconds type: integer uniqueItems: true - description: "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both." in: query name: orphanDependents type: boolean uniqueItems: true - description: "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground." in: query name: propagationPolicy type: string uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: delete x-kubernetes-group-version-kind: group: "" kind: ServiceAccount version: v1 get: consumes: - "*/*" description: read the specified ServiceAccount operationId: readCoreV1NamespacedServiceAccount parameters: - description: Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. in: query name: exact type: boolean uniqueItems: true - description: Should this value be exported. Export strips fields that a user can not specify. in: query name: export type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.core.v1.ServiceAccount" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: get x-kubernetes-group-version-kind: group: "" kind: ServiceAccount version: v1 parameters: - description: name of the ServiceAccount in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true patch: consumes: - application/json-patch+json - application/merge-patch+json - application/strategic-merge-patch+json description: partially update the specified ServiceAccount operationId: patchCoreV1NamespacedServiceAccount parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.core.v1.ServiceAccount" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: patch x-kubernetes-group-version-kind: group: "" kind: ServiceAccount version: v1 put: consumes: - "*/*" description: replace the specified ServiceAccount operationId: replaceCoreV1NamespacedServiceAccount parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.core.v1.ServiceAccount" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.core.v1.ServiceAccount" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.core.v1.ServiceAccount" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: put x-kubernetes-group-version-kind: group: "" kind: ServiceAccount version: v1 "/api/v1/namespaces/{namespace}/services": get: consumes: - "*/*" description: list or watch objects of kind Service operationId: listCoreV1NamespacedService parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.core.v1.ServiceList" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: list x-kubernetes-group-version-kind: group: "" kind: Service version: v1 parameters: - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true post: consumes: - "*/*" description: create a Service operationId: createCoreV1NamespacedService parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.core.v1.Service" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.core.v1.Service" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.core.v1.Service" "202": description: Accepted schema: $ref: "#/definitions/io.k8s.api.core.v1.Service" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: post x-kubernetes-group-version-kind: group: "" kind: Service version: v1 "/api/v1/namespaces/{namespace}/services/{name}": delete: consumes: - "*/*" description: delete a Service operationId: deleteCoreV1NamespacedService parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" - description: The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. in: query name: gracePeriodSeconds type: integer uniqueItems: true - description: "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both." in: query name: orphanDependents type: boolean uniqueItems: true - description: "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground." in: query name: propagationPolicy type: string uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: delete x-kubernetes-group-version-kind: group: "" kind: Service version: v1 get: consumes: - "*/*" description: read the specified Service operationId: readCoreV1NamespacedService parameters: - description: Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. in: query name: exact type: boolean uniqueItems: true - description: Should this value be exported. Export strips fields that a user can not specify. in: query name: export type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.core.v1.Service" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: get x-kubernetes-group-version-kind: group: "" kind: Service version: v1 parameters: - description: name of the Service in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true patch: consumes: - application/json-patch+json - application/merge-patch+json - application/strategic-merge-patch+json description: partially update the specified Service operationId: patchCoreV1NamespacedService parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.core.v1.Service" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: patch x-kubernetes-group-version-kind: group: "" kind: Service version: v1 put: consumes: - "*/*" description: replace the specified Service operationId: replaceCoreV1NamespacedService parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.core.v1.Service" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.core.v1.Service" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.core.v1.Service" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: put x-kubernetes-group-version-kind: group: "" kind: Service version: v1 "/api/v1/namespaces/{namespace}/services/{name}/proxy": delete: consumes: - "*/*" description: connect DELETE requests to proxy of Service operationId: connectCoreV1DeleteNamespacedServiceProxy produces: - "*/*" responses: "200": description: OK schema: type: string "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: connect x-kubernetes-group-version-kind: group: "" kind: Service version: v1 get: consumes: - "*/*" description: connect GET requests to proxy of Service operationId: connectCoreV1GetNamespacedServiceProxy produces: - "*/*" responses: "200": description: OK schema: type: string "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: connect x-kubernetes-group-version-kind: group: "" kind: Service version: v1 head: consumes: - "*/*" description: connect HEAD requests to proxy of Service operationId: connectCoreV1HeadNamespacedServiceProxy produces: - "*/*" responses: "200": description: OK schema: type: string "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: connect x-kubernetes-group-version-kind: group: "" kind: Service version: v1 options: consumes: - "*/*" description: connect OPTIONS requests to proxy of Service operationId: connectCoreV1OptionsNamespacedServiceProxy produces: - "*/*" responses: "200": description: OK schema: type: string "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: connect x-kubernetes-group-version-kind: group: "" kind: Service version: v1 parameters: - description: name of the Service in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: Path is the part of URLs that include service endpoints, suffixes, and parameters to use for the current proxy request to service. For example, the whole request URL is http://localhost/api/v1/namespaces/kube-system/services/elasticsearch-logging/_search?q=user:kimchy. Path is _search?q=user:kimchy. in: query name: path type: string uniqueItems: true patch: consumes: - "*/*" description: connect PATCH requests to proxy of Service operationId: connectCoreV1PatchNamespacedServiceProxy produces: - "*/*" responses: "200": description: OK schema: type: string "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: connect x-kubernetes-group-version-kind: group: "" kind: Service version: v1 post: consumes: - "*/*" description: connect POST requests to proxy of Service operationId: connectCoreV1PostNamespacedServiceProxy produces: - "*/*" responses: "200": description: OK schema: type: string "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: connect x-kubernetes-group-version-kind: group: "" kind: Service version: v1 put: consumes: - "*/*" description: connect PUT requests to proxy of Service operationId: connectCoreV1PutNamespacedServiceProxy produces: - "*/*" responses: "200": description: OK schema: type: string "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: connect x-kubernetes-group-version-kind: group: "" kind: Service version: v1 "/api/v1/namespaces/{namespace}/services/{name}/proxy/{path}": delete: consumes: - "*/*" description: connect DELETE requests to proxy of Service operationId: connectCoreV1DeleteNamespacedServiceProxyWithPath produces: - "*/*" responses: "200": description: OK schema: type: string "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: connect x-kubernetes-group-version-kind: group: "" kind: Service version: v1 get: consumes: - "*/*" description: connect GET requests to proxy of Service operationId: connectCoreV1GetNamespacedServiceProxyWithPath produces: - "*/*" responses: "200": description: OK schema: type: string "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: connect x-kubernetes-group-version-kind: group: "" kind: Service version: v1 head: consumes: - "*/*" description: connect HEAD requests to proxy of Service operationId: connectCoreV1HeadNamespacedServiceProxyWithPath produces: - "*/*" responses: "200": description: OK schema: type: string "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: connect x-kubernetes-group-version-kind: group: "" kind: Service version: v1 options: consumes: - "*/*" description: connect OPTIONS requests to proxy of Service operationId: connectCoreV1OptionsNamespacedServiceProxyWithPath produces: - "*/*" responses: "200": description: OK schema: type: string "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: connect x-kubernetes-group-version-kind: group: "" kind: Service version: v1 parameters: - description: name of the Service in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: path to the resource in: path name: path required: true type: string uniqueItems: true - description: Path is the part of URLs that include service endpoints, suffixes, and parameters to use for the current proxy request to service. For example, the whole request URL is http://localhost/api/v1/namespaces/kube-system/services/elasticsearch-logging/_search?q=user:kimchy. Path is _search?q=user:kimchy. in: query name: path type: string uniqueItems: true patch: consumes: - "*/*" description: connect PATCH requests to proxy of Service operationId: connectCoreV1PatchNamespacedServiceProxyWithPath produces: - "*/*" responses: "200": description: OK schema: type: string "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: connect x-kubernetes-group-version-kind: group: "" kind: Service version: v1 post: consumes: - "*/*" description: connect POST requests to proxy of Service operationId: connectCoreV1PostNamespacedServiceProxyWithPath produces: - "*/*" responses: "200": description: OK schema: type: string "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: connect x-kubernetes-group-version-kind: group: "" kind: Service version: v1 put: consumes: - "*/*" description: connect PUT requests to proxy of Service operationId: connectCoreV1PutNamespacedServiceProxyWithPath produces: - "*/*" responses: "200": description: OK schema: type: string "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: connect x-kubernetes-group-version-kind: group: "" kind: Service version: v1 "/api/v1/namespaces/{namespace}/services/{name}/status": get: consumes: - "*/*" description: read status of the specified Service operationId: readCoreV1NamespacedServiceStatus produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.core.v1.Service" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: get x-kubernetes-group-version-kind: group: "" kind: Service version: v1 parameters: - description: name of the Service in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true patch: consumes: - application/json-patch+json - application/merge-patch+json - application/strategic-merge-patch+json description: partially update status of the specified Service operationId: patchCoreV1NamespacedServiceStatus parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.core.v1.Service" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: patch x-kubernetes-group-version-kind: group: "" kind: Service version: v1 put: consumes: - "*/*" description: replace status of the specified Service operationId: replaceCoreV1NamespacedServiceStatus parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.core.v1.Service" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.core.v1.Service" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.core.v1.Service" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: put x-kubernetes-group-version-kind: group: "" kind: Service version: v1 "/api/v1/namespaces/{name}": delete: consumes: - "*/*" description: delete a Namespace operationId: deleteCoreV1Namespace parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" - description: The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. in: query name: gracePeriodSeconds type: integer uniqueItems: true - description: "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both." in: query name: orphanDependents type: boolean uniqueItems: true - description: "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground." in: query name: propagationPolicy type: string uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: delete x-kubernetes-group-version-kind: group: "" kind: Namespace version: v1 get: consumes: - "*/*" description: read the specified Namespace operationId: readCoreV1Namespace parameters: - description: Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. in: query name: exact type: boolean uniqueItems: true - description: Should this value be exported. Export strips fields that a user can not specify. in: query name: export type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.core.v1.Namespace" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: get x-kubernetes-group-version-kind: group: "" kind: Namespace version: v1 parameters: - description: name of the Namespace in: path name: name required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true patch: consumes: - application/json-patch+json - application/merge-patch+json - application/strategic-merge-patch+json description: partially update the specified Namespace operationId: patchCoreV1Namespace parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.core.v1.Namespace" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: patch x-kubernetes-group-version-kind: group: "" kind: Namespace version: v1 put: consumes: - "*/*" description: replace the specified Namespace operationId: replaceCoreV1Namespace parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.core.v1.Namespace" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.core.v1.Namespace" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.core.v1.Namespace" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: put x-kubernetes-group-version-kind: group: "" kind: Namespace version: v1 "/api/v1/namespaces/{name}/finalize": parameters: - description: name of the Namespace in: path name: name required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true put: consumes: - "*/*" description: replace finalize of the specified Namespace operationId: replaceCoreV1NamespaceFinalize parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.core.v1.Namespace" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.core.v1.Namespace" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.core.v1.Namespace" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: put x-kubernetes-group-version-kind: group: "" kind: Namespace version: v1 "/api/v1/namespaces/{name}/status": get: consumes: - "*/*" description: read status of the specified Namespace operationId: readCoreV1NamespaceStatus produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.core.v1.Namespace" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: get x-kubernetes-group-version-kind: group: "" kind: Namespace version: v1 parameters: - description: name of the Namespace in: path name: name required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true patch: consumes: - application/json-patch+json - application/merge-patch+json - application/strategic-merge-patch+json description: partially update status of the specified Namespace operationId: patchCoreV1NamespaceStatus parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.core.v1.Namespace" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: patch x-kubernetes-group-version-kind: group: "" kind: Namespace version: v1 put: consumes: - "*/*" description: replace status of the specified Namespace operationId: replaceCoreV1NamespaceStatus parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.core.v1.Namespace" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.core.v1.Namespace" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.core.v1.Namespace" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: put x-kubernetes-group-version-kind: group: "" kind: Namespace version: v1 /api/v1/nodes: delete: consumes: - "*/*" description: delete collection of Node operationId: deleteCoreV1CollectionNode parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: deletecollection x-kubernetes-group-version-kind: group: "" kind: Node version: v1 get: consumes: - "*/*" description: list or watch objects of kind Node operationId: listCoreV1Node parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.core.v1.NodeList" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: list x-kubernetes-group-version-kind: group: "" kind: Node version: v1 parameters: - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true post: consumes: - "*/*" description: create a Node operationId: createCoreV1Node parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.core.v1.Node" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.core.v1.Node" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.core.v1.Node" "202": description: Accepted schema: $ref: "#/definitions/io.k8s.api.core.v1.Node" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: post x-kubernetes-group-version-kind: group: "" kind: Node version: v1 "/api/v1/nodes/{name}": delete: consumes: - "*/*" description: delete a Node operationId: deleteCoreV1Node parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" - description: The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. in: query name: gracePeriodSeconds type: integer uniqueItems: true - description: "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both." in: query name: orphanDependents type: boolean uniqueItems: true - description: "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground." in: query name: propagationPolicy type: string uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: delete x-kubernetes-group-version-kind: group: "" kind: Node version: v1 get: consumes: - "*/*" description: read the specified Node operationId: readCoreV1Node parameters: - description: Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. in: query name: exact type: boolean uniqueItems: true - description: Should this value be exported. Export strips fields that a user can not specify. in: query name: export type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.core.v1.Node" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: get x-kubernetes-group-version-kind: group: "" kind: Node version: v1 parameters: - description: name of the Node in: path name: name required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true patch: consumes: - application/json-patch+json - application/merge-patch+json - application/strategic-merge-patch+json description: partially update the specified Node operationId: patchCoreV1Node parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.core.v1.Node" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: patch x-kubernetes-group-version-kind: group: "" kind: Node version: v1 put: consumes: - "*/*" description: replace the specified Node operationId: replaceCoreV1Node parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.core.v1.Node" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.core.v1.Node" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.core.v1.Node" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: put x-kubernetes-group-version-kind: group: "" kind: Node version: v1 "/api/v1/nodes/{name}/proxy": delete: consumes: - "*/*" description: connect DELETE requests to proxy of Node operationId: connectCoreV1DeleteNodeProxy produces: - "*/*" responses: "200": description: OK schema: type: string "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: connect x-kubernetes-group-version-kind: group: "" kind: Node version: v1 get: consumes: - "*/*" description: connect GET requests to proxy of Node operationId: connectCoreV1GetNodeProxy produces: - "*/*" responses: "200": description: OK schema: type: string "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: connect x-kubernetes-group-version-kind: group: "" kind: Node version: v1 head: consumes: - "*/*" description: connect HEAD requests to proxy of Node operationId: connectCoreV1HeadNodeProxy produces: - "*/*" responses: "200": description: OK schema: type: string "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: connect x-kubernetes-group-version-kind: group: "" kind: Node version: v1 options: consumes: - "*/*" description: connect OPTIONS requests to proxy of Node operationId: connectCoreV1OptionsNodeProxy produces: - "*/*" responses: "200": description: OK schema: type: string "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: connect x-kubernetes-group-version-kind: group: "" kind: Node version: v1 parameters: - description: name of the Node in: path name: name required: true type: string uniqueItems: true - description: Path is the URL path to use for the current proxy request to node. in: query name: path type: string uniqueItems: true patch: consumes: - "*/*" description: connect PATCH requests to proxy of Node operationId: connectCoreV1PatchNodeProxy produces: - "*/*" responses: "200": description: OK schema: type: string "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: connect x-kubernetes-group-version-kind: group: "" kind: Node version: v1 post: consumes: - "*/*" description: connect POST requests to proxy of Node operationId: connectCoreV1PostNodeProxy produces: - "*/*" responses: "200": description: OK schema: type: string "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: connect x-kubernetes-group-version-kind: group: "" kind: Node version: v1 put: consumes: - "*/*" description: connect PUT requests to proxy of Node operationId: connectCoreV1PutNodeProxy produces: - "*/*" responses: "200": description: OK schema: type: string "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: connect x-kubernetes-group-version-kind: group: "" kind: Node version: v1 "/api/v1/nodes/{name}/proxy/{path}": delete: consumes: - "*/*" description: connect DELETE requests to proxy of Node operationId: connectCoreV1DeleteNodeProxyWithPath produces: - "*/*" responses: "200": description: OK schema: type: string "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: connect x-kubernetes-group-version-kind: group: "" kind: Node version: v1 get: consumes: - "*/*" description: connect GET requests to proxy of Node operationId: connectCoreV1GetNodeProxyWithPath produces: - "*/*" responses: "200": description: OK schema: type: string "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: connect x-kubernetes-group-version-kind: group: "" kind: Node version: v1 head: consumes: - "*/*" description: connect HEAD requests to proxy of Node operationId: connectCoreV1HeadNodeProxyWithPath produces: - "*/*" responses: "200": description: OK schema: type: string "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: connect x-kubernetes-group-version-kind: group: "" kind: Node version: v1 options: consumes: - "*/*" description: connect OPTIONS requests to proxy of Node operationId: connectCoreV1OptionsNodeProxyWithPath produces: - "*/*" responses: "200": description: OK schema: type: string "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: connect x-kubernetes-group-version-kind: group: "" kind: Node version: v1 parameters: - description: name of the Node in: path name: name required: true type: string uniqueItems: true - description: path to the resource in: path name: path required: true type: string uniqueItems: true - description: Path is the URL path to use for the current proxy request to node. in: query name: path type: string uniqueItems: true patch: consumes: - "*/*" description: connect PATCH requests to proxy of Node operationId: connectCoreV1PatchNodeProxyWithPath produces: - "*/*" responses: "200": description: OK schema: type: string "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: connect x-kubernetes-group-version-kind: group: "" kind: Node version: v1 post: consumes: - "*/*" description: connect POST requests to proxy of Node operationId: connectCoreV1PostNodeProxyWithPath produces: - "*/*" responses: "200": description: OK schema: type: string "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: connect x-kubernetes-group-version-kind: group: "" kind: Node version: v1 put: consumes: - "*/*" description: connect PUT requests to proxy of Node operationId: connectCoreV1PutNodeProxyWithPath produces: - "*/*" responses: "200": description: OK schema: type: string "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: connect x-kubernetes-group-version-kind: group: "" kind: Node version: v1 "/api/v1/nodes/{name}/status": get: consumes: - "*/*" description: read status of the specified Node operationId: readCoreV1NodeStatus produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.core.v1.Node" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: get x-kubernetes-group-version-kind: group: "" kind: Node version: v1 parameters: - description: name of the Node in: path name: name required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true patch: consumes: - application/json-patch+json - application/merge-patch+json - application/strategic-merge-patch+json description: partially update status of the specified Node operationId: patchCoreV1NodeStatus parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.core.v1.Node" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: patch x-kubernetes-group-version-kind: group: "" kind: Node version: v1 put: consumes: - "*/*" description: replace status of the specified Node operationId: replaceCoreV1NodeStatus parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.core.v1.Node" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.core.v1.Node" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.core.v1.Node" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: put x-kubernetes-group-version-kind: group: "" kind: Node version: v1 /api/v1/persistentvolumeclaims: get: consumes: - "*/*" description: list or watch objects of kind PersistentVolumeClaim operationId: listCoreV1PersistentVolumeClaimForAllNamespaces produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaimList" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: list x-kubernetes-group-version-kind: group: "" kind: PersistentVolumeClaim version: v1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true /api/v1/persistentvolumes: delete: consumes: - "*/*" description: delete collection of PersistentVolume operationId: deleteCoreV1CollectionPersistentVolume parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: deletecollection x-kubernetes-group-version-kind: group: "" kind: PersistentVolume version: v1 get: consumes: - "*/*" description: list or watch objects of kind PersistentVolume operationId: listCoreV1PersistentVolume parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.core.v1.PersistentVolumeList" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: list x-kubernetes-group-version-kind: group: "" kind: PersistentVolume version: v1 parameters: - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true post: consumes: - "*/*" description: create a PersistentVolume operationId: createCoreV1PersistentVolume parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.core.v1.PersistentVolume" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.core.v1.PersistentVolume" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.core.v1.PersistentVolume" "202": description: Accepted schema: $ref: "#/definitions/io.k8s.api.core.v1.PersistentVolume" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: post x-kubernetes-group-version-kind: group: "" kind: PersistentVolume version: v1 "/api/v1/persistentvolumes/{name}": delete: consumes: - "*/*" description: delete a PersistentVolume operationId: deleteCoreV1PersistentVolume parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" - description: The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. in: query name: gracePeriodSeconds type: integer uniqueItems: true - description: "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both." in: query name: orphanDependents type: boolean uniqueItems: true - description: "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground." in: query name: propagationPolicy type: string uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: delete x-kubernetes-group-version-kind: group: "" kind: PersistentVolume version: v1 get: consumes: - "*/*" description: read the specified PersistentVolume operationId: readCoreV1PersistentVolume parameters: - description: Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. in: query name: exact type: boolean uniqueItems: true - description: Should this value be exported. Export strips fields that a user can not specify. in: query name: export type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.core.v1.PersistentVolume" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: get x-kubernetes-group-version-kind: group: "" kind: PersistentVolume version: v1 parameters: - description: name of the PersistentVolume in: path name: name required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true patch: consumes: - application/json-patch+json - application/merge-patch+json - application/strategic-merge-patch+json description: partially update the specified PersistentVolume operationId: patchCoreV1PersistentVolume parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.core.v1.PersistentVolume" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: patch x-kubernetes-group-version-kind: group: "" kind: PersistentVolume version: v1 put: consumes: - "*/*" description: replace the specified PersistentVolume operationId: replaceCoreV1PersistentVolume parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.core.v1.PersistentVolume" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.core.v1.PersistentVolume" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.core.v1.PersistentVolume" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: put x-kubernetes-group-version-kind: group: "" kind: PersistentVolume version: v1 "/api/v1/persistentvolumes/{name}/status": get: consumes: - "*/*" description: read status of the specified PersistentVolume operationId: readCoreV1PersistentVolumeStatus produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.core.v1.PersistentVolume" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: get x-kubernetes-group-version-kind: group: "" kind: PersistentVolume version: v1 parameters: - description: name of the PersistentVolume in: path name: name required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true patch: consumes: - application/json-patch+json - application/merge-patch+json - application/strategic-merge-patch+json description: partially update status of the specified PersistentVolume operationId: patchCoreV1PersistentVolumeStatus parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.core.v1.PersistentVolume" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: patch x-kubernetes-group-version-kind: group: "" kind: PersistentVolume version: v1 put: consumes: - "*/*" description: replace status of the specified PersistentVolume operationId: replaceCoreV1PersistentVolumeStatus parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.core.v1.PersistentVolume" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.core.v1.PersistentVolume" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.core.v1.PersistentVolume" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: put x-kubernetes-group-version-kind: group: "" kind: PersistentVolume version: v1 /api/v1/pods: get: consumes: - "*/*" description: list or watch objects of kind Pod operationId: listCoreV1PodForAllNamespaces produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.core.v1.PodList" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: list x-kubernetes-group-version-kind: group: "" kind: Pod version: v1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true /api/v1/podtemplates: get: consumes: - "*/*" description: list or watch objects of kind PodTemplate operationId: listCoreV1PodTemplateForAllNamespaces produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.core.v1.PodTemplateList" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: list x-kubernetes-group-version-kind: group: "" kind: PodTemplate version: v1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true /api/v1/replicationcontrollers: get: consumes: - "*/*" description: list or watch objects of kind ReplicationController operationId: listCoreV1ReplicationControllerForAllNamespaces produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.core.v1.ReplicationControllerList" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: list x-kubernetes-group-version-kind: group: "" kind: ReplicationController version: v1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true /api/v1/resourcequotas: get: consumes: - "*/*" description: list or watch objects of kind ResourceQuota operationId: listCoreV1ResourceQuotaForAllNamespaces produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.core.v1.ResourceQuotaList" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: list x-kubernetes-group-version-kind: group: "" kind: ResourceQuota version: v1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true /api/v1/secrets: get: consumes: - "*/*" description: list or watch objects of kind Secret operationId: listCoreV1SecretForAllNamespaces produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.core.v1.SecretList" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: list x-kubernetes-group-version-kind: group: "" kind: Secret version: v1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true /api/v1/serviceaccounts: get: consumes: - "*/*" description: list or watch objects of kind ServiceAccount operationId: listCoreV1ServiceAccountForAllNamespaces produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.core.v1.ServiceAccountList" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: list x-kubernetes-group-version-kind: group: "" kind: ServiceAccount version: v1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true /api/v1/services: get: consumes: - "*/*" description: list or watch objects of kind Service operationId: listCoreV1ServiceForAllNamespaces produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.core.v1.ServiceList" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: list x-kubernetes-group-version-kind: group: "" kind: Service version: v1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true /api/v1/watch/configmaps: get: consumes: - "*/*" description: watch individual changes to a list of ConfigMap operationId: watchCoreV1ConfigMapListForAllNamespaces produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: watchlist x-kubernetes-group-version-kind: group: "" kind: ConfigMap version: v1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true /api/v1/watch/endpoints: get: consumes: - "*/*" description: watch individual changes to a list of Endpoints operationId: watchCoreV1EndpointsListForAllNamespaces produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: watchlist x-kubernetes-group-version-kind: group: "" kind: Endpoints version: v1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true /api/v1/watch/events: get: consumes: - "*/*" description: watch individual changes to a list of Event operationId: watchCoreV1EventListForAllNamespaces produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: watchlist x-kubernetes-group-version-kind: group: "" kind: Event version: v1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true /api/v1/watch/limitranges: get: consumes: - "*/*" description: watch individual changes to a list of LimitRange operationId: watchCoreV1LimitRangeListForAllNamespaces produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: watchlist x-kubernetes-group-version-kind: group: "" kind: LimitRange version: v1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true /api/v1/watch/namespaces: get: consumes: - "*/*" description: watch individual changes to a list of Namespace operationId: watchCoreV1NamespaceList produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: watchlist x-kubernetes-group-version-kind: group: "" kind: Namespace version: v1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true "/api/v1/watch/namespaces/{namespace}/configmaps": get: consumes: - "*/*" description: watch individual changes to a list of ConfigMap operationId: watchCoreV1NamespacedConfigMapList produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: watchlist x-kubernetes-group-version-kind: group: "" kind: ConfigMap version: v1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true "/api/v1/watch/namespaces/{namespace}/configmaps/{name}": get: consumes: - "*/*" description: watch changes to an object of kind ConfigMap operationId: watchCoreV1NamespacedConfigMap produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: watch x-kubernetes-group-version-kind: group: "" kind: ConfigMap version: v1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: name of the ConfigMap in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true "/api/v1/watch/namespaces/{namespace}/endpoints": get: consumes: - "*/*" description: watch individual changes to a list of Endpoints operationId: watchCoreV1NamespacedEndpointsList produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: watchlist x-kubernetes-group-version-kind: group: "" kind: Endpoints version: v1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true "/api/v1/watch/namespaces/{namespace}/endpoints/{name}": get: consumes: - "*/*" description: watch changes to an object of kind Endpoints operationId: watchCoreV1NamespacedEndpoints produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: watch x-kubernetes-group-version-kind: group: "" kind: Endpoints version: v1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: name of the Endpoints in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true "/api/v1/watch/namespaces/{namespace}/events": get: consumes: - "*/*" description: watch individual changes to a list of Event operationId: watchCoreV1NamespacedEventList produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: watchlist x-kubernetes-group-version-kind: group: "" kind: Event version: v1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true "/api/v1/watch/namespaces/{namespace}/events/{name}": get: consumes: - "*/*" description: watch changes to an object of kind Event operationId: watchCoreV1NamespacedEvent produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: watch x-kubernetes-group-version-kind: group: "" kind: Event version: v1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: name of the Event in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true "/api/v1/watch/namespaces/{namespace}/limitranges": get: consumes: - "*/*" description: watch individual changes to a list of LimitRange operationId: watchCoreV1NamespacedLimitRangeList produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: watchlist x-kubernetes-group-version-kind: group: "" kind: LimitRange version: v1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true "/api/v1/watch/namespaces/{namespace}/limitranges/{name}": get: consumes: - "*/*" description: watch changes to an object of kind LimitRange operationId: watchCoreV1NamespacedLimitRange produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: watch x-kubernetes-group-version-kind: group: "" kind: LimitRange version: v1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: name of the LimitRange in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true "/api/v1/watch/namespaces/{namespace}/persistentvolumeclaims": get: consumes: - "*/*" description: watch individual changes to a list of PersistentVolumeClaim operationId: watchCoreV1NamespacedPersistentVolumeClaimList produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: watchlist x-kubernetes-group-version-kind: group: "" kind: PersistentVolumeClaim version: v1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true "/api/v1/watch/namespaces/{namespace}/persistentvolumeclaims/{name}": get: consumes: - "*/*" description: watch changes to an object of kind PersistentVolumeClaim operationId: watchCoreV1NamespacedPersistentVolumeClaim produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: watch x-kubernetes-group-version-kind: group: "" kind: PersistentVolumeClaim version: v1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: name of the PersistentVolumeClaim in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true "/api/v1/watch/namespaces/{namespace}/pods": get: consumes: - "*/*" description: watch individual changes to a list of Pod operationId: watchCoreV1NamespacedPodList produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: watchlist x-kubernetes-group-version-kind: group: "" kind: Pod version: v1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true "/api/v1/watch/namespaces/{namespace}/pods/{name}": get: consumes: - "*/*" description: watch changes to an object of kind Pod operationId: watchCoreV1NamespacedPod produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: watch x-kubernetes-group-version-kind: group: "" kind: Pod version: v1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: name of the Pod in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true "/api/v1/watch/namespaces/{namespace}/podtemplates": get: consumes: - "*/*" description: watch individual changes to a list of PodTemplate operationId: watchCoreV1NamespacedPodTemplateList produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: watchlist x-kubernetes-group-version-kind: group: "" kind: PodTemplate version: v1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true "/api/v1/watch/namespaces/{namespace}/podtemplates/{name}": get: consumes: - "*/*" description: watch changes to an object of kind PodTemplate operationId: watchCoreV1NamespacedPodTemplate produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: watch x-kubernetes-group-version-kind: group: "" kind: PodTemplate version: v1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: name of the PodTemplate in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true "/api/v1/watch/namespaces/{namespace}/replicationcontrollers": get: consumes: - "*/*" description: watch individual changes to a list of ReplicationController operationId: watchCoreV1NamespacedReplicationControllerList produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: watchlist x-kubernetes-group-version-kind: group: "" kind: ReplicationController version: v1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true "/api/v1/watch/namespaces/{namespace}/replicationcontrollers/{name}": get: consumes: - "*/*" description: watch changes to an object of kind ReplicationController operationId: watchCoreV1NamespacedReplicationController produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: watch x-kubernetes-group-version-kind: group: "" kind: ReplicationController version: v1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: name of the ReplicationController in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true "/api/v1/watch/namespaces/{namespace}/resourcequotas": get: consumes: - "*/*" description: watch individual changes to a list of ResourceQuota operationId: watchCoreV1NamespacedResourceQuotaList produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: watchlist x-kubernetes-group-version-kind: group: "" kind: ResourceQuota version: v1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true "/api/v1/watch/namespaces/{namespace}/resourcequotas/{name}": get: consumes: - "*/*" description: watch changes to an object of kind ResourceQuota operationId: watchCoreV1NamespacedResourceQuota produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: watch x-kubernetes-group-version-kind: group: "" kind: ResourceQuota version: v1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: name of the ResourceQuota in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true "/api/v1/watch/namespaces/{namespace}/secrets": get: consumes: - "*/*" description: watch individual changes to a list of Secret operationId: watchCoreV1NamespacedSecretList produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: watchlist x-kubernetes-group-version-kind: group: "" kind: Secret version: v1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true "/api/v1/watch/namespaces/{namespace}/secrets/{name}": get: consumes: - "*/*" description: watch changes to an object of kind Secret operationId: watchCoreV1NamespacedSecret produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: watch x-kubernetes-group-version-kind: group: "" kind: Secret version: v1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: name of the Secret in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true "/api/v1/watch/namespaces/{namespace}/serviceaccounts": get: consumes: - "*/*" description: watch individual changes to a list of ServiceAccount operationId: watchCoreV1NamespacedServiceAccountList produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: watchlist x-kubernetes-group-version-kind: group: "" kind: ServiceAccount version: v1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true "/api/v1/watch/namespaces/{namespace}/serviceaccounts/{name}": get: consumes: - "*/*" description: watch changes to an object of kind ServiceAccount operationId: watchCoreV1NamespacedServiceAccount produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: watch x-kubernetes-group-version-kind: group: "" kind: ServiceAccount version: v1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: name of the ServiceAccount in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true "/api/v1/watch/namespaces/{namespace}/services": get: consumes: - "*/*" description: watch individual changes to a list of Service operationId: watchCoreV1NamespacedServiceList produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: watchlist x-kubernetes-group-version-kind: group: "" kind: Service version: v1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true "/api/v1/watch/namespaces/{namespace}/services/{name}": get: consumes: - "*/*" description: watch changes to an object of kind Service operationId: watchCoreV1NamespacedService produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: watch x-kubernetes-group-version-kind: group: "" kind: Service version: v1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: name of the Service in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true "/api/v1/watch/namespaces/{name}": get: consumes: - "*/*" description: watch changes to an object of kind Namespace operationId: watchCoreV1Namespace produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: watch x-kubernetes-group-version-kind: group: "" kind: Namespace version: v1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: name of the Namespace in: path name: name required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true /api/v1/watch/nodes: get: consumes: - "*/*" description: watch individual changes to a list of Node operationId: watchCoreV1NodeList produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: watchlist x-kubernetes-group-version-kind: group: "" kind: Node version: v1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true "/api/v1/watch/nodes/{name}": get: consumes: - "*/*" description: watch changes to an object of kind Node operationId: watchCoreV1Node produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: watch x-kubernetes-group-version-kind: group: "" kind: Node version: v1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: name of the Node in: path name: name required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true /api/v1/watch/persistentvolumeclaims: get: consumes: - "*/*" description: watch individual changes to a list of PersistentVolumeClaim operationId: watchCoreV1PersistentVolumeClaimListForAllNamespaces produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: watchlist x-kubernetes-group-version-kind: group: "" kind: PersistentVolumeClaim version: v1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true /api/v1/watch/persistentvolumes: get: consumes: - "*/*" description: watch individual changes to a list of PersistentVolume operationId: watchCoreV1PersistentVolumeList produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: watchlist x-kubernetes-group-version-kind: group: "" kind: PersistentVolume version: v1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true "/api/v1/watch/persistentvolumes/{name}": get: consumes: - "*/*" description: watch changes to an object of kind PersistentVolume operationId: watchCoreV1PersistentVolume produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: watch x-kubernetes-group-version-kind: group: "" kind: PersistentVolume version: v1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: name of the PersistentVolume in: path name: name required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true /api/v1/watch/pods: get: consumes: - "*/*" description: watch individual changes to a list of Pod operationId: watchCoreV1PodListForAllNamespaces produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: watchlist x-kubernetes-group-version-kind: group: "" kind: Pod version: v1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true /api/v1/watch/podtemplates: get: consumes: - "*/*" description: watch individual changes to a list of PodTemplate operationId: watchCoreV1PodTemplateListForAllNamespaces produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: watchlist x-kubernetes-group-version-kind: group: "" kind: PodTemplate version: v1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true /api/v1/watch/replicationcontrollers: get: consumes: - "*/*" description: watch individual changes to a list of ReplicationController operationId: watchCoreV1ReplicationControllerListForAllNamespaces produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: watchlist x-kubernetes-group-version-kind: group: "" kind: ReplicationController version: v1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true /api/v1/watch/resourcequotas: get: consumes: - "*/*" description: watch individual changes to a list of ResourceQuota operationId: watchCoreV1ResourceQuotaListForAllNamespaces produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: watchlist x-kubernetes-group-version-kind: group: "" kind: ResourceQuota version: v1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true /api/v1/watch/secrets: get: consumes: - "*/*" description: watch individual changes to a list of Secret operationId: watchCoreV1SecretListForAllNamespaces produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: watchlist x-kubernetes-group-version-kind: group: "" kind: Secret version: v1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true /api/v1/watch/serviceaccounts: get: consumes: - "*/*" description: watch individual changes to a list of ServiceAccount operationId: watchCoreV1ServiceAccountListForAllNamespaces produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: watchlist x-kubernetes-group-version-kind: group: "" kind: ServiceAccount version: v1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true /api/v1/watch/services: get: consumes: - "*/*" description: watch individual changes to a list of Service operationId: watchCoreV1ServiceListForAllNamespaces produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - core_v1 x-kubernetes-action: watchlist x-kubernetes-group-version-kind: group: "" kind: Service version: v1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true /apis/: get: consumes: - application/json - application/yaml - application/vnd.kubernetes.protobuf description: get available API versions operationId: getAPIVersions produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroupList" "401": description: Unauthorized schemes: - https tags: - apis /apis/admissionregistration.k8s.io/: get: consumes: - application/json - application/yaml - application/vnd.kubernetes.protobuf description: get information of a group operationId: getAdmissionregistrationAPIGroup produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup" "401": description: Unauthorized schemes: - https tags: - admissionregistration /apis/admissionregistration.k8s.io/v1alpha1/: get: consumes: - application/json - application/yaml - application/vnd.kubernetes.protobuf description: get available resources operationId: getAdmissionregistrationV1alpha1APIResources produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList" "401": description: Unauthorized schemes: - https tags: - admissionregistration_v1alpha1 /apis/admissionregistration.k8s.io/v1alpha1/initializerconfigurations: delete: consumes: - "*/*" description: delete collection of InitializerConfiguration operationId: deleteAdmissionregistrationV1alpha1CollectionInitializerConfiguration parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - admissionregistration_v1alpha1 x-kubernetes-action: deletecollection x-kubernetes-group-version-kind: group: admissionregistration.k8s.io kind: InitializerConfiguration version: v1alpha1 get: consumes: - "*/*" description: list or watch objects of kind InitializerConfiguration operationId: listAdmissionregistrationV1alpha1InitializerConfiguration parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.admissionregistration.v1alpha1.InitializerConfigurationList" "401": description: Unauthorized schemes: - https tags: - admissionregistration_v1alpha1 x-kubernetes-action: list x-kubernetes-group-version-kind: group: admissionregistration.k8s.io kind: InitializerConfiguration version: v1alpha1 parameters: - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true post: consumes: - "*/*" description: create an InitializerConfiguration operationId: createAdmissionregistrationV1alpha1InitializerConfiguration parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.admissionregistration.v1alpha1.InitializerConfiguration" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.admissionregistration.v1alpha1.InitializerConfiguration" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.admissionregistration.v1alpha1.InitializerConfiguration" "202": description: Accepted schema: $ref: "#/definitions/io.k8s.api.admissionregistration.v1alpha1.InitializerConfiguration" "401": description: Unauthorized schemes: - https tags: - admissionregistration_v1alpha1 x-kubernetes-action: post x-kubernetes-group-version-kind: group: admissionregistration.k8s.io kind: InitializerConfiguration version: v1alpha1 "/apis/admissionregistration.k8s.io/v1alpha1/initializerconfigurations/{name}": delete: consumes: - "*/*" description: delete an InitializerConfiguration operationId: deleteAdmissionregistrationV1alpha1InitializerConfiguration parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" - description: The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. in: query name: gracePeriodSeconds type: integer uniqueItems: true - description: "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both." in: query name: orphanDependents type: boolean uniqueItems: true - description: "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground." in: query name: propagationPolicy type: string uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - admissionregistration_v1alpha1 x-kubernetes-action: delete x-kubernetes-group-version-kind: group: admissionregistration.k8s.io kind: InitializerConfiguration version: v1alpha1 get: consumes: - "*/*" description: read the specified InitializerConfiguration operationId: readAdmissionregistrationV1alpha1InitializerConfiguration parameters: - description: Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. in: query name: exact type: boolean uniqueItems: true - description: Should this value be exported. Export strips fields that a user can not specify. in: query name: export type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.admissionregistration.v1alpha1.InitializerConfiguration" "401": description: Unauthorized schemes: - https tags: - admissionregistration_v1alpha1 x-kubernetes-action: get x-kubernetes-group-version-kind: group: admissionregistration.k8s.io kind: InitializerConfiguration version: v1alpha1 parameters: - description: name of the InitializerConfiguration in: path name: name required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true patch: consumes: - application/json-patch+json - application/merge-patch+json - application/strategic-merge-patch+json description: partially update the specified InitializerConfiguration operationId: patchAdmissionregistrationV1alpha1InitializerConfiguration parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.admissionregistration.v1alpha1.InitializerConfiguration" "401": description: Unauthorized schemes: - https tags: - admissionregistration_v1alpha1 x-kubernetes-action: patch x-kubernetes-group-version-kind: group: admissionregistration.k8s.io kind: InitializerConfiguration version: v1alpha1 put: consumes: - "*/*" description: replace the specified InitializerConfiguration operationId: replaceAdmissionregistrationV1alpha1InitializerConfiguration parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.admissionregistration.v1alpha1.InitializerConfiguration" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.admissionregistration.v1alpha1.InitializerConfiguration" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.admissionregistration.v1alpha1.InitializerConfiguration" "401": description: Unauthorized schemes: - https tags: - admissionregistration_v1alpha1 x-kubernetes-action: put x-kubernetes-group-version-kind: group: admissionregistration.k8s.io kind: InitializerConfiguration version: v1alpha1 /apis/admissionregistration.k8s.io/v1alpha1/watch/initializerconfigurations: get: consumes: - "*/*" description: watch individual changes to a list of InitializerConfiguration operationId: watchAdmissionregistrationV1alpha1InitializerConfigurationList produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - admissionregistration_v1alpha1 x-kubernetes-action: watchlist x-kubernetes-group-version-kind: group: admissionregistration.k8s.io kind: InitializerConfiguration version: v1alpha1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true "/apis/admissionregistration.k8s.io/v1alpha1/watch/initializerconfigurations/{name}": get: consumes: - "*/*" description: watch changes to an object of kind InitializerConfiguration operationId: watchAdmissionregistrationV1alpha1InitializerConfiguration produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - admissionregistration_v1alpha1 x-kubernetes-action: watch x-kubernetes-group-version-kind: group: admissionregistration.k8s.io kind: InitializerConfiguration version: v1alpha1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: name of the InitializerConfiguration in: path name: name required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true /apis/admissionregistration.k8s.io/v1beta1/: get: consumes: - application/json - application/yaml - application/vnd.kubernetes.protobuf description: get available resources operationId: getAdmissionregistrationV1beta1APIResources produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList" "401": description: Unauthorized schemes: - https tags: - admissionregistration_v1beta1 /apis/admissionregistration.k8s.io/v1beta1/mutatingwebhookconfigurations: delete: consumes: - "*/*" description: delete collection of MutatingWebhookConfiguration operationId: deleteAdmissionregistrationV1beta1CollectionMutatingWebhookConfiguration parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - admissionregistration_v1beta1 x-kubernetes-action: deletecollection x-kubernetes-group-version-kind: group: admissionregistration.k8s.io kind: MutatingWebhookConfiguration version: v1beta1 get: consumes: - "*/*" description: list or watch objects of kind MutatingWebhookConfiguration operationId: listAdmissionregistrationV1beta1MutatingWebhookConfiguration parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.admissionregistration.v1beta1.MutatingWebhookConfigurationList" "401": description: Unauthorized schemes: - https tags: - admissionregistration_v1beta1 x-kubernetes-action: list x-kubernetes-group-version-kind: group: admissionregistration.k8s.io kind: MutatingWebhookConfiguration version: v1beta1 parameters: - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true post: consumes: - "*/*" description: create a MutatingWebhookConfiguration operationId: createAdmissionregistrationV1beta1MutatingWebhookConfiguration parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.admissionregistration.v1beta1.MutatingWebhookConfiguration" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.admissionregistration.v1beta1.MutatingWebhookConfiguration" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.admissionregistration.v1beta1.MutatingWebhookConfiguration" "202": description: Accepted schema: $ref: "#/definitions/io.k8s.api.admissionregistration.v1beta1.MutatingWebhookConfiguration" "401": description: Unauthorized schemes: - https tags: - admissionregistration_v1beta1 x-kubernetes-action: post x-kubernetes-group-version-kind: group: admissionregistration.k8s.io kind: MutatingWebhookConfiguration version: v1beta1 "/apis/admissionregistration.k8s.io/v1beta1/mutatingwebhookconfigurations/{name}": delete: consumes: - "*/*" description: delete a MutatingWebhookConfiguration operationId: deleteAdmissionregistrationV1beta1MutatingWebhookConfiguration parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" - description: The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. in: query name: gracePeriodSeconds type: integer uniqueItems: true - description: "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both." in: query name: orphanDependents type: boolean uniqueItems: true - description: "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground." in: query name: propagationPolicy type: string uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - admissionregistration_v1beta1 x-kubernetes-action: delete x-kubernetes-group-version-kind: group: admissionregistration.k8s.io kind: MutatingWebhookConfiguration version: v1beta1 get: consumes: - "*/*" description: read the specified MutatingWebhookConfiguration operationId: readAdmissionregistrationV1beta1MutatingWebhookConfiguration parameters: - description: Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. in: query name: exact type: boolean uniqueItems: true - description: Should this value be exported. Export strips fields that a user can not specify. in: query name: export type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.admissionregistration.v1beta1.MutatingWebhookConfiguration" "401": description: Unauthorized schemes: - https tags: - admissionregistration_v1beta1 x-kubernetes-action: get x-kubernetes-group-version-kind: group: admissionregistration.k8s.io kind: MutatingWebhookConfiguration version: v1beta1 parameters: - description: name of the MutatingWebhookConfiguration in: path name: name required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true patch: consumes: - application/json-patch+json - application/merge-patch+json - application/strategic-merge-patch+json description: partially update the specified MutatingWebhookConfiguration operationId: patchAdmissionregistrationV1beta1MutatingWebhookConfiguration parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.admissionregistration.v1beta1.MutatingWebhookConfiguration" "401": description: Unauthorized schemes: - https tags: - admissionregistration_v1beta1 x-kubernetes-action: patch x-kubernetes-group-version-kind: group: admissionregistration.k8s.io kind: MutatingWebhookConfiguration version: v1beta1 put: consumes: - "*/*" description: replace the specified MutatingWebhookConfiguration operationId: replaceAdmissionregistrationV1beta1MutatingWebhookConfiguration parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.admissionregistration.v1beta1.MutatingWebhookConfiguration" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.admissionregistration.v1beta1.MutatingWebhookConfiguration" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.admissionregistration.v1beta1.MutatingWebhookConfiguration" "401": description: Unauthorized schemes: - https tags: - admissionregistration_v1beta1 x-kubernetes-action: put x-kubernetes-group-version-kind: group: admissionregistration.k8s.io kind: MutatingWebhookConfiguration version: v1beta1 /apis/admissionregistration.k8s.io/v1beta1/validatingwebhookconfigurations: delete: consumes: - "*/*" description: delete collection of ValidatingWebhookConfiguration operationId: deleteAdmissionregistrationV1beta1CollectionValidatingWebhookConfiguration parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - admissionregistration_v1beta1 x-kubernetes-action: deletecollection x-kubernetes-group-version-kind: group: admissionregistration.k8s.io kind: ValidatingWebhookConfiguration version: v1beta1 get: consumes: - "*/*" description: list or watch objects of kind ValidatingWebhookConfiguration operationId: listAdmissionregistrationV1beta1ValidatingWebhookConfiguration parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.admissionregistration.v1beta1.ValidatingWebhookConfigurationList" "401": description: Unauthorized schemes: - https tags: - admissionregistration_v1beta1 x-kubernetes-action: list x-kubernetes-group-version-kind: group: admissionregistration.k8s.io kind: ValidatingWebhookConfiguration version: v1beta1 parameters: - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true post: consumes: - "*/*" description: create a ValidatingWebhookConfiguration operationId: createAdmissionregistrationV1beta1ValidatingWebhookConfiguration parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.admissionregistration.v1beta1.ValidatingWebhookConfiguration" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.admissionregistration.v1beta1.ValidatingWebhookConfiguration" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.admissionregistration.v1beta1.ValidatingWebhookConfiguration" "202": description: Accepted schema: $ref: "#/definitions/io.k8s.api.admissionregistration.v1beta1.ValidatingWebhookConfiguration" "401": description: Unauthorized schemes: - https tags: - admissionregistration_v1beta1 x-kubernetes-action: post x-kubernetes-group-version-kind: group: admissionregistration.k8s.io kind: ValidatingWebhookConfiguration version: v1beta1 "/apis/admissionregistration.k8s.io/v1beta1/validatingwebhookconfigurations/{name}": delete: consumes: - "*/*" description: delete a ValidatingWebhookConfiguration operationId: deleteAdmissionregistrationV1beta1ValidatingWebhookConfiguration parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" - description: The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. in: query name: gracePeriodSeconds type: integer uniqueItems: true - description: "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both." in: query name: orphanDependents type: boolean uniqueItems: true - description: "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground." in: query name: propagationPolicy type: string uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - admissionregistration_v1beta1 x-kubernetes-action: delete x-kubernetes-group-version-kind: group: admissionregistration.k8s.io kind: ValidatingWebhookConfiguration version: v1beta1 get: consumes: - "*/*" description: read the specified ValidatingWebhookConfiguration operationId: readAdmissionregistrationV1beta1ValidatingWebhookConfiguration parameters: - description: Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. in: query name: exact type: boolean uniqueItems: true - description: Should this value be exported. Export strips fields that a user can not specify. in: query name: export type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.admissionregistration.v1beta1.ValidatingWebhookConfiguration" "401": description: Unauthorized schemes: - https tags: - admissionregistration_v1beta1 x-kubernetes-action: get x-kubernetes-group-version-kind: group: admissionregistration.k8s.io kind: ValidatingWebhookConfiguration version: v1beta1 parameters: - description: name of the ValidatingWebhookConfiguration in: path name: name required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true patch: consumes: - application/json-patch+json - application/merge-patch+json - application/strategic-merge-patch+json description: partially update the specified ValidatingWebhookConfiguration operationId: patchAdmissionregistrationV1beta1ValidatingWebhookConfiguration parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.admissionregistration.v1beta1.ValidatingWebhookConfiguration" "401": description: Unauthorized schemes: - https tags: - admissionregistration_v1beta1 x-kubernetes-action: patch x-kubernetes-group-version-kind: group: admissionregistration.k8s.io kind: ValidatingWebhookConfiguration version: v1beta1 put: consumes: - "*/*" description: replace the specified ValidatingWebhookConfiguration operationId: replaceAdmissionregistrationV1beta1ValidatingWebhookConfiguration parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.admissionregistration.v1beta1.ValidatingWebhookConfiguration" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.admissionregistration.v1beta1.ValidatingWebhookConfiguration" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.admissionregistration.v1beta1.ValidatingWebhookConfiguration" "401": description: Unauthorized schemes: - https tags: - admissionregistration_v1beta1 x-kubernetes-action: put x-kubernetes-group-version-kind: group: admissionregistration.k8s.io kind: ValidatingWebhookConfiguration version: v1beta1 /apis/admissionregistration.k8s.io/v1beta1/watch/mutatingwebhookconfigurations: get: consumes: - "*/*" description: watch individual changes to a list of MutatingWebhookConfiguration operationId: watchAdmissionregistrationV1beta1MutatingWebhookConfigurationList produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - admissionregistration_v1beta1 x-kubernetes-action: watchlist x-kubernetes-group-version-kind: group: admissionregistration.k8s.io kind: MutatingWebhookConfiguration version: v1beta1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true "/apis/admissionregistration.k8s.io/v1beta1/watch/mutatingwebhookconfigurations/{name}": get: consumes: - "*/*" description: watch changes to an object of kind MutatingWebhookConfiguration operationId: watchAdmissionregistrationV1beta1MutatingWebhookConfiguration produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - admissionregistration_v1beta1 x-kubernetes-action: watch x-kubernetes-group-version-kind: group: admissionregistration.k8s.io kind: MutatingWebhookConfiguration version: v1beta1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: name of the MutatingWebhookConfiguration in: path name: name required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true /apis/admissionregistration.k8s.io/v1beta1/watch/validatingwebhookconfigurations: get: consumes: - "*/*" description: watch individual changes to a list of ValidatingWebhookConfiguration operationId: watchAdmissionregistrationV1beta1ValidatingWebhookConfigurationList produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - admissionregistration_v1beta1 x-kubernetes-action: watchlist x-kubernetes-group-version-kind: group: admissionregistration.k8s.io kind: ValidatingWebhookConfiguration version: v1beta1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true "/apis/admissionregistration.k8s.io/v1beta1/watch/validatingwebhookconfigurations/{name}": get: consumes: - "*/*" description: watch changes to an object of kind ValidatingWebhookConfiguration operationId: watchAdmissionregistrationV1beta1ValidatingWebhookConfiguration produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - admissionregistration_v1beta1 x-kubernetes-action: watch x-kubernetes-group-version-kind: group: admissionregistration.k8s.io kind: ValidatingWebhookConfiguration version: v1beta1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: name of the ValidatingWebhookConfiguration in: path name: name required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true /apis/apiextensions.k8s.io/: get: consumes: - application/json - application/yaml - application/vnd.kubernetes.protobuf description: get information of a group operationId: getApiextensionsAPIGroup produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup" "401": description: Unauthorized schemes: - https tags: - apiextensions /apis/apiextensions.k8s.io/v1beta1/: get: consumes: - application/json - application/yaml - application/vnd.kubernetes.protobuf description: get available resources operationId: getApiextensionsV1beta1APIResources produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList" "401": description: Unauthorized schemes: - https tags: - apiextensions_v1beta1 /apis/apiextensions.k8s.io/v1beta1/customresourcedefinitions: delete: consumes: - "*/*" description: delete collection of CustomResourceDefinition operationId: deleteApiextensionsV1beta1CollectionCustomResourceDefinition parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - apiextensions_v1beta1 x-kubernetes-action: deletecollection x-kubernetes-group-version-kind: group: apiextensions.k8s.io kind: CustomResourceDefinition version: v1beta1 get: consumes: - "*/*" description: list or watch objects of kind CustomResourceDefinition operationId: listApiextensionsV1beta1CustomResourceDefinition parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinitionList" "401": description: Unauthorized schemes: - https tags: - apiextensions_v1beta1 x-kubernetes-action: list x-kubernetes-group-version-kind: group: apiextensions.k8s.io kind: CustomResourceDefinition version: v1beta1 parameters: - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true post: consumes: - "*/*" description: create a CustomResourceDefinition operationId: createApiextensionsV1beta1CustomResourceDefinition parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinition" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinition" "201": description: Created schema: $ref: "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinition" "202": description: Accepted schema: $ref: "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinition" "401": description: Unauthorized schemes: - https tags: - apiextensions_v1beta1 x-kubernetes-action: post x-kubernetes-group-version-kind: group: apiextensions.k8s.io kind: CustomResourceDefinition version: v1beta1 "/apis/apiextensions.k8s.io/v1beta1/customresourcedefinitions/{name}": delete: consumes: - "*/*" description: delete a CustomResourceDefinition operationId: deleteApiextensionsV1beta1CustomResourceDefinition parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" - description: The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. in: query name: gracePeriodSeconds type: integer uniqueItems: true - description: "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both." in: query name: orphanDependents type: boolean uniqueItems: true - description: "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground." in: query name: propagationPolicy type: string uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - apiextensions_v1beta1 x-kubernetes-action: delete x-kubernetes-group-version-kind: group: apiextensions.k8s.io kind: CustomResourceDefinition version: v1beta1 get: consumes: - "*/*" description: read the specified CustomResourceDefinition operationId: readApiextensionsV1beta1CustomResourceDefinition parameters: - description: Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. in: query name: exact type: boolean uniqueItems: true - description: Should this value be exported. Export strips fields that a user can not specify. in: query name: export type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinition" "401": description: Unauthorized schemes: - https tags: - apiextensions_v1beta1 x-kubernetes-action: get x-kubernetes-group-version-kind: group: apiextensions.k8s.io kind: CustomResourceDefinition version: v1beta1 parameters: - description: name of the CustomResourceDefinition in: path name: name required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true patch: consumes: - application/json-patch+json - application/merge-patch+json - application/strategic-merge-patch+json description: partially update the specified CustomResourceDefinition operationId: patchApiextensionsV1beta1CustomResourceDefinition parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinition" "401": description: Unauthorized schemes: - https tags: - apiextensions_v1beta1 x-kubernetes-action: patch x-kubernetes-group-version-kind: group: apiextensions.k8s.io kind: CustomResourceDefinition version: v1beta1 put: consumes: - "*/*" description: replace the specified CustomResourceDefinition operationId: replaceApiextensionsV1beta1CustomResourceDefinition parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinition" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinition" "201": description: Created schema: $ref: "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinition" "401": description: Unauthorized schemes: - https tags: - apiextensions_v1beta1 x-kubernetes-action: put x-kubernetes-group-version-kind: group: apiextensions.k8s.io kind: CustomResourceDefinition version: v1beta1 "/apis/apiextensions.k8s.io/v1beta1/customresourcedefinitions/{name}/status": parameters: - description: name of the CustomResourceDefinition in: path name: name required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true put: consumes: - "*/*" description: replace status of the specified CustomResourceDefinition operationId: replaceApiextensionsV1beta1CustomResourceDefinitionStatus parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinition" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinition" "201": description: Created schema: $ref: "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinition" "401": description: Unauthorized schemes: - https tags: - apiextensions_v1beta1 x-kubernetes-action: put x-kubernetes-group-version-kind: group: apiextensions.k8s.io kind: CustomResourceDefinition version: v1beta1 /apis/apiextensions.k8s.io/v1beta1/watch/customresourcedefinitions: get: consumes: - "*/*" description: watch individual changes to a list of CustomResourceDefinition operationId: watchApiextensionsV1beta1CustomResourceDefinitionList produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - apiextensions_v1beta1 x-kubernetes-action: watchlist x-kubernetes-group-version-kind: group: apiextensions.k8s.io kind: CustomResourceDefinition version: v1beta1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true "/apis/apiextensions.k8s.io/v1beta1/watch/customresourcedefinitions/{name}": get: consumes: - "*/*" description: watch changes to an object of kind CustomResourceDefinition operationId: watchApiextensionsV1beta1CustomResourceDefinition produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - apiextensions_v1beta1 x-kubernetes-action: watch x-kubernetes-group-version-kind: group: apiextensions.k8s.io kind: CustomResourceDefinition version: v1beta1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: name of the CustomResourceDefinition in: path name: name required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true /apis/apiregistration.k8s.io/: get: consumes: - application/json - application/yaml - application/vnd.kubernetes.protobuf description: get information of a group operationId: getApiregistrationAPIGroup produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup" "401": description: Unauthorized schemes: - https tags: - apiregistration /apis/apiregistration.k8s.io/v1/: get: consumes: - application/json - application/yaml - application/vnd.kubernetes.protobuf description: get available resources operationId: getApiregistrationV1APIResources produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList" "401": description: Unauthorized schemes: - https tags: - apiregistration_v1 /apis/apiregistration.k8s.io/v1/apiservices: delete: consumes: - "*/*" description: delete collection of APIService operationId: deleteApiregistrationV1CollectionAPIService parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - apiregistration_v1 x-kubernetes-action: deletecollection x-kubernetes-group-version-kind: group: apiregistration.k8s.io kind: APIService version: v1 get: consumes: - "*/*" description: list or watch objects of kind APIService operationId: listApiregistrationV1APIService parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIServiceList" "401": description: Unauthorized schemes: - https tags: - apiregistration_v1 x-kubernetes-action: list x-kubernetes-group-version-kind: group: apiregistration.k8s.io kind: APIService version: v1 parameters: - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true post: consumes: - "*/*" description: create an APIService operationId: createApiregistrationV1APIService parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService" "201": description: Created schema: $ref: "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService" "202": description: Accepted schema: $ref: "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService" "401": description: Unauthorized schemes: - https tags: - apiregistration_v1 x-kubernetes-action: post x-kubernetes-group-version-kind: group: apiregistration.k8s.io kind: APIService version: v1 "/apis/apiregistration.k8s.io/v1/apiservices/{name}": delete: consumes: - "*/*" description: delete an APIService operationId: deleteApiregistrationV1APIService parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" - description: The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. in: query name: gracePeriodSeconds type: integer uniqueItems: true - description: "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both." in: query name: orphanDependents type: boolean uniqueItems: true - description: "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground." in: query name: propagationPolicy type: string uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - apiregistration_v1 x-kubernetes-action: delete x-kubernetes-group-version-kind: group: apiregistration.k8s.io kind: APIService version: v1 get: consumes: - "*/*" description: read the specified APIService operationId: readApiregistrationV1APIService parameters: - description: Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. in: query name: exact type: boolean uniqueItems: true - description: Should this value be exported. Export strips fields that a user can not specify. in: query name: export type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService" "401": description: Unauthorized schemes: - https tags: - apiregistration_v1 x-kubernetes-action: get x-kubernetes-group-version-kind: group: apiregistration.k8s.io kind: APIService version: v1 parameters: - description: name of the APIService in: path name: name required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true patch: consumes: - application/json-patch+json - application/merge-patch+json - application/strategic-merge-patch+json description: partially update the specified APIService operationId: patchApiregistrationV1APIService parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService" "401": description: Unauthorized schemes: - https tags: - apiregistration_v1 x-kubernetes-action: patch x-kubernetes-group-version-kind: group: apiregistration.k8s.io kind: APIService version: v1 put: consumes: - "*/*" description: replace the specified APIService operationId: replaceApiregistrationV1APIService parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService" "201": description: Created schema: $ref: "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService" "401": description: Unauthorized schemes: - https tags: - apiregistration_v1 x-kubernetes-action: put x-kubernetes-group-version-kind: group: apiregistration.k8s.io kind: APIService version: v1 "/apis/apiregistration.k8s.io/v1/apiservices/{name}/status": parameters: - description: name of the APIService in: path name: name required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true put: consumes: - "*/*" description: replace status of the specified APIService operationId: replaceApiregistrationV1APIServiceStatus parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService" "201": description: Created schema: $ref: "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService" "401": description: Unauthorized schemes: - https tags: - apiregistration_v1 x-kubernetes-action: put x-kubernetes-group-version-kind: group: apiregistration.k8s.io kind: APIService version: v1 /apis/apiregistration.k8s.io/v1/watch/apiservices: get: consumes: - "*/*" description: watch individual changes to a list of APIService operationId: watchApiregistrationV1APIServiceList produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - apiregistration_v1 x-kubernetes-action: watchlist x-kubernetes-group-version-kind: group: apiregistration.k8s.io kind: APIService version: v1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true "/apis/apiregistration.k8s.io/v1/watch/apiservices/{name}": get: consumes: - "*/*" description: watch changes to an object of kind APIService operationId: watchApiregistrationV1APIService produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - apiregistration_v1 x-kubernetes-action: watch x-kubernetes-group-version-kind: group: apiregistration.k8s.io kind: APIService version: v1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: name of the APIService in: path name: name required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true /apis/apiregistration.k8s.io/v1beta1/: get: consumes: - application/json - application/yaml - application/vnd.kubernetes.protobuf description: get available resources operationId: getApiregistrationV1beta1APIResources produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList" "401": description: Unauthorized schemes: - https tags: - apiregistration_v1beta1 /apis/apiregistration.k8s.io/v1beta1/apiservices: delete: consumes: - "*/*" description: delete collection of APIService operationId: deleteApiregistrationV1beta1CollectionAPIService parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - apiregistration_v1beta1 x-kubernetes-action: deletecollection x-kubernetes-group-version-kind: group: apiregistration.k8s.io kind: APIService version: v1beta1 get: consumes: - "*/*" description: list or watch objects of kind APIService operationId: listApiregistrationV1beta1APIService parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIServiceList" "401": description: Unauthorized schemes: - https tags: - apiregistration_v1beta1 x-kubernetes-action: list x-kubernetes-group-version-kind: group: apiregistration.k8s.io kind: APIService version: v1beta1 parameters: - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true post: consumes: - "*/*" description: create an APIService operationId: createApiregistrationV1beta1APIService parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIService" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIService" "201": description: Created schema: $ref: "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIService" "202": description: Accepted schema: $ref: "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIService" "401": description: Unauthorized schemes: - https tags: - apiregistration_v1beta1 x-kubernetes-action: post x-kubernetes-group-version-kind: group: apiregistration.k8s.io kind: APIService version: v1beta1 "/apis/apiregistration.k8s.io/v1beta1/apiservices/{name}": delete: consumes: - "*/*" description: delete an APIService operationId: deleteApiregistrationV1beta1APIService parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" - description: The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. in: query name: gracePeriodSeconds type: integer uniqueItems: true - description: "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both." in: query name: orphanDependents type: boolean uniqueItems: true - description: "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground." in: query name: propagationPolicy type: string uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - apiregistration_v1beta1 x-kubernetes-action: delete x-kubernetes-group-version-kind: group: apiregistration.k8s.io kind: APIService version: v1beta1 get: consumes: - "*/*" description: read the specified APIService operationId: readApiregistrationV1beta1APIService parameters: - description: Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. in: query name: exact type: boolean uniqueItems: true - description: Should this value be exported. Export strips fields that a user can not specify. in: query name: export type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIService" "401": description: Unauthorized schemes: - https tags: - apiregistration_v1beta1 x-kubernetes-action: get x-kubernetes-group-version-kind: group: apiregistration.k8s.io kind: APIService version: v1beta1 parameters: - description: name of the APIService in: path name: name required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true patch: consumes: - application/json-patch+json - application/merge-patch+json - application/strategic-merge-patch+json description: partially update the specified APIService operationId: patchApiregistrationV1beta1APIService parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIService" "401": description: Unauthorized schemes: - https tags: - apiregistration_v1beta1 x-kubernetes-action: patch x-kubernetes-group-version-kind: group: apiregistration.k8s.io kind: APIService version: v1beta1 put: consumes: - "*/*" description: replace the specified APIService operationId: replaceApiregistrationV1beta1APIService parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIService" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIService" "201": description: Created schema: $ref: "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIService" "401": description: Unauthorized schemes: - https tags: - apiregistration_v1beta1 x-kubernetes-action: put x-kubernetes-group-version-kind: group: apiregistration.k8s.io kind: APIService version: v1beta1 "/apis/apiregistration.k8s.io/v1beta1/apiservices/{name}/status": parameters: - description: name of the APIService in: path name: name required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true put: consumes: - "*/*" description: replace status of the specified APIService operationId: replaceApiregistrationV1beta1APIServiceStatus parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIService" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIService" "201": description: Created schema: $ref: "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIService" "401": description: Unauthorized schemes: - https tags: - apiregistration_v1beta1 x-kubernetes-action: put x-kubernetes-group-version-kind: group: apiregistration.k8s.io kind: APIService version: v1beta1 /apis/apiregistration.k8s.io/v1beta1/watch/apiservices: get: consumes: - "*/*" description: watch individual changes to a list of APIService operationId: watchApiregistrationV1beta1APIServiceList produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - apiregistration_v1beta1 x-kubernetes-action: watchlist x-kubernetes-group-version-kind: group: apiregistration.k8s.io kind: APIService version: v1beta1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true "/apis/apiregistration.k8s.io/v1beta1/watch/apiservices/{name}": get: consumes: - "*/*" description: watch changes to an object of kind APIService operationId: watchApiregistrationV1beta1APIService produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - apiregistration_v1beta1 x-kubernetes-action: watch x-kubernetes-group-version-kind: group: apiregistration.k8s.io kind: APIService version: v1beta1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: name of the APIService in: path name: name required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true /apis/apps/: get: consumes: - application/json - application/yaml - application/vnd.kubernetes.protobuf description: get information of a group operationId: getAppsAPIGroup produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup" "401": description: Unauthorized schemes: - https tags: - apps /apis/apps/v1/: get: consumes: - application/json - application/yaml - application/vnd.kubernetes.protobuf description: get available resources operationId: getAppsV1APIResources produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList" "401": description: Unauthorized schemes: - https tags: - apps_v1 /apis/apps/v1/controllerrevisions: get: consumes: - "*/*" description: list or watch objects of kind ControllerRevision operationId: listAppsV1ControllerRevisionForAllNamespaces produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.apps.v1.ControllerRevisionList" "401": description: Unauthorized schemes: - https tags: - apps_v1 x-kubernetes-action: list x-kubernetes-group-version-kind: group: apps kind: ControllerRevision version: v1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true /apis/apps/v1/daemonsets: get: consumes: - "*/*" description: list or watch objects of kind DaemonSet operationId: listAppsV1DaemonSetForAllNamespaces produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.apps.v1.DaemonSetList" "401": description: Unauthorized schemes: - https tags: - apps_v1 x-kubernetes-action: list x-kubernetes-group-version-kind: group: apps kind: DaemonSet version: v1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true /apis/apps/v1/deployments: get: consumes: - "*/*" description: list or watch objects of kind Deployment operationId: listAppsV1DeploymentForAllNamespaces produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.apps.v1.DeploymentList" "401": description: Unauthorized schemes: - https tags: - apps_v1 x-kubernetes-action: list x-kubernetes-group-version-kind: group: apps kind: Deployment version: v1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true "/apis/apps/v1/namespaces/{namespace}/controllerrevisions": delete: consumes: - "*/*" description: delete collection of ControllerRevision operationId: deleteAppsV1CollectionNamespacedControllerRevision parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - apps_v1 x-kubernetes-action: deletecollection x-kubernetes-group-version-kind: group: apps kind: ControllerRevision version: v1 get: consumes: - "*/*" description: list or watch objects of kind ControllerRevision operationId: listAppsV1NamespacedControllerRevision parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.apps.v1.ControllerRevisionList" "401": description: Unauthorized schemes: - https tags: - apps_v1 x-kubernetes-action: list x-kubernetes-group-version-kind: group: apps kind: ControllerRevision version: v1 parameters: - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true post: consumes: - "*/*" description: create a ControllerRevision operationId: createAppsV1NamespacedControllerRevision parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.apps.v1.ControllerRevision" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.apps.v1.ControllerRevision" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.apps.v1.ControllerRevision" "202": description: Accepted schema: $ref: "#/definitions/io.k8s.api.apps.v1.ControllerRevision" "401": description: Unauthorized schemes: - https tags: - apps_v1 x-kubernetes-action: post x-kubernetes-group-version-kind: group: apps kind: ControllerRevision version: v1 "/apis/apps/v1/namespaces/{namespace}/controllerrevisions/{name}": delete: consumes: - "*/*" description: delete a ControllerRevision operationId: deleteAppsV1NamespacedControllerRevision parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" - description: The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. in: query name: gracePeriodSeconds type: integer uniqueItems: true - description: "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both." in: query name: orphanDependents type: boolean uniqueItems: true - description: "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground." in: query name: propagationPolicy type: string uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - apps_v1 x-kubernetes-action: delete x-kubernetes-group-version-kind: group: apps kind: ControllerRevision version: v1 get: consumes: - "*/*" description: read the specified ControllerRevision operationId: readAppsV1NamespacedControllerRevision parameters: - description: Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. in: query name: exact type: boolean uniqueItems: true - description: Should this value be exported. Export strips fields that a user can not specify. in: query name: export type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.apps.v1.ControllerRevision" "401": description: Unauthorized schemes: - https tags: - apps_v1 x-kubernetes-action: get x-kubernetes-group-version-kind: group: apps kind: ControllerRevision version: v1 parameters: - description: name of the ControllerRevision in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true patch: consumes: - application/json-patch+json - application/merge-patch+json - application/strategic-merge-patch+json description: partially update the specified ControllerRevision operationId: patchAppsV1NamespacedControllerRevision parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.apps.v1.ControllerRevision" "401": description: Unauthorized schemes: - https tags: - apps_v1 x-kubernetes-action: patch x-kubernetes-group-version-kind: group: apps kind: ControllerRevision version: v1 put: consumes: - "*/*" description: replace the specified ControllerRevision operationId: replaceAppsV1NamespacedControllerRevision parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.apps.v1.ControllerRevision" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.apps.v1.ControllerRevision" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.apps.v1.ControllerRevision" "401": description: Unauthorized schemes: - https tags: - apps_v1 x-kubernetes-action: put x-kubernetes-group-version-kind: group: apps kind: ControllerRevision version: v1 "/apis/apps/v1/namespaces/{namespace}/daemonsets": delete: consumes: - "*/*" description: delete collection of DaemonSet operationId: deleteAppsV1CollectionNamespacedDaemonSet parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - apps_v1 x-kubernetes-action: deletecollection x-kubernetes-group-version-kind: group: apps kind: DaemonSet version: v1 get: consumes: - "*/*" description: list or watch objects of kind DaemonSet operationId: listAppsV1NamespacedDaemonSet parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.apps.v1.DaemonSetList" "401": description: Unauthorized schemes: - https tags: - apps_v1 x-kubernetes-action: list x-kubernetes-group-version-kind: group: apps kind: DaemonSet version: v1 parameters: - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true post: consumes: - "*/*" description: create a DaemonSet operationId: createAppsV1NamespacedDaemonSet parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.apps.v1.DaemonSet" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.apps.v1.DaemonSet" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.apps.v1.DaemonSet" "202": description: Accepted schema: $ref: "#/definitions/io.k8s.api.apps.v1.DaemonSet" "401": description: Unauthorized schemes: - https tags: - apps_v1 x-kubernetes-action: post x-kubernetes-group-version-kind: group: apps kind: DaemonSet version: v1 "/apis/apps/v1/namespaces/{namespace}/daemonsets/{name}": delete: consumes: - "*/*" description: delete a DaemonSet operationId: deleteAppsV1NamespacedDaemonSet parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" - description: The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. in: query name: gracePeriodSeconds type: integer uniqueItems: true - description: "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both." in: query name: orphanDependents type: boolean uniqueItems: true - description: "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground." in: query name: propagationPolicy type: string uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - apps_v1 x-kubernetes-action: delete x-kubernetes-group-version-kind: group: apps kind: DaemonSet version: v1 get: consumes: - "*/*" description: read the specified DaemonSet operationId: readAppsV1NamespacedDaemonSet parameters: - description: Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. in: query name: exact type: boolean uniqueItems: true - description: Should this value be exported. Export strips fields that a user can not specify. in: query name: export type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.apps.v1.DaemonSet" "401": description: Unauthorized schemes: - https tags: - apps_v1 x-kubernetes-action: get x-kubernetes-group-version-kind: group: apps kind: DaemonSet version: v1 parameters: - description: name of the DaemonSet in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true patch: consumes: - application/json-patch+json - application/merge-patch+json - application/strategic-merge-patch+json description: partially update the specified DaemonSet operationId: patchAppsV1NamespacedDaemonSet parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.apps.v1.DaemonSet" "401": description: Unauthorized schemes: - https tags: - apps_v1 x-kubernetes-action: patch x-kubernetes-group-version-kind: group: apps kind: DaemonSet version: v1 put: consumes: - "*/*" description: replace the specified DaemonSet operationId: replaceAppsV1NamespacedDaemonSet parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.apps.v1.DaemonSet" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.apps.v1.DaemonSet" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.apps.v1.DaemonSet" "401": description: Unauthorized schemes: - https tags: - apps_v1 x-kubernetes-action: put x-kubernetes-group-version-kind: group: apps kind: DaemonSet version: v1 "/apis/apps/v1/namespaces/{namespace}/daemonsets/{name}/status": get: consumes: - "*/*" description: read status of the specified DaemonSet operationId: readAppsV1NamespacedDaemonSetStatus produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.apps.v1.DaemonSet" "401": description: Unauthorized schemes: - https tags: - apps_v1 x-kubernetes-action: get x-kubernetes-group-version-kind: group: apps kind: DaemonSet version: v1 parameters: - description: name of the DaemonSet in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true patch: consumes: - application/json-patch+json - application/merge-patch+json - application/strategic-merge-patch+json description: partially update status of the specified DaemonSet operationId: patchAppsV1NamespacedDaemonSetStatus parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.apps.v1.DaemonSet" "401": description: Unauthorized schemes: - https tags: - apps_v1 x-kubernetes-action: patch x-kubernetes-group-version-kind: group: apps kind: DaemonSet version: v1 put: consumes: - "*/*" description: replace status of the specified DaemonSet operationId: replaceAppsV1NamespacedDaemonSetStatus parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.apps.v1.DaemonSet" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.apps.v1.DaemonSet" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.apps.v1.DaemonSet" "401": description: Unauthorized schemes: - https tags: - apps_v1 x-kubernetes-action: put x-kubernetes-group-version-kind: group: apps kind: DaemonSet version: v1 "/apis/apps/v1/namespaces/{namespace}/deployments": delete: consumes: - "*/*" description: delete collection of Deployment operationId: deleteAppsV1CollectionNamespacedDeployment parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - apps_v1 x-kubernetes-action: deletecollection x-kubernetes-group-version-kind: group: apps kind: Deployment version: v1 get: consumes: - "*/*" description: list or watch objects of kind Deployment operationId: listAppsV1NamespacedDeployment parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.apps.v1.DeploymentList" "401": description: Unauthorized schemes: - https tags: - apps_v1 x-kubernetes-action: list x-kubernetes-group-version-kind: group: apps kind: Deployment version: v1 parameters: - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true post: consumes: - "*/*" description: create a Deployment operationId: createAppsV1NamespacedDeployment parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.apps.v1.Deployment" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.apps.v1.Deployment" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.apps.v1.Deployment" "202": description: Accepted schema: $ref: "#/definitions/io.k8s.api.apps.v1.Deployment" "401": description: Unauthorized schemes: - https tags: - apps_v1 x-kubernetes-action: post x-kubernetes-group-version-kind: group: apps kind: Deployment version: v1 "/apis/apps/v1/namespaces/{namespace}/deployments/{name}": delete: consumes: - "*/*" description: delete a Deployment operationId: deleteAppsV1NamespacedDeployment parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" - description: The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. in: query name: gracePeriodSeconds type: integer uniqueItems: true - description: "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both." in: query name: orphanDependents type: boolean uniqueItems: true - description: "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground." in: query name: propagationPolicy type: string uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - apps_v1 x-kubernetes-action: delete x-kubernetes-group-version-kind: group: apps kind: Deployment version: v1 get: consumes: - "*/*" description: read the specified Deployment operationId: readAppsV1NamespacedDeployment parameters: - description: Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. in: query name: exact type: boolean uniqueItems: true - description: Should this value be exported. Export strips fields that a user can not specify. in: query name: export type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.apps.v1.Deployment" "401": description: Unauthorized schemes: - https tags: - apps_v1 x-kubernetes-action: get x-kubernetes-group-version-kind: group: apps kind: Deployment version: v1 parameters: - description: name of the Deployment in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true patch: consumes: - application/json-patch+json - application/merge-patch+json - application/strategic-merge-patch+json description: partially update the specified Deployment operationId: patchAppsV1NamespacedDeployment parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.apps.v1.Deployment" "401": description: Unauthorized schemes: - https tags: - apps_v1 x-kubernetes-action: patch x-kubernetes-group-version-kind: group: apps kind: Deployment version: v1 put: consumes: - "*/*" description: replace the specified Deployment operationId: replaceAppsV1NamespacedDeployment parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.apps.v1.Deployment" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.apps.v1.Deployment" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.apps.v1.Deployment" "401": description: Unauthorized schemes: - https tags: - apps_v1 x-kubernetes-action: put x-kubernetes-group-version-kind: group: apps kind: Deployment version: v1 "/apis/apps/v1/namespaces/{namespace}/deployments/{name}/scale": get: consumes: - "*/*" description: read scale of the specified Deployment operationId: readAppsV1NamespacedDeploymentScale produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.autoscaling.v1.Scale" "401": description: Unauthorized schemes: - https tags: - apps_v1 x-kubernetes-action: get x-kubernetes-group-version-kind: group: autoscaling kind: Scale version: v1 parameters: - description: name of the Scale in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true patch: consumes: - application/json-patch+json - application/merge-patch+json - application/strategic-merge-patch+json description: partially update scale of the specified Deployment operationId: patchAppsV1NamespacedDeploymentScale parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.autoscaling.v1.Scale" "401": description: Unauthorized schemes: - https tags: - apps_v1 x-kubernetes-action: patch x-kubernetes-group-version-kind: group: autoscaling kind: Scale version: v1 put: consumes: - "*/*" description: replace scale of the specified Deployment operationId: replaceAppsV1NamespacedDeploymentScale parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.autoscaling.v1.Scale" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.autoscaling.v1.Scale" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.autoscaling.v1.Scale" "401": description: Unauthorized schemes: - https tags: - apps_v1 x-kubernetes-action: put x-kubernetes-group-version-kind: group: autoscaling kind: Scale version: v1 "/apis/apps/v1/namespaces/{namespace}/deployments/{name}/status": get: consumes: - "*/*" description: read status of the specified Deployment operationId: readAppsV1NamespacedDeploymentStatus produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.apps.v1.Deployment" "401": description: Unauthorized schemes: - https tags: - apps_v1 x-kubernetes-action: get x-kubernetes-group-version-kind: group: apps kind: Deployment version: v1 parameters: - description: name of the Deployment in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true patch: consumes: - application/json-patch+json - application/merge-patch+json - application/strategic-merge-patch+json description: partially update status of the specified Deployment operationId: patchAppsV1NamespacedDeploymentStatus parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.apps.v1.Deployment" "401": description: Unauthorized schemes: - https tags: - apps_v1 x-kubernetes-action: patch x-kubernetes-group-version-kind: group: apps kind: Deployment version: v1 put: consumes: - "*/*" description: replace status of the specified Deployment operationId: replaceAppsV1NamespacedDeploymentStatus parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.apps.v1.Deployment" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.apps.v1.Deployment" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.apps.v1.Deployment" "401": description: Unauthorized schemes: - https tags: - apps_v1 x-kubernetes-action: put x-kubernetes-group-version-kind: group: apps kind: Deployment version: v1 "/apis/apps/v1/namespaces/{namespace}/replicasets": delete: consumes: - "*/*" description: delete collection of ReplicaSet operationId: deleteAppsV1CollectionNamespacedReplicaSet parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - apps_v1 x-kubernetes-action: deletecollection x-kubernetes-group-version-kind: group: apps kind: ReplicaSet version: v1 get: consumes: - "*/*" description: list or watch objects of kind ReplicaSet operationId: listAppsV1NamespacedReplicaSet parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.apps.v1.ReplicaSetList" "401": description: Unauthorized schemes: - https tags: - apps_v1 x-kubernetes-action: list x-kubernetes-group-version-kind: group: apps kind: ReplicaSet version: v1 parameters: - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true post: consumes: - "*/*" description: create a ReplicaSet operationId: createAppsV1NamespacedReplicaSet parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.apps.v1.ReplicaSet" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.apps.v1.ReplicaSet" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.apps.v1.ReplicaSet" "202": description: Accepted schema: $ref: "#/definitions/io.k8s.api.apps.v1.ReplicaSet" "401": description: Unauthorized schemes: - https tags: - apps_v1 x-kubernetes-action: post x-kubernetes-group-version-kind: group: apps kind: ReplicaSet version: v1 "/apis/apps/v1/namespaces/{namespace}/replicasets/{name}": delete: consumes: - "*/*" description: delete a ReplicaSet operationId: deleteAppsV1NamespacedReplicaSet parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" - description: The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. in: query name: gracePeriodSeconds type: integer uniqueItems: true - description: "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both." in: query name: orphanDependents type: boolean uniqueItems: true - description: "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground." in: query name: propagationPolicy type: string uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - apps_v1 x-kubernetes-action: delete x-kubernetes-group-version-kind: group: apps kind: ReplicaSet version: v1 get: consumes: - "*/*" description: read the specified ReplicaSet operationId: readAppsV1NamespacedReplicaSet parameters: - description: Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. in: query name: exact type: boolean uniqueItems: true - description: Should this value be exported. Export strips fields that a user can not specify. in: query name: export type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.apps.v1.ReplicaSet" "401": description: Unauthorized schemes: - https tags: - apps_v1 x-kubernetes-action: get x-kubernetes-group-version-kind: group: apps kind: ReplicaSet version: v1 parameters: - description: name of the ReplicaSet in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true patch: consumes: - application/json-patch+json - application/merge-patch+json - application/strategic-merge-patch+json description: partially update the specified ReplicaSet operationId: patchAppsV1NamespacedReplicaSet parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.apps.v1.ReplicaSet" "401": description: Unauthorized schemes: - https tags: - apps_v1 x-kubernetes-action: patch x-kubernetes-group-version-kind: group: apps kind: ReplicaSet version: v1 put: consumes: - "*/*" description: replace the specified ReplicaSet operationId: replaceAppsV1NamespacedReplicaSet parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.apps.v1.ReplicaSet" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.apps.v1.ReplicaSet" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.apps.v1.ReplicaSet" "401": description: Unauthorized schemes: - https tags: - apps_v1 x-kubernetes-action: put x-kubernetes-group-version-kind: group: apps kind: ReplicaSet version: v1 "/apis/apps/v1/namespaces/{namespace}/replicasets/{name}/scale": get: consumes: - "*/*" description: read scale of the specified ReplicaSet operationId: readAppsV1NamespacedReplicaSetScale produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.autoscaling.v1.Scale" "401": description: Unauthorized schemes: - https tags: - apps_v1 x-kubernetes-action: get x-kubernetes-group-version-kind: group: autoscaling kind: Scale version: v1 parameters: - description: name of the Scale in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true patch: consumes: - application/json-patch+json - application/merge-patch+json - application/strategic-merge-patch+json description: partially update scale of the specified ReplicaSet operationId: patchAppsV1NamespacedReplicaSetScale parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.autoscaling.v1.Scale" "401": description: Unauthorized schemes: - https tags: - apps_v1 x-kubernetes-action: patch x-kubernetes-group-version-kind: group: autoscaling kind: Scale version: v1 put: consumes: - "*/*" description: replace scale of the specified ReplicaSet operationId: replaceAppsV1NamespacedReplicaSetScale parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.autoscaling.v1.Scale" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.autoscaling.v1.Scale" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.autoscaling.v1.Scale" "401": description: Unauthorized schemes: - https tags: - apps_v1 x-kubernetes-action: put x-kubernetes-group-version-kind: group: autoscaling kind: Scale version: v1 "/apis/apps/v1/namespaces/{namespace}/replicasets/{name}/status": get: consumes: - "*/*" description: read status of the specified ReplicaSet operationId: readAppsV1NamespacedReplicaSetStatus produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.apps.v1.ReplicaSet" "401": description: Unauthorized schemes: - https tags: - apps_v1 x-kubernetes-action: get x-kubernetes-group-version-kind: group: apps kind: ReplicaSet version: v1 parameters: - description: name of the ReplicaSet in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true patch: consumes: - application/json-patch+json - application/merge-patch+json - application/strategic-merge-patch+json description: partially update status of the specified ReplicaSet operationId: patchAppsV1NamespacedReplicaSetStatus parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.apps.v1.ReplicaSet" "401": description: Unauthorized schemes: - https tags: - apps_v1 x-kubernetes-action: patch x-kubernetes-group-version-kind: group: apps kind: ReplicaSet version: v1 put: consumes: - "*/*" description: replace status of the specified ReplicaSet operationId: replaceAppsV1NamespacedReplicaSetStatus parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.apps.v1.ReplicaSet" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.apps.v1.ReplicaSet" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.apps.v1.ReplicaSet" "401": description: Unauthorized schemes: - https tags: - apps_v1 x-kubernetes-action: put x-kubernetes-group-version-kind: group: apps kind: ReplicaSet version: v1 "/apis/apps/v1/namespaces/{namespace}/statefulsets": delete: consumes: - "*/*" description: delete collection of StatefulSet operationId: deleteAppsV1CollectionNamespacedStatefulSet parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - apps_v1 x-kubernetes-action: deletecollection x-kubernetes-group-version-kind: group: apps kind: StatefulSet version: v1 get: consumes: - "*/*" description: list or watch objects of kind StatefulSet operationId: listAppsV1NamespacedStatefulSet parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.apps.v1.StatefulSetList" "401": description: Unauthorized schemes: - https tags: - apps_v1 x-kubernetes-action: list x-kubernetes-group-version-kind: group: apps kind: StatefulSet version: v1 parameters: - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true post: consumes: - "*/*" description: create a StatefulSet operationId: createAppsV1NamespacedStatefulSet parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.apps.v1.StatefulSet" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.apps.v1.StatefulSet" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.apps.v1.StatefulSet" "202": description: Accepted schema: $ref: "#/definitions/io.k8s.api.apps.v1.StatefulSet" "401": description: Unauthorized schemes: - https tags: - apps_v1 x-kubernetes-action: post x-kubernetes-group-version-kind: group: apps kind: StatefulSet version: v1 "/apis/apps/v1/namespaces/{namespace}/statefulsets/{name}": delete: consumes: - "*/*" description: delete a StatefulSet operationId: deleteAppsV1NamespacedStatefulSet parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" - description: The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. in: query name: gracePeriodSeconds type: integer uniqueItems: true - description: "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both." in: query name: orphanDependents type: boolean uniqueItems: true - description: "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground." in: query name: propagationPolicy type: string uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - apps_v1 x-kubernetes-action: delete x-kubernetes-group-version-kind: group: apps kind: StatefulSet version: v1 get: consumes: - "*/*" description: read the specified StatefulSet operationId: readAppsV1NamespacedStatefulSet parameters: - description: Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. in: query name: exact type: boolean uniqueItems: true - description: Should this value be exported. Export strips fields that a user can not specify. in: query name: export type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.apps.v1.StatefulSet" "401": description: Unauthorized schemes: - https tags: - apps_v1 x-kubernetes-action: get x-kubernetes-group-version-kind: group: apps kind: StatefulSet version: v1 parameters: - description: name of the StatefulSet in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true patch: consumes: - application/json-patch+json - application/merge-patch+json - application/strategic-merge-patch+json description: partially update the specified StatefulSet operationId: patchAppsV1NamespacedStatefulSet parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.apps.v1.StatefulSet" "401": description: Unauthorized schemes: - https tags: - apps_v1 x-kubernetes-action: patch x-kubernetes-group-version-kind: group: apps kind: StatefulSet version: v1 put: consumes: - "*/*" description: replace the specified StatefulSet operationId: replaceAppsV1NamespacedStatefulSet parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.apps.v1.StatefulSet" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.apps.v1.StatefulSet" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.apps.v1.StatefulSet" "401": description: Unauthorized schemes: - https tags: - apps_v1 x-kubernetes-action: put x-kubernetes-group-version-kind: group: apps kind: StatefulSet version: v1 "/apis/apps/v1/namespaces/{namespace}/statefulsets/{name}/scale": get: consumes: - "*/*" description: read scale of the specified StatefulSet operationId: readAppsV1NamespacedStatefulSetScale produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.autoscaling.v1.Scale" "401": description: Unauthorized schemes: - https tags: - apps_v1 x-kubernetes-action: get x-kubernetes-group-version-kind: group: autoscaling kind: Scale version: v1 parameters: - description: name of the Scale in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true patch: consumes: - application/json-patch+json - application/merge-patch+json - application/strategic-merge-patch+json description: partially update scale of the specified StatefulSet operationId: patchAppsV1NamespacedStatefulSetScale parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.autoscaling.v1.Scale" "401": description: Unauthorized schemes: - https tags: - apps_v1 x-kubernetes-action: patch x-kubernetes-group-version-kind: group: autoscaling kind: Scale version: v1 put: consumes: - "*/*" description: replace scale of the specified StatefulSet operationId: replaceAppsV1NamespacedStatefulSetScale parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.autoscaling.v1.Scale" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.autoscaling.v1.Scale" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.autoscaling.v1.Scale" "401": description: Unauthorized schemes: - https tags: - apps_v1 x-kubernetes-action: put x-kubernetes-group-version-kind: group: autoscaling kind: Scale version: v1 "/apis/apps/v1/namespaces/{namespace}/statefulsets/{name}/status": get: consumes: - "*/*" description: read status of the specified StatefulSet operationId: readAppsV1NamespacedStatefulSetStatus produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.apps.v1.StatefulSet" "401": description: Unauthorized schemes: - https tags: - apps_v1 x-kubernetes-action: get x-kubernetes-group-version-kind: group: apps kind: StatefulSet version: v1 parameters: - description: name of the StatefulSet in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true patch: consumes: - application/json-patch+json - application/merge-patch+json - application/strategic-merge-patch+json description: partially update status of the specified StatefulSet operationId: patchAppsV1NamespacedStatefulSetStatus parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.apps.v1.StatefulSet" "401": description: Unauthorized schemes: - https tags: - apps_v1 x-kubernetes-action: patch x-kubernetes-group-version-kind: group: apps kind: StatefulSet version: v1 put: consumes: - "*/*" description: replace status of the specified StatefulSet operationId: replaceAppsV1NamespacedStatefulSetStatus parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.apps.v1.StatefulSet" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.apps.v1.StatefulSet" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.apps.v1.StatefulSet" "401": description: Unauthorized schemes: - https tags: - apps_v1 x-kubernetes-action: put x-kubernetes-group-version-kind: group: apps kind: StatefulSet version: v1 /apis/apps/v1/replicasets: get: consumes: - "*/*" description: list or watch objects of kind ReplicaSet operationId: listAppsV1ReplicaSetForAllNamespaces produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.apps.v1.ReplicaSetList" "401": description: Unauthorized schemes: - https tags: - apps_v1 x-kubernetes-action: list x-kubernetes-group-version-kind: group: apps kind: ReplicaSet version: v1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true /apis/apps/v1/statefulsets: get: consumes: - "*/*" description: list or watch objects of kind StatefulSet operationId: listAppsV1StatefulSetForAllNamespaces produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.apps.v1.StatefulSetList" "401": description: Unauthorized schemes: - https tags: - apps_v1 x-kubernetes-action: list x-kubernetes-group-version-kind: group: apps kind: StatefulSet version: v1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true /apis/apps/v1/watch/controllerrevisions: get: consumes: - "*/*" description: watch individual changes to a list of ControllerRevision operationId: watchAppsV1ControllerRevisionListForAllNamespaces produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - apps_v1 x-kubernetes-action: watchlist x-kubernetes-group-version-kind: group: apps kind: ControllerRevision version: v1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true /apis/apps/v1/watch/daemonsets: get: consumes: - "*/*" description: watch individual changes to a list of DaemonSet operationId: watchAppsV1DaemonSetListForAllNamespaces produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - apps_v1 x-kubernetes-action: watchlist x-kubernetes-group-version-kind: group: apps kind: DaemonSet version: v1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true /apis/apps/v1/watch/deployments: get: consumes: - "*/*" description: watch individual changes to a list of Deployment operationId: watchAppsV1DeploymentListForAllNamespaces produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - apps_v1 x-kubernetes-action: watchlist x-kubernetes-group-version-kind: group: apps kind: Deployment version: v1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true "/apis/apps/v1/watch/namespaces/{namespace}/controllerrevisions": get: consumes: - "*/*" description: watch individual changes to a list of ControllerRevision operationId: watchAppsV1NamespacedControllerRevisionList produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - apps_v1 x-kubernetes-action: watchlist x-kubernetes-group-version-kind: group: apps kind: ControllerRevision version: v1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true "/apis/apps/v1/watch/namespaces/{namespace}/controllerrevisions/{name}": get: consumes: - "*/*" description: watch changes to an object of kind ControllerRevision operationId: watchAppsV1NamespacedControllerRevision produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - apps_v1 x-kubernetes-action: watch x-kubernetes-group-version-kind: group: apps kind: ControllerRevision version: v1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: name of the ControllerRevision in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true "/apis/apps/v1/watch/namespaces/{namespace}/daemonsets": get: consumes: - "*/*" description: watch individual changes to a list of DaemonSet operationId: watchAppsV1NamespacedDaemonSetList produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - apps_v1 x-kubernetes-action: watchlist x-kubernetes-group-version-kind: group: apps kind: DaemonSet version: v1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true "/apis/apps/v1/watch/namespaces/{namespace}/daemonsets/{name}": get: consumes: - "*/*" description: watch changes to an object of kind DaemonSet operationId: watchAppsV1NamespacedDaemonSet produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - apps_v1 x-kubernetes-action: watch x-kubernetes-group-version-kind: group: apps kind: DaemonSet version: v1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: name of the DaemonSet in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true "/apis/apps/v1/watch/namespaces/{namespace}/deployments": get: consumes: - "*/*" description: watch individual changes to a list of Deployment operationId: watchAppsV1NamespacedDeploymentList produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - apps_v1 x-kubernetes-action: watchlist x-kubernetes-group-version-kind: group: apps kind: Deployment version: v1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true "/apis/apps/v1/watch/namespaces/{namespace}/deployments/{name}": get: consumes: - "*/*" description: watch changes to an object of kind Deployment operationId: watchAppsV1NamespacedDeployment produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - apps_v1 x-kubernetes-action: watch x-kubernetes-group-version-kind: group: apps kind: Deployment version: v1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: name of the Deployment in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true "/apis/apps/v1/watch/namespaces/{namespace}/replicasets": get: consumes: - "*/*" description: watch individual changes to a list of ReplicaSet operationId: watchAppsV1NamespacedReplicaSetList produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - apps_v1 x-kubernetes-action: watchlist x-kubernetes-group-version-kind: group: apps kind: ReplicaSet version: v1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true "/apis/apps/v1/watch/namespaces/{namespace}/replicasets/{name}": get: consumes: - "*/*" description: watch changes to an object of kind ReplicaSet operationId: watchAppsV1NamespacedReplicaSet produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - apps_v1 x-kubernetes-action: watch x-kubernetes-group-version-kind: group: apps kind: ReplicaSet version: v1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: name of the ReplicaSet in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true "/apis/apps/v1/watch/namespaces/{namespace}/statefulsets": get: consumes: - "*/*" description: watch individual changes to a list of StatefulSet operationId: watchAppsV1NamespacedStatefulSetList produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - apps_v1 x-kubernetes-action: watchlist x-kubernetes-group-version-kind: group: apps kind: StatefulSet version: v1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true "/apis/apps/v1/watch/namespaces/{namespace}/statefulsets/{name}": get: consumes: - "*/*" description: watch changes to an object of kind StatefulSet operationId: watchAppsV1NamespacedStatefulSet produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - apps_v1 x-kubernetes-action: watch x-kubernetes-group-version-kind: group: apps kind: StatefulSet version: v1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: name of the StatefulSet in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true /apis/apps/v1/watch/replicasets: get: consumes: - "*/*" description: watch individual changes to a list of ReplicaSet operationId: watchAppsV1ReplicaSetListForAllNamespaces produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - apps_v1 x-kubernetes-action: watchlist x-kubernetes-group-version-kind: group: apps kind: ReplicaSet version: v1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true /apis/apps/v1/watch/statefulsets: get: consumes: - "*/*" description: watch individual changes to a list of StatefulSet operationId: watchAppsV1StatefulSetListForAllNamespaces produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - apps_v1 x-kubernetes-action: watchlist x-kubernetes-group-version-kind: group: apps kind: StatefulSet version: v1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true /apis/apps/v1beta1/: get: consumes: - application/json - application/yaml - application/vnd.kubernetes.protobuf description: get available resources operationId: getAppsV1beta1APIResources produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList" "401": description: Unauthorized schemes: - https tags: - apps_v1beta1 /apis/apps/v1beta1/controllerrevisions: get: consumes: - "*/*" description: list or watch objects of kind ControllerRevision operationId: listAppsV1beta1ControllerRevisionForAllNamespaces produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.apps.v1beta1.ControllerRevisionList" "401": description: Unauthorized schemes: - https tags: - apps_v1beta1 x-kubernetes-action: list x-kubernetes-group-version-kind: group: apps kind: ControllerRevision version: v1beta1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true /apis/apps/v1beta1/deployments: get: consumes: - "*/*" description: list or watch objects of kind Deployment operationId: listAppsV1beta1DeploymentForAllNamespaces produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.apps.v1beta1.DeploymentList" "401": description: Unauthorized schemes: - https tags: - apps_v1beta1 x-kubernetes-action: list x-kubernetes-group-version-kind: group: apps kind: Deployment version: v1beta1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true "/apis/apps/v1beta1/namespaces/{namespace}/controllerrevisions": delete: consumes: - "*/*" description: delete collection of ControllerRevision operationId: deleteAppsV1beta1CollectionNamespacedControllerRevision parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - apps_v1beta1 x-kubernetes-action: deletecollection x-kubernetes-group-version-kind: group: apps kind: ControllerRevision version: v1beta1 get: consumes: - "*/*" description: list or watch objects of kind ControllerRevision operationId: listAppsV1beta1NamespacedControllerRevision parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.apps.v1beta1.ControllerRevisionList" "401": description: Unauthorized schemes: - https tags: - apps_v1beta1 x-kubernetes-action: list x-kubernetes-group-version-kind: group: apps kind: ControllerRevision version: v1beta1 parameters: - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true post: consumes: - "*/*" description: create a ControllerRevision operationId: createAppsV1beta1NamespacedControllerRevision parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.apps.v1beta1.ControllerRevision" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.apps.v1beta1.ControllerRevision" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.apps.v1beta1.ControllerRevision" "202": description: Accepted schema: $ref: "#/definitions/io.k8s.api.apps.v1beta1.ControllerRevision" "401": description: Unauthorized schemes: - https tags: - apps_v1beta1 x-kubernetes-action: post x-kubernetes-group-version-kind: group: apps kind: ControllerRevision version: v1beta1 "/apis/apps/v1beta1/namespaces/{namespace}/controllerrevisions/{name}": delete: consumes: - "*/*" description: delete a ControllerRevision operationId: deleteAppsV1beta1NamespacedControllerRevision parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" - description: The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. in: query name: gracePeriodSeconds type: integer uniqueItems: true - description: "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both." in: query name: orphanDependents type: boolean uniqueItems: true - description: "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground." in: query name: propagationPolicy type: string uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - apps_v1beta1 x-kubernetes-action: delete x-kubernetes-group-version-kind: group: apps kind: ControllerRevision version: v1beta1 get: consumes: - "*/*" description: read the specified ControllerRevision operationId: readAppsV1beta1NamespacedControllerRevision parameters: - description: Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. in: query name: exact type: boolean uniqueItems: true - description: Should this value be exported. Export strips fields that a user can not specify. in: query name: export type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.apps.v1beta1.ControllerRevision" "401": description: Unauthorized schemes: - https tags: - apps_v1beta1 x-kubernetes-action: get x-kubernetes-group-version-kind: group: apps kind: ControllerRevision version: v1beta1 parameters: - description: name of the ControllerRevision in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true patch: consumes: - application/json-patch+json - application/merge-patch+json - application/strategic-merge-patch+json description: partially update the specified ControllerRevision operationId: patchAppsV1beta1NamespacedControllerRevision parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.apps.v1beta1.ControllerRevision" "401": description: Unauthorized schemes: - https tags: - apps_v1beta1 x-kubernetes-action: patch x-kubernetes-group-version-kind: group: apps kind: ControllerRevision version: v1beta1 put: consumes: - "*/*" description: replace the specified ControllerRevision operationId: replaceAppsV1beta1NamespacedControllerRevision parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.apps.v1beta1.ControllerRevision" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.apps.v1beta1.ControllerRevision" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.apps.v1beta1.ControllerRevision" "401": description: Unauthorized schemes: - https tags: - apps_v1beta1 x-kubernetes-action: put x-kubernetes-group-version-kind: group: apps kind: ControllerRevision version: v1beta1 "/apis/apps/v1beta1/namespaces/{namespace}/deployments": delete: consumes: - "*/*" description: delete collection of Deployment operationId: deleteAppsV1beta1CollectionNamespacedDeployment parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - apps_v1beta1 x-kubernetes-action: deletecollection x-kubernetes-group-version-kind: group: apps kind: Deployment version: v1beta1 get: consumes: - "*/*" description: list or watch objects of kind Deployment operationId: listAppsV1beta1NamespacedDeployment parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.apps.v1beta1.DeploymentList" "401": description: Unauthorized schemes: - https tags: - apps_v1beta1 x-kubernetes-action: list x-kubernetes-group-version-kind: group: apps kind: Deployment version: v1beta1 parameters: - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true post: consumes: - "*/*" description: create a Deployment operationId: createAppsV1beta1NamespacedDeployment parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.apps.v1beta1.Deployment" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.apps.v1beta1.Deployment" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.apps.v1beta1.Deployment" "202": description: Accepted schema: $ref: "#/definitions/io.k8s.api.apps.v1beta1.Deployment" "401": description: Unauthorized schemes: - https tags: - apps_v1beta1 x-kubernetes-action: post x-kubernetes-group-version-kind: group: apps kind: Deployment version: v1beta1 "/apis/apps/v1beta1/namespaces/{namespace}/deployments/{name}": delete: consumes: - "*/*" description: delete a Deployment operationId: deleteAppsV1beta1NamespacedDeployment parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" - description: The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. in: query name: gracePeriodSeconds type: integer uniqueItems: true - description: "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both." in: query name: orphanDependents type: boolean uniqueItems: true - description: "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground." in: query name: propagationPolicy type: string uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - apps_v1beta1 x-kubernetes-action: delete x-kubernetes-group-version-kind: group: apps kind: Deployment version: v1beta1 get: consumes: - "*/*" description: read the specified Deployment operationId: readAppsV1beta1NamespacedDeployment parameters: - description: Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. in: query name: exact type: boolean uniqueItems: true - description: Should this value be exported. Export strips fields that a user can not specify. in: query name: export type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.apps.v1beta1.Deployment" "401": description: Unauthorized schemes: - https tags: - apps_v1beta1 x-kubernetes-action: get x-kubernetes-group-version-kind: group: apps kind: Deployment version: v1beta1 parameters: - description: name of the Deployment in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true patch: consumes: - application/json-patch+json - application/merge-patch+json - application/strategic-merge-patch+json description: partially update the specified Deployment operationId: patchAppsV1beta1NamespacedDeployment parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.apps.v1beta1.Deployment" "401": description: Unauthorized schemes: - https tags: - apps_v1beta1 x-kubernetes-action: patch x-kubernetes-group-version-kind: group: apps kind: Deployment version: v1beta1 put: consumes: - "*/*" description: replace the specified Deployment operationId: replaceAppsV1beta1NamespacedDeployment parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.apps.v1beta1.Deployment" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.apps.v1beta1.Deployment" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.apps.v1beta1.Deployment" "401": description: Unauthorized schemes: - https tags: - apps_v1beta1 x-kubernetes-action: put x-kubernetes-group-version-kind: group: apps kind: Deployment version: v1beta1 "/apis/apps/v1beta1/namespaces/{namespace}/deployments/{name}/rollback": parameters: - description: name of the DeploymentRollback in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true post: consumes: - "*/*" description: create rollback of a Deployment operationId: createAppsV1beta1NamespacedDeploymentRollback parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.apps.v1beta1.DeploymentRollback" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.apps.v1beta1.DeploymentRollback" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.apps.v1beta1.DeploymentRollback" "202": description: Accepted schema: $ref: "#/definitions/io.k8s.api.apps.v1beta1.DeploymentRollback" "401": description: Unauthorized schemes: - https tags: - apps_v1beta1 x-kubernetes-action: post x-kubernetes-group-version-kind: group: apps kind: DeploymentRollback version: v1beta1 "/apis/apps/v1beta1/namespaces/{namespace}/deployments/{name}/scale": get: consumes: - "*/*" description: read scale of the specified Deployment operationId: readAppsV1beta1NamespacedDeploymentScale produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.apps.v1beta1.Scale" "401": description: Unauthorized schemes: - https tags: - apps_v1beta1 x-kubernetes-action: get x-kubernetes-group-version-kind: group: apps kind: Scale version: v1beta1 parameters: - description: name of the Scale in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true patch: consumes: - application/json-patch+json - application/merge-patch+json - application/strategic-merge-patch+json description: partially update scale of the specified Deployment operationId: patchAppsV1beta1NamespacedDeploymentScale parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.apps.v1beta1.Scale" "401": description: Unauthorized schemes: - https tags: - apps_v1beta1 x-kubernetes-action: patch x-kubernetes-group-version-kind: group: apps kind: Scale version: v1beta1 put: consumes: - "*/*" description: replace scale of the specified Deployment operationId: replaceAppsV1beta1NamespacedDeploymentScale parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.apps.v1beta1.Scale" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.apps.v1beta1.Scale" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.apps.v1beta1.Scale" "401": description: Unauthorized schemes: - https tags: - apps_v1beta1 x-kubernetes-action: put x-kubernetes-group-version-kind: group: apps kind: Scale version: v1beta1 "/apis/apps/v1beta1/namespaces/{namespace}/deployments/{name}/status": get: consumes: - "*/*" description: read status of the specified Deployment operationId: readAppsV1beta1NamespacedDeploymentStatus produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.apps.v1beta1.Deployment" "401": description: Unauthorized schemes: - https tags: - apps_v1beta1 x-kubernetes-action: get x-kubernetes-group-version-kind: group: apps kind: Deployment version: v1beta1 parameters: - description: name of the Deployment in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true patch: consumes: - application/json-patch+json - application/merge-patch+json - application/strategic-merge-patch+json description: partially update status of the specified Deployment operationId: patchAppsV1beta1NamespacedDeploymentStatus parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.apps.v1beta1.Deployment" "401": description: Unauthorized schemes: - https tags: - apps_v1beta1 x-kubernetes-action: patch x-kubernetes-group-version-kind: group: apps kind: Deployment version: v1beta1 put: consumes: - "*/*" description: replace status of the specified Deployment operationId: replaceAppsV1beta1NamespacedDeploymentStatus parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.apps.v1beta1.Deployment" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.apps.v1beta1.Deployment" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.apps.v1beta1.Deployment" "401": description: Unauthorized schemes: - https tags: - apps_v1beta1 x-kubernetes-action: put x-kubernetes-group-version-kind: group: apps kind: Deployment version: v1beta1 "/apis/apps/v1beta1/namespaces/{namespace}/statefulsets": delete: consumes: - "*/*" description: delete collection of StatefulSet operationId: deleteAppsV1beta1CollectionNamespacedStatefulSet parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - apps_v1beta1 x-kubernetes-action: deletecollection x-kubernetes-group-version-kind: group: apps kind: StatefulSet version: v1beta1 get: consumes: - "*/*" description: list or watch objects of kind StatefulSet operationId: listAppsV1beta1NamespacedStatefulSet parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.apps.v1beta1.StatefulSetList" "401": description: Unauthorized schemes: - https tags: - apps_v1beta1 x-kubernetes-action: list x-kubernetes-group-version-kind: group: apps kind: StatefulSet version: v1beta1 parameters: - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true post: consumes: - "*/*" description: create a StatefulSet operationId: createAppsV1beta1NamespacedStatefulSet parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.apps.v1beta1.StatefulSet" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.apps.v1beta1.StatefulSet" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.apps.v1beta1.StatefulSet" "202": description: Accepted schema: $ref: "#/definitions/io.k8s.api.apps.v1beta1.StatefulSet" "401": description: Unauthorized schemes: - https tags: - apps_v1beta1 x-kubernetes-action: post x-kubernetes-group-version-kind: group: apps kind: StatefulSet version: v1beta1 "/apis/apps/v1beta1/namespaces/{namespace}/statefulsets/{name}": delete: consumes: - "*/*" description: delete a StatefulSet operationId: deleteAppsV1beta1NamespacedStatefulSet parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" - description: The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. in: query name: gracePeriodSeconds type: integer uniqueItems: true - description: "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both." in: query name: orphanDependents type: boolean uniqueItems: true - description: "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground." in: query name: propagationPolicy type: string uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - apps_v1beta1 x-kubernetes-action: delete x-kubernetes-group-version-kind: group: apps kind: StatefulSet version: v1beta1 get: consumes: - "*/*" description: read the specified StatefulSet operationId: readAppsV1beta1NamespacedStatefulSet parameters: - description: Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. in: query name: exact type: boolean uniqueItems: true - description: Should this value be exported. Export strips fields that a user can not specify. in: query name: export type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.apps.v1beta1.StatefulSet" "401": description: Unauthorized schemes: - https tags: - apps_v1beta1 x-kubernetes-action: get x-kubernetes-group-version-kind: group: apps kind: StatefulSet version: v1beta1 parameters: - description: name of the StatefulSet in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true patch: consumes: - application/json-patch+json - application/merge-patch+json - application/strategic-merge-patch+json description: partially update the specified StatefulSet operationId: patchAppsV1beta1NamespacedStatefulSet parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.apps.v1beta1.StatefulSet" "401": description: Unauthorized schemes: - https tags: - apps_v1beta1 x-kubernetes-action: patch x-kubernetes-group-version-kind: group: apps kind: StatefulSet version: v1beta1 put: consumes: - "*/*" description: replace the specified StatefulSet operationId: replaceAppsV1beta1NamespacedStatefulSet parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.apps.v1beta1.StatefulSet" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.apps.v1beta1.StatefulSet" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.apps.v1beta1.StatefulSet" "401": description: Unauthorized schemes: - https tags: - apps_v1beta1 x-kubernetes-action: put x-kubernetes-group-version-kind: group: apps kind: StatefulSet version: v1beta1 "/apis/apps/v1beta1/namespaces/{namespace}/statefulsets/{name}/scale": get: consumes: - "*/*" description: read scale of the specified StatefulSet operationId: readAppsV1beta1NamespacedStatefulSetScale produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.apps.v1beta1.Scale" "401": description: Unauthorized schemes: - https tags: - apps_v1beta1 x-kubernetes-action: get x-kubernetes-group-version-kind: group: apps kind: Scale version: v1beta1 parameters: - description: name of the Scale in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true patch: consumes: - application/json-patch+json - application/merge-patch+json - application/strategic-merge-patch+json description: partially update scale of the specified StatefulSet operationId: patchAppsV1beta1NamespacedStatefulSetScale parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.apps.v1beta1.Scale" "401": description: Unauthorized schemes: - https tags: - apps_v1beta1 x-kubernetes-action: patch x-kubernetes-group-version-kind: group: apps kind: Scale version: v1beta1 put: consumes: - "*/*" description: replace scale of the specified StatefulSet operationId: replaceAppsV1beta1NamespacedStatefulSetScale parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.apps.v1beta1.Scale" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.apps.v1beta1.Scale" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.apps.v1beta1.Scale" "401": description: Unauthorized schemes: - https tags: - apps_v1beta1 x-kubernetes-action: put x-kubernetes-group-version-kind: group: apps kind: Scale version: v1beta1 "/apis/apps/v1beta1/namespaces/{namespace}/statefulsets/{name}/status": get: consumes: - "*/*" description: read status of the specified StatefulSet operationId: readAppsV1beta1NamespacedStatefulSetStatus produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.apps.v1beta1.StatefulSet" "401": description: Unauthorized schemes: - https tags: - apps_v1beta1 x-kubernetes-action: get x-kubernetes-group-version-kind: group: apps kind: StatefulSet version: v1beta1 parameters: - description: name of the StatefulSet in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true patch: consumes: - application/json-patch+json - application/merge-patch+json - application/strategic-merge-patch+json description: partially update status of the specified StatefulSet operationId: patchAppsV1beta1NamespacedStatefulSetStatus parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.apps.v1beta1.StatefulSet" "401": description: Unauthorized schemes: - https tags: - apps_v1beta1 x-kubernetes-action: patch x-kubernetes-group-version-kind: group: apps kind: StatefulSet version: v1beta1 put: consumes: - "*/*" description: replace status of the specified StatefulSet operationId: replaceAppsV1beta1NamespacedStatefulSetStatus parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.apps.v1beta1.StatefulSet" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.apps.v1beta1.StatefulSet" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.apps.v1beta1.StatefulSet" "401": description: Unauthorized schemes: - https tags: - apps_v1beta1 x-kubernetes-action: put x-kubernetes-group-version-kind: group: apps kind: StatefulSet version: v1beta1 /apis/apps/v1beta1/statefulsets: get: consumes: - "*/*" description: list or watch objects of kind StatefulSet operationId: listAppsV1beta1StatefulSetForAllNamespaces produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.apps.v1beta1.StatefulSetList" "401": description: Unauthorized schemes: - https tags: - apps_v1beta1 x-kubernetes-action: list x-kubernetes-group-version-kind: group: apps kind: StatefulSet version: v1beta1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true /apis/apps/v1beta1/watch/controllerrevisions: get: consumes: - "*/*" description: watch individual changes to a list of ControllerRevision operationId: watchAppsV1beta1ControllerRevisionListForAllNamespaces produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - apps_v1beta1 x-kubernetes-action: watchlist x-kubernetes-group-version-kind: group: apps kind: ControllerRevision version: v1beta1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true /apis/apps/v1beta1/watch/deployments: get: consumes: - "*/*" description: watch individual changes to a list of Deployment operationId: watchAppsV1beta1DeploymentListForAllNamespaces produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - apps_v1beta1 x-kubernetes-action: watchlist x-kubernetes-group-version-kind: group: apps kind: Deployment version: v1beta1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true "/apis/apps/v1beta1/watch/namespaces/{namespace}/controllerrevisions": get: consumes: - "*/*" description: watch individual changes to a list of ControllerRevision operationId: watchAppsV1beta1NamespacedControllerRevisionList produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - apps_v1beta1 x-kubernetes-action: watchlist x-kubernetes-group-version-kind: group: apps kind: ControllerRevision version: v1beta1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true "/apis/apps/v1beta1/watch/namespaces/{namespace}/controllerrevisions/{name}": get: consumes: - "*/*" description: watch changes to an object of kind ControllerRevision operationId: watchAppsV1beta1NamespacedControllerRevision produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - apps_v1beta1 x-kubernetes-action: watch x-kubernetes-group-version-kind: group: apps kind: ControllerRevision version: v1beta1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: name of the ControllerRevision in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true "/apis/apps/v1beta1/watch/namespaces/{namespace}/deployments": get: consumes: - "*/*" description: watch individual changes to a list of Deployment operationId: watchAppsV1beta1NamespacedDeploymentList produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - apps_v1beta1 x-kubernetes-action: watchlist x-kubernetes-group-version-kind: group: apps kind: Deployment version: v1beta1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true "/apis/apps/v1beta1/watch/namespaces/{namespace}/deployments/{name}": get: consumes: - "*/*" description: watch changes to an object of kind Deployment operationId: watchAppsV1beta1NamespacedDeployment produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - apps_v1beta1 x-kubernetes-action: watch x-kubernetes-group-version-kind: group: apps kind: Deployment version: v1beta1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: name of the Deployment in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true "/apis/apps/v1beta1/watch/namespaces/{namespace}/statefulsets": get: consumes: - "*/*" description: watch individual changes to a list of StatefulSet operationId: watchAppsV1beta1NamespacedStatefulSetList produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - apps_v1beta1 x-kubernetes-action: watchlist x-kubernetes-group-version-kind: group: apps kind: StatefulSet version: v1beta1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true "/apis/apps/v1beta1/watch/namespaces/{namespace}/statefulsets/{name}": get: consumes: - "*/*" description: watch changes to an object of kind StatefulSet operationId: watchAppsV1beta1NamespacedStatefulSet produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - apps_v1beta1 x-kubernetes-action: watch x-kubernetes-group-version-kind: group: apps kind: StatefulSet version: v1beta1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: name of the StatefulSet in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true /apis/apps/v1beta1/watch/statefulsets: get: consumes: - "*/*" description: watch individual changes to a list of StatefulSet operationId: watchAppsV1beta1StatefulSetListForAllNamespaces produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - apps_v1beta1 x-kubernetes-action: watchlist x-kubernetes-group-version-kind: group: apps kind: StatefulSet version: v1beta1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true /apis/apps/v1beta2/: get: consumes: - application/json - application/yaml - application/vnd.kubernetes.protobuf description: get available resources operationId: getAppsV1beta2APIResources produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList" "401": description: Unauthorized schemes: - https tags: - apps_v1beta2 /apis/apps/v1beta2/controllerrevisions: get: consumes: - "*/*" description: list or watch objects of kind ControllerRevision operationId: listAppsV1beta2ControllerRevisionForAllNamespaces produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.apps.v1beta2.ControllerRevisionList" "401": description: Unauthorized schemes: - https tags: - apps_v1beta2 x-kubernetes-action: list x-kubernetes-group-version-kind: group: apps kind: ControllerRevision version: v1beta2 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true /apis/apps/v1beta2/daemonsets: get: consumes: - "*/*" description: list or watch objects of kind DaemonSet operationId: listAppsV1beta2DaemonSetForAllNamespaces produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.apps.v1beta2.DaemonSetList" "401": description: Unauthorized schemes: - https tags: - apps_v1beta2 x-kubernetes-action: list x-kubernetes-group-version-kind: group: apps kind: DaemonSet version: v1beta2 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true /apis/apps/v1beta2/deployments: get: consumes: - "*/*" description: list or watch objects of kind Deployment operationId: listAppsV1beta2DeploymentForAllNamespaces produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.apps.v1beta2.DeploymentList" "401": description: Unauthorized schemes: - https tags: - apps_v1beta2 x-kubernetes-action: list x-kubernetes-group-version-kind: group: apps kind: Deployment version: v1beta2 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true "/apis/apps/v1beta2/namespaces/{namespace}/controllerrevisions": delete: consumes: - "*/*" description: delete collection of ControllerRevision operationId: deleteAppsV1beta2CollectionNamespacedControllerRevision parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - apps_v1beta2 x-kubernetes-action: deletecollection x-kubernetes-group-version-kind: group: apps kind: ControllerRevision version: v1beta2 get: consumes: - "*/*" description: list or watch objects of kind ControllerRevision operationId: listAppsV1beta2NamespacedControllerRevision parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.apps.v1beta2.ControllerRevisionList" "401": description: Unauthorized schemes: - https tags: - apps_v1beta2 x-kubernetes-action: list x-kubernetes-group-version-kind: group: apps kind: ControllerRevision version: v1beta2 parameters: - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true post: consumes: - "*/*" description: create a ControllerRevision operationId: createAppsV1beta2NamespacedControllerRevision parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.apps.v1beta2.ControllerRevision" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.apps.v1beta2.ControllerRevision" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.apps.v1beta2.ControllerRevision" "202": description: Accepted schema: $ref: "#/definitions/io.k8s.api.apps.v1beta2.ControllerRevision" "401": description: Unauthorized schemes: - https tags: - apps_v1beta2 x-kubernetes-action: post x-kubernetes-group-version-kind: group: apps kind: ControllerRevision version: v1beta2 "/apis/apps/v1beta2/namespaces/{namespace}/controllerrevisions/{name}": delete: consumes: - "*/*" description: delete a ControllerRevision operationId: deleteAppsV1beta2NamespacedControllerRevision parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" - description: The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. in: query name: gracePeriodSeconds type: integer uniqueItems: true - description: "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both." in: query name: orphanDependents type: boolean uniqueItems: true - description: "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground." in: query name: propagationPolicy type: string uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - apps_v1beta2 x-kubernetes-action: delete x-kubernetes-group-version-kind: group: apps kind: ControllerRevision version: v1beta2 get: consumes: - "*/*" description: read the specified ControllerRevision operationId: readAppsV1beta2NamespacedControllerRevision parameters: - description: Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. in: query name: exact type: boolean uniqueItems: true - description: Should this value be exported. Export strips fields that a user can not specify. in: query name: export type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.apps.v1beta2.ControllerRevision" "401": description: Unauthorized schemes: - https tags: - apps_v1beta2 x-kubernetes-action: get x-kubernetes-group-version-kind: group: apps kind: ControllerRevision version: v1beta2 parameters: - description: name of the ControllerRevision in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true patch: consumes: - application/json-patch+json - application/merge-patch+json - application/strategic-merge-patch+json description: partially update the specified ControllerRevision operationId: patchAppsV1beta2NamespacedControllerRevision parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.apps.v1beta2.ControllerRevision" "401": description: Unauthorized schemes: - https tags: - apps_v1beta2 x-kubernetes-action: patch x-kubernetes-group-version-kind: group: apps kind: ControllerRevision version: v1beta2 put: consumes: - "*/*" description: replace the specified ControllerRevision operationId: replaceAppsV1beta2NamespacedControllerRevision parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.apps.v1beta2.ControllerRevision" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.apps.v1beta2.ControllerRevision" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.apps.v1beta2.ControllerRevision" "401": description: Unauthorized schemes: - https tags: - apps_v1beta2 x-kubernetes-action: put x-kubernetes-group-version-kind: group: apps kind: ControllerRevision version: v1beta2 "/apis/apps/v1beta2/namespaces/{namespace}/daemonsets": delete: consumes: - "*/*" description: delete collection of DaemonSet operationId: deleteAppsV1beta2CollectionNamespacedDaemonSet parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - apps_v1beta2 x-kubernetes-action: deletecollection x-kubernetes-group-version-kind: group: apps kind: DaemonSet version: v1beta2 get: consumes: - "*/*" description: list or watch objects of kind DaemonSet operationId: listAppsV1beta2NamespacedDaemonSet parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.apps.v1beta2.DaemonSetList" "401": description: Unauthorized schemes: - https tags: - apps_v1beta2 x-kubernetes-action: list x-kubernetes-group-version-kind: group: apps kind: DaemonSet version: v1beta2 parameters: - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true post: consumes: - "*/*" description: create a DaemonSet operationId: createAppsV1beta2NamespacedDaemonSet parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.apps.v1beta2.DaemonSet" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.apps.v1beta2.DaemonSet" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.apps.v1beta2.DaemonSet" "202": description: Accepted schema: $ref: "#/definitions/io.k8s.api.apps.v1beta2.DaemonSet" "401": description: Unauthorized schemes: - https tags: - apps_v1beta2 x-kubernetes-action: post x-kubernetes-group-version-kind: group: apps kind: DaemonSet version: v1beta2 "/apis/apps/v1beta2/namespaces/{namespace}/daemonsets/{name}": delete: consumes: - "*/*" description: delete a DaemonSet operationId: deleteAppsV1beta2NamespacedDaemonSet parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" - description: The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. in: query name: gracePeriodSeconds type: integer uniqueItems: true - description: "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both." in: query name: orphanDependents type: boolean uniqueItems: true - description: "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground." in: query name: propagationPolicy type: string uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - apps_v1beta2 x-kubernetes-action: delete x-kubernetes-group-version-kind: group: apps kind: DaemonSet version: v1beta2 get: consumes: - "*/*" description: read the specified DaemonSet operationId: readAppsV1beta2NamespacedDaemonSet parameters: - description: Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. in: query name: exact type: boolean uniqueItems: true - description: Should this value be exported. Export strips fields that a user can not specify. in: query name: export type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.apps.v1beta2.DaemonSet" "401": description: Unauthorized schemes: - https tags: - apps_v1beta2 x-kubernetes-action: get x-kubernetes-group-version-kind: group: apps kind: DaemonSet version: v1beta2 parameters: - description: name of the DaemonSet in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true patch: consumes: - application/json-patch+json - application/merge-patch+json - application/strategic-merge-patch+json description: partially update the specified DaemonSet operationId: patchAppsV1beta2NamespacedDaemonSet parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.apps.v1beta2.DaemonSet" "401": description: Unauthorized schemes: - https tags: - apps_v1beta2 x-kubernetes-action: patch x-kubernetes-group-version-kind: group: apps kind: DaemonSet version: v1beta2 put: consumes: - "*/*" description: replace the specified DaemonSet operationId: replaceAppsV1beta2NamespacedDaemonSet parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.apps.v1beta2.DaemonSet" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.apps.v1beta2.DaemonSet" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.apps.v1beta2.DaemonSet" "401": description: Unauthorized schemes: - https tags: - apps_v1beta2 x-kubernetes-action: put x-kubernetes-group-version-kind: group: apps kind: DaemonSet version: v1beta2 "/apis/apps/v1beta2/namespaces/{namespace}/daemonsets/{name}/status": get: consumes: - "*/*" description: read status of the specified DaemonSet operationId: readAppsV1beta2NamespacedDaemonSetStatus produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.apps.v1beta2.DaemonSet" "401": description: Unauthorized schemes: - https tags: - apps_v1beta2 x-kubernetes-action: get x-kubernetes-group-version-kind: group: apps kind: DaemonSet version: v1beta2 parameters: - description: name of the DaemonSet in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true patch: consumes: - application/json-patch+json - application/merge-patch+json - application/strategic-merge-patch+json description: partially update status of the specified DaemonSet operationId: patchAppsV1beta2NamespacedDaemonSetStatus parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.apps.v1beta2.DaemonSet" "401": description: Unauthorized schemes: - https tags: - apps_v1beta2 x-kubernetes-action: patch x-kubernetes-group-version-kind: group: apps kind: DaemonSet version: v1beta2 put: consumes: - "*/*" description: replace status of the specified DaemonSet operationId: replaceAppsV1beta2NamespacedDaemonSetStatus parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.apps.v1beta2.DaemonSet" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.apps.v1beta2.DaemonSet" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.apps.v1beta2.DaemonSet" "401": description: Unauthorized schemes: - https tags: - apps_v1beta2 x-kubernetes-action: put x-kubernetes-group-version-kind: group: apps kind: DaemonSet version: v1beta2 "/apis/apps/v1beta2/namespaces/{namespace}/deployments": delete: consumes: - "*/*" description: delete collection of Deployment operationId: deleteAppsV1beta2CollectionNamespacedDeployment parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - apps_v1beta2 x-kubernetes-action: deletecollection x-kubernetes-group-version-kind: group: apps kind: Deployment version: v1beta2 get: consumes: - "*/*" description: list or watch objects of kind Deployment operationId: listAppsV1beta2NamespacedDeployment parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.apps.v1beta2.DeploymentList" "401": description: Unauthorized schemes: - https tags: - apps_v1beta2 x-kubernetes-action: list x-kubernetes-group-version-kind: group: apps kind: Deployment version: v1beta2 parameters: - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true post: consumes: - "*/*" description: create a Deployment operationId: createAppsV1beta2NamespacedDeployment parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.apps.v1beta2.Deployment" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.apps.v1beta2.Deployment" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.apps.v1beta2.Deployment" "202": description: Accepted schema: $ref: "#/definitions/io.k8s.api.apps.v1beta2.Deployment" "401": description: Unauthorized schemes: - https tags: - apps_v1beta2 x-kubernetes-action: post x-kubernetes-group-version-kind: group: apps kind: Deployment version: v1beta2 "/apis/apps/v1beta2/namespaces/{namespace}/deployments/{name}": delete: consumes: - "*/*" description: delete a Deployment operationId: deleteAppsV1beta2NamespacedDeployment parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" - description: The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. in: query name: gracePeriodSeconds type: integer uniqueItems: true - description: "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both." in: query name: orphanDependents type: boolean uniqueItems: true - description: "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground." in: query name: propagationPolicy type: string uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - apps_v1beta2 x-kubernetes-action: delete x-kubernetes-group-version-kind: group: apps kind: Deployment version: v1beta2 get: consumes: - "*/*" description: read the specified Deployment operationId: readAppsV1beta2NamespacedDeployment parameters: - description: Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. in: query name: exact type: boolean uniqueItems: true - description: Should this value be exported. Export strips fields that a user can not specify. in: query name: export type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.apps.v1beta2.Deployment" "401": description: Unauthorized schemes: - https tags: - apps_v1beta2 x-kubernetes-action: get x-kubernetes-group-version-kind: group: apps kind: Deployment version: v1beta2 parameters: - description: name of the Deployment in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true patch: consumes: - application/json-patch+json - application/merge-patch+json - application/strategic-merge-patch+json description: partially update the specified Deployment operationId: patchAppsV1beta2NamespacedDeployment parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.apps.v1beta2.Deployment" "401": description: Unauthorized schemes: - https tags: - apps_v1beta2 x-kubernetes-action: patch x-kubernetes-group-version-kind: group: apps kind: Deployment version: v1beta2 put: consumes: - "*/*" description: replace the specified Deployment operationId: replaceAppsV1beta2NamespacedDeployment parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.apps.v1beta2.Deployment" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.apps.v1beta2.Deployment" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.apps.v1beta2.Deployment" "401": description: Unauthorized schemes: - https tags: - apps_v1beta2 x-kubernetes-action: put x-kubernetes-group-version-kind: group: apps kind: Deployment version: v1beta2 "/apis/apps/v1beta2/namespaces/{namespace}/deployments/{name}/scale": get: consumes: - "*/*" description: read scale of the specified Deployment operationId: readAppsV1beta2NamespacedDeploymentScale produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.apps.v1beta2.Scale" "401": description: Unauthorized schemes: - https tags: - apps_v1beta2 x-kubernetes-action: get x-kubernetes-group-version-kind: group: apps kind: Scale version: v1beta2 parameters: - description: name of the Scale in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true patch: consumes: - application/json-patch+json - application/merge-patch+json - application/strategic-merge-patch+json description: partially update scale of the specified Deployment operationId: patchAppsV1beta2NamespacedDeploymentScale parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.apps.v1beta2.Scale" "401": description: Unauthorized schemes: - https tags: - apps_v1beta2 x-kubernetes-action: patch x-kubernetes-group-version-kind: group: apps kind: Scale version: v1beta2 put: consumes: - "*/*" description: replace scale of the specified Deployment operationId: replaceAppsV1beta2NamespacedDeploymentScale parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.apps.v1beta2.Scale" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.apps.v1beta2.Scale" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.apps.v1beta2.Scale" "401": description: Unauthorized schemes: - https tags: - apps_v1beta2 x-kubernetes-action: put x-kubernetes-group-version-kind: group: apps kind: Scale version: v1beta2 "/apis/apps/v1beta2/namespaces/{namespace}/deployments/{name}/status": get: consumes: - "*/*" description: read status of the specified Deployment operationId: readAppsV1beta2NamespacedDeploymentStatus produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.apps.v1beta2.Deployment" "401": description: Unauthorized schemes: - https tags: - apps_v1beta2 x-kubernetes-action: get x-kubernetes-group-version-kind: group: apps kind: Deployment version: v1beta2 parameters: - description: name of the Deployment in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true patch: consumes: - application/json-patch+json - application/merge-patch+json - application/strategic-merge-patch+json description: partially update status of the specified Deployment operationId: patchAppsV1beta2NamespacedDeploymentStatus parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.apps.v1beta2.Deployment" "401": description: Unauthorized schemes: - https tags: - apps_v1beta2 x-kubernetes-action: patch x-kubernetes-group-version-kind: group: apps kind: Deployment version: v1beta2 put: consumes: - "*/*" description: replace status of the specified Deployment operationId: replaceAppsV1beta2NamespacedDeploymentStatus parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.apps.v1beta2.Deployment" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.apps.v1beta2.Deployment" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.apps.v1beta2.Deployment" "401": description: Unauthorized schemes: - https tags: - apps_v1beta2 x-kubernetes-action: put x-kubernetes-group-version-kind: group: apps kind: Deployment version: v1beta2 "/apis/apps/v1beta2/namespaces/{namespace}/replicasets": delete: consumes: - "*/*" description: delete collection of ReplicaSet operationId: deleteAppsV1beta2CollectionNamespacedReplicaSet parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - apps_v1beta2 x-kubernetes-action: deletecollection x-kubernetes-group-version-kind: group: apps kind: ReplicaSet version: v1beta2 get: consumes: - "*/*" description: list or watch objects of kind ReplicaSet operationId: listAppsV1beta2NamespacedReplicaSet parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.apps.v1beta2.ReplicaSetList" "401": description: Unauthorized schemes: - https tags: - apps_v1beta2 x-kubernetes-action: list x-kubernetes-group-version-kind: group: apps kind: ReplicaSet version: v1beta2 parameters: - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true post: consumes: - "*/*" description: create a ReplicaSet operationId: createAppsV1beta2NamespacedReplicaSet parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.apps.v1beta2.ReplicaSet" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.apps.v1beta2.ReplicaSet" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.apps.v1beta2.ReplicaSet" "202": description: Accepted schema: $ref: "#/definitions/io.k8s.api.apps.v1beta2.ReplicaSet" "401": description: Unauthorized schemes: - https tags: - apps_v1beta2 x-kubernetes-action: post x-kubernetes-group-version-kind: group: apps kind: ReplicaSet version: v1beta2 "/apis/apps/v1beta2/namespaces/{namespace}/replicasets/{name}": delete: consumes: - "*/*" description: delete a ReplicaSet operationId: deleteAppsV1beta2NamespacedReplicaSet parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" - description: The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. in: query name: gracePeriodSeconds type: integer uniqueItems: true - description: "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both." in: query name: orphanDependents type: boolean uniqueItems: true - description: "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground." in: query name: propagationPolicy type: string uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - apps_v1beta2 x-kubernetes-action: delete x-kubernetes-group-version-kind: group: apps kind: ReplicaSet version: v1beta2 get: consumes: - "*/*" description: read the specified ReplicaSet operationId: readAppsV1beta2NamespacedReplicaSet parameters: - description: Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. in: query name: exact type: boolean uniqueItems: true - description: Should this value be exported. Export strips fields that a user can not specify. in: query name: export type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.apps.v1beta2.ReplicaSet" "401": description: Unauthorized schemes: - https tags: - apps_v1beta2 x-kubernetes-action: get x-kubernetes-group-version-kind: group: apps kind: ReplicaSet version: v1beta2 parameters: - description: name of the ReplicaSet in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true patch: consumes: - application/json-patch+json - application/merge-patch+json - application/strategic-merge-patch+json description: partially update the specified ReplicaSet operationId: patchAppsV1beta2NamespacedReplicaSet parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.apps.v1beta2.ReplicaSet" "401": description: Unauthorized schemes: - https tags: - apps_v1beta2 x-kubernetes-action: patch x-kubernetes-group-version-kind: group: apps kind: ReplicaSet version: v1beta2 put: consumes: - "*/*" description: replace the specified ReplicaSet operationId: replaceAppsV1beta2NamespacedReplicaSet parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.apps.v1beta2.ReplicaSet" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.apps.v1beta2.ReplicaSet" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.apps.v1beta2.ReplicaSet" "401": description: Unauthorized schemes: - https tags: - apps_v1beta2 x-kubernetes-action: put x-kubernetes-group-version-kind: group: apps kind: ReplicaSet version: v1beta2 "/apis/apps/v1beta2/namespaces/{namespace}/replicasets/{name}/scale": get: consumes: - "*/*" description: read scale of the specified ReplicaSet operationId: readAppsV1beta2NamespacedReplicaSetScale produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.apps.v1beta2.Scale" "401": description: Unauthorized schemes: - https tags: - apps_v1beta2 x-kubernetes-action: get x-kubernetes-group-version-kind: group: apps kind: Scale version: v1beta2 parameters: - description: name of the Scale in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true patch: consumes: - application/json-patch+json - application/merge-patch+json - application/strategic-merge-patch+json description: partially update scale of the specified ReplicaSet operationId: patchAppsV1beta2NamespacedReplicaSetScale parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.apps.v1beta2.Scale" "401": description: Unauthorized schemes: - https tags: - apps_v1beta2 x-kubernetes-action: patch x-kubernetes-group-version-kind: group: apps kind: Scale version: v1beta2 put: consumes: - "*/*" description: replace scale of the specified ReplicaSet operationId: replaceAppsV1beta2NamespacedReplicaSetScale parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.apps.v1beta2.Scale" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.apps.v1beta2.Scale" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.apps.v1beta2.Scale" "401": description: Unauthorized schemes: - https tags: - apps_v1beta2 x-kubernetes-action: put x-kubernetes-group-version-kind: group: apps kind: Scale version: v1beta2 "/apis/apps/v1beta2/namespaces/{namespace}/replicasets/{name}/status": get: consumes: - "*/*" description: read status of the specified ReplicaSet operationId: readAppsV1beta2NamespacedReplicaSetStatus produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.apps.v1beta2.ReplicaSet" "401": description: Unauthorized schemes: - https tags: - apps_v1beta2 x-kubernetes-action: get x-kubernetes-group-version-kind: group: apps kind: ReplicaSet version: v1beta2 parameters: - description: name of the ReplicaSet in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true patch: consumes: - application/json-patch+json - application/merge-patch+json - application/strategic-merge-patch+json description: partially update status of the specified ReplicaSet operationId: patchAppsV1beta2NamespacedReplicaSetStatus parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.apps.v1beta2.ReplicaSet" "401": description: Unauthorized schemes: - https tags: - apps_v1beta2 x-kubernetes-action: patch x-kubernetes-group-version-kind: group: apps kind: ReplicaSet version: v1beta2 put: consumes: - "*/*" description: replace status of the specified ReplicaSet operationId: replaceAppsV1beta2NamespacedReplicaSetStatus parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.apps.v1beta2.ReplicaSet" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.apps.v1beta2.ReplicaSet" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.apps.v1beta2.ReplicaSet" "401": description: Unauthorized schemes: - https tags: - apps_v1beta2 x-kubernetes-action: put x-kubernetes-group-version-kind: group: apps kind: ReplicaSet version: v1beta2 "/apis/apps/v1beta2/namespaces/{namespace}/statefulsets": delete: consumes: - "*/*" description: delete collection of StatefulSet operationId: deleteAppsV1beta2CollectionNamespacedStatefulSet parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - apps_v1beta2 x-kubernetes-action: deletecollection x-kubernetes-group-version-kind: group: apps kind: StatefulSet version: v1beta2 get: consumes: - "*/*" description: list or watch objects of kind StatefulSet operationId: listAppsV1beta2NamespacedStatefulSet parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.apps.v1beta2.StatefulSetList" "401": description: Unauthorized schemes: - https tags: - apps_v1beta2 x-kubernetes-action: list x-kubernetes-group-version-kind: group: apps kind: StatefulSet version: v1beta2 parameters: - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true post: consumes: - "*/*" description: create a StatefulSet operationId: createAppsV1beta2NamespacedStatefulSet parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.apps.v1beta2.StatefulSet" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.apps.v1beta2.StatefulSet" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.apps.v1beta2.StatefulSet" "202": description: Accepted schema: $ref: "#/definitions/io.k8s.api.apps.v1beta2.StatefulSet" "401": description: Unauthorized schemes: - https tags: - apps_v1beta2 x-kubernetes-action: post x-kubernetes-group-version-kind: group: apps kind: StatefulSet version: v1beta2 "/apis/apps/v1beta2/namespaces/{namespace}/statefulsets/{name}": delete: consumes: - "*/*" description: delete a StatefulSet operationId: deleteAppsV1beta2NamespacedStatefulSet parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" - description: The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. in: query name: gracePeriodSeconds type: integer uniqueItems: true - description: "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both." in: query name: orphanDependents type: boolean uniqueItems: true - description: "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground." in: query name: propagationPolicy type: string uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - apps_v1beta2 x-kubernetes-action: delete x-kubernetes-group-version-kind: group: apps kind: StatefulSet version: v1beta2 get: consumes: - "*/*" description: read the specified StatefulSet operationId: readAppsV1beta2NamespacedStatefulSet parameters: - description: Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. in: query name: exact type: boolean uniqueItems: true - description: Should this value be exported. Export strips fields that a user can not specify. in: query name: export type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.apps.v1beta2.StatefulSet" "401": description: Unauthorized schemes: - https tags: - apps_v1beta2 x-kubernetes-action: get x-kubernetes-group-version-kind: group: apps kind: StatefulSet version: v1beta2 parameters: - description: name of the StatefulSet in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true patch: consumes: - application/json-patch+json - application/merge-patch+json - application/strategic-merge-patch+json description: partially update the specified StatefulSet operationId: patchAppsV1beta2NamespacedStatefulSet parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.apps.v1beta2.StatefulSet" "401": description: Unauthorized schemes: - https tags: - apps_v1beta2 x-kubernetes-action: patch x-kubernetes-group-version-kind: group: apps kind: StatefulSet version: v1beta2 put: consumes: - "*/*" description: replace the specified StatefulSet operationId: replaceAppsV1beta2NamespacedStatefulSet parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.apps.v1beta2.StatefulSet" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.apps.v1beta2.StatefulSet" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.apps.v1beta2.StatefulSet" "401": description: Unauthorized schemes: - https tags: - apps_v1beta2 x-kubernetes-action: put x-kubernetes-group-version-kind: group: apps kind: StatefulSet version: v1beta2 "/apis/apps/v1beta2/namespaces/{namespace}/statefulsets/{name}/scale": get: consumes: - "*/*" description: read scale of the specified StatefulSet operationId: readAppsV1beta2NamespacedStatefulSetScale produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.apps.v1beta2.Scale" "401": description: Unauthorized schemes: - https tags: - apps_v1beta2 x-kubernetes-action: get x-kubernetes-group-version-kind: group: apps kind: Scale version: v1beta2 parameters: - description: name of the Scale in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true patch: consumes: - application/json-patch+json - application/merge-patch+json - application/strategic-merge-patch+json description: partially update scale of the specified StatefulSet operationId: patchAppsV1beta2NamespacedStatefulSetScale parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.apps.v1beta2.Scale" "401": description: Unauthorized schemes: - https tags: - apps_v1beta2 x-kubernetes-action: patch x-kubernetes-group-version-kind: group: apps kind: Scale version: v1beta2 put: consumes: - "*/*" description: replace scale of the specified StatefulSet operationId: replaceAppsV1beta2NamespacedStatefulSetScale parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.apps.v1beta2.Scale" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.apps.v1beta2.Scale" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.apps.v1beta2.Scale" "401": description: Unauthorized schemes: - https tags: - apps_v1beta2 x-kubernetes-action: put x-kubernetes-group-version-kind: group: apps kind: Scale version: v1beta2 "/apis/apps/v1beta2/namespaces/{namespace}/statefulsets/{name}/status": get: consumes: - "*/*" description: read status of the specified StatefulSet operationId: readAppsV1beta2NamespacedStatefulSetStatus produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.apps.v1beta2.StatefulSet" "401": description: Unauthorized schemes: - https tags: - apps_v1beta2 x-kubernetes-action: get x-kubernetes-group-version-kind: group: apps kind: StatefulSet version: v1beta2 parameters: - description: name of the StatefulSet in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true patch: consumes: - application/json-patch+json - application/merge-patch+json - application/strategic-merge-patch+json description: partially update status of the specified StatefulSet operationId: patchAppsV1beta2NamespacedStatefulSetStatus parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.apps.v1beta2.StatefulSet" "401": description: Unauthorized schemes: - https tags: - apps_v1beta2 x-kubernetes-action: patch x-kubernetes-group-version-kind: group: apps kind: StatefulSet version: v1beta2 put: consumes: - "*/*" description: replace status of the specified StatefulSet operationId: replaceAppsV1beta2NamespacedStatefulSetStatus parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.apps.v1beta2.StatefulSet" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.apps.v1beta2.StatefulSet" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.apps.v1beta2.StatefulSet" "401": description: Unauthorized schemes: - https tags: - apps_v1beta2 x-kubernetes-action: put x-kubernetes-group-version-kind: group: apps kind: StatefulSet version: v1beta2 /apis/apps/v1beta2/replicasets: get: consumes: - "*/*" description: list or watch objects of kind ReplicaSet operationId: listAppsV1beta2ReplicaSetForAllNamespaces produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.apps.v1beta2.ReplicaSetList" "401": description: Unauthorized schemes: - https tags: - apps_v1beta2 x-kubernetes-action: list x-kubernetes-group-version-kind: group: apps kind: ReplicaSet version: v1beta2 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true /apis/apps/v1beta2/statefulsets: get: consumes: - "*/*" description: list or watch objects of kind StatefulSet operationId: listAppsV1beta2StatefulSetForAllNamespaces produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.apps.v1beta2.StatefulSetList" "401": description: Unauthorized schemes: - https tags: - apps_v1beta2 x-kubernetes-action: list x-kubernetes-group-version-kind: group: apps kind: StatefulSet version: v1beta2 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true /apis/apps/v1beta2/watch/controllerrevisions: get: consumes: - "*/*" description: watch individual changes to a list of ControllerRevision operationId: watchAppsV1beta2ControllerRevisionListForAllNamespaces produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - apps_v1beta2 x-kubernetes-action: watchlist x-kubernetes-group-version-kind: group: apps kind: ControllerRevision version: v1beta2 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true /apis/apps/v1beta2/watch/daemonsets: get: consumes: - "*/*" description: watch individual changes to a list of DaemonSet operationId: watchAppsV1beta2DaemonSetListForAllNamespaces produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - apps_v1beta2 x-kubernetes-action: watchlist x-kubernetes-group-version-kind: group: apps kind: DaemonSet version: v1beta2 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true /apis/apps/v1beta2/watch/deployments: get: consumes: - "*/*" description: watch individual changes to a list of Deployment operationId: watchAppsV1beta2DeploymentListForAllNamespaces produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - apps_v1beta2 x-kubernetes-action: watchlist x-kubernetes-group-version-kind: group: apps kind: Deployment version: v1beta2 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true "/apis/apps/v1beta2/watch/namespaces/{namespace}/controllerrevisions": get: consumes: - "*/*" description: watch individual changes to a list of ControllerRevision operationId: watchAppsV1beta2NamespacedControllerRevisionList produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - apps_v1beta2 x-kubernetes-action: watchlist x-kubernetes-group-version-kind: group: apps kind: ControllerRevision version: v1beta2 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true "/apis/apps/v1beta2/watch/namespaces/{namespace}/controllerrevisions/{name}": get: consumes: - "*/*" description: watch changes to an object of kind ControllerRevision operationId: watchAppsV1beta2NamespacedControllerRevision produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - apps_v1beta2 x-kubernetes-action: watch x-kubernetes-group-version-kind: group: apps kind: ControllerRevision version: v1beta2 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: name of the ControllerRevision in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true "/apis/apps/v1beta2/watch/namespaces/{namespace}/daemonsets": get: consumes: - "*/*" description: watch individual changes to a list of DaemonSet operationId: watchAppsV1beta2NamespacedDaemonSetList produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - apps_v1beta2 x-kubernetes-action: watchlist x-kubernetes-group-version-kind: group: apps kind: DaemonSet version: v1beta2 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true "/apis/apps/v1beta2/watch/namespaces/{namespace}/daemonsets/{name}": get: consumes: - "*/*" description: watch changes to an object of kind DaemonSet operationId: watchAppsV1beta2NamespacedDaemonSet produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - apps_v1beta2 x-kubernetes-action: watch x-kubernetes-group-version-kind: group: apps kind: DaemonSet version: v1beta2 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: name of the DaemonSet in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true "/apis/apps/v1beta2/watch/namespaces/{namespace}/deployments": get: consumes: - "*/*" description: watch individual changes to a list of Deployment operationId: watchAppsV1beta2NamespacedDeploymentList produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - apps_v1beta2 x-kubernetes-action: watchlist x-kubernetes-group-version-kind: group: apps kind: Deployment version: v1beta2 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true "/apis/apps/v1beta2/watch/namespaces/{namespace}/deployments/{name}": get: consumes: - "*/*" description: watch changes to an object of kind Deployment operationId: watchAppsV1beta2NamespacedDeployment produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - apps_v1beta2 x-kubernetes-action: watch x-kubernetes-group-version-kind: group: apps kind: Deployment version: v1beta2 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: name of the Deployment in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true "/apis/apps/v1beta2/watch/namespaces/{namespace}/replicasets": get: consumes: - "*/*" description: watch individual changes to a list of ReplicaSet operationId: watchAppsV1beta2NamespacedReplicaSetList produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - apps_v1beta2 x-kubernetes-action: watchlist x-kubernetes-group-version-kind: group: apps kind: ReplicaSet version: v1beta2 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true "/apis/apps/v1beta2/watch/namespaces/{namespace}/replicasets/{name}": get: consumes: - "*/*" description: watch changes to an object of kind ReplicaSet operationId: watchAppsV1beta2NamespacedReplicaSet produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - apps_v1beta2 x-kubernetes-action: watch x-kubernetes-group-version-kind: group: apps kind: ReplicaSet version: v1beta2 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: name of the ReplicaSet in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true "/apis/apps/v1beta2/watch/namespaces/{namespace}/statefulsets": get: consumes: - "*/*" description: watch individual changes to a list of StatefulSet operationId: watchAppsV1beta2NamespacedStatefulSetList produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - apps_v1beta2 x-kubernetes-action: watchlist x-kubernetes-group-version-kind: group: apps kind: StatefulSet version: v1beta2 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true "/apis/apps/v1beta2/watch/namespaces/{namespace}/statefulsets/{name}": get: consumes: - "*/*" description: watch changes to an object of kind StatefulSet operationId: watchAppsV1beta2NamespacedStatefulSet produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - apps_v1beta2 x-kubernetes-action: watch x-kubernetes-group-version-kind: group: apps kind: StatefulSet version: v1beta2 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: name of the StatefulSet in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true /apis/apps/v1beta2/watch/replicasets: get: consumes: - "*/*" description: watch individual changes to a list of ReplicaSet operationId: watchAppsV1beta2ReplicaSetListForAllNamespaces produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - apps_v1beta2 x-kubernetes-action: watchlist x-kubernetes-group-version-kind: group: apps kind: ReplicaSet version: v1beta2 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true /apis/apps/v1beta2/watch/statefulsets: get: consumes: - "*/*" description: watch individual changes to a list of StatefulSet operationId: watchAppsV1beta2StatefulSetListForAllNamespaces produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - apps_v1beta2 x-kubernetes-action: watchlist x-kubernetes-group-version-kind: group: apps kind: StatefulSet version: v1beta2 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true /apis/authentication.k8s.io/: get: consumes: - application/json - application/yaml - application/vnd.kubernetes.protobuf description: get information of a group operationId: getAuthenticationAPIGroup produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup" "401": description: Unauthorized schemes: - https tags: - authentication /apis/authentication.k8s.io/v1/: get: consumes: - application/json - application/yaml - application/vnd.kubernetes.protobuf description: get available resources operationId: getAuthenticationV1APIResources produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList" "401": description: Unauthorized schemes: - https tags: - authentication_v1 /apis/authentication.k8s.io/v1/tokenreviews: parameters: - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true post: consumes: - "*/*" description: create a TokenReview operationId: createAuthenticationV1TokenReview parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.authentication.v1.TokenReview" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.authentication.v1.TokenReview" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.authentication.v1.TokenReview" "202": description: Accepted schema: $ref: "#/definitions/io.k8s.api.authentication.v1.TokenReview" "401": description: Unauthorized schemes: - https tags: - authentication_v1 x-kubernetes-action: post x-kubernetes-group-version-kind: group: authentication.k8s.io kind: TokenReview version: v1 /apis/authentication.k8s.io/v1beta1/: get: consumes: - application/json - application/yaml - application/vnd.kubernetes.protobuf description: get available resources operationId: getAuthenticationV1beta1APIResources produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList" "401": description: Unauthorized schemes: - https tags: - authentication_v1beta1 /apis/authentication.k8s.io/v1beta1/tokenreviews: parameters: - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true post: consumes: - "*/*" description: create a TokenReview operationId: createAuthenticationV1beta1TokenReview parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.authentication.v1beta1.TokenReview" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.authentication.v1beta1.TokenReview" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.authentication.v1beta1.TokenReview" "202": description: Accepted schema: $ref: "#/definitions/io.k8s.api.authentication.v1beta1.TokenReview" "401": description: Unauthorized schemes: - https tags: - authentication_v1beta1 x-kubernetes-action: post x-kubernetes-group-version-kind: group: authentication.k8s.io kind: TokenReview version: v1beta1 /apis/authorization.k8s.io/: get: consumes: - application/json - application/yaml - application/vnd.kubernetes.protobuf description: get information of a group operationId: getAuthorizationAPIGroup produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup" "401": description: Unauthorized schemes: - https tags: - authorization /apis/authorization.k8s.io/v1/: get: consumes: - application/json - application/yaml - application/vnd.kubernetes.protobuf description: get available resources operationId: getAuthorizationV1APIResources produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList" "401": description: Unauthorized schemes: - https tags: - authorization_v1 "/apis/authorization.k8s.io/v1/namespaces/{namespace}/localsubjectaccessreviews": parameters: - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true post: consumes: - "*/*" description: create a LocalSubjectAccessReview operationId: createAuthorizationV1NamespacedLocalSubjectAccessReview parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.authorization.v1.LocalSubjectAccessReview" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.authorization.v1.LocalSubjectAccessReview" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.authorization.v1.LocalSubjectAccessReview" "202": description: Accepted schema: $ref: "#/definitions/io.k8s.api.authorization.v1.LocalSubjectAccessReview" "401": description: Unauthorized schemes: - https tags: - authorization_v1 x-kubernetes-action: post x-kubernetes-group-version-kind: group: authorization.k8s.io kind: LocalSubjectAccessReview version: v1 /apis/authorization.k8s.io/v1/selfsubjectaccessreviews: parameters: - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true post: consumes: - "*/*" description: create a SelfSubjectAccessReview operationId: createAuthorizationV1SelfSubjectAccessReview parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.authorization.v1.SelfSubjectAccessReview" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.authorization.v1.SelfSubjectAccessReview" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.authorization.v1.SelfSubjectAccessReview" "202": description: Accepted schema: $ref: "#/definitions/io.k8s.api.authorization.v1.SelfSubjectAccessReview" "401": description: Unauthorized schemes: - https tags: - authorization_v1 x-kubernetes-action: post x-kubernetes-group-version-kind: group: authorization.k8s.io kind: SelfSubjectAccessReview version: v1 /apis/authorization.k8s.io/v1/selfsubjectrulesreviews: parameters: - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true post: consumes: - "*/*" description: create a SelfSubjectRulesReview operationId: createAuthorizationV1SelfSubjectRulesReview parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.authorization.v1.SelfSubjectRulesReview" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.authorization.v1.SelfSubjectRulesReview" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.authorization.v1.SelfSubjectRulesReview" "202": description: Accepted schema: $ref: "#/definitions/io.k8s.api.authorization.v1.SelfSubjectRulesReview" "401": description: Unauthorized schemes: - https tags: - authorization_v1 x-kubernetes-action: post x-kubernetes-group-version-kind: group: authorization.k8s.io kind: SelfSubjectRulesReview version: v1 /apis/authorization.k8s.io/v1/subjectaccessreviews: parameters: - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true post: consumes: - "*/*" description: create a SubjectAccessReview operationId: createAuthorizationV1SubjectAccessReview parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.authorization.v1.SubjectAccessReview" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.authorization.v1.SubjectAccessReview" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.authorization.v1.SubjectAccessReview" "202": description: Accepted schema: $ref: "#/definitions/io.k8s.api.authorization.v1.SubjectAccessReview" "401": description: Unauthorized schemes: - https tags: - authorization_v1 x-kubernetes-action: post x-kubernetes-group-version-kind: group: authorization.k8s.io kind: SubjectAccessReview version: v1 /apis/authorization.k8s.io/v1beta1/: get: consumes: - application/json - application/yaml - application/vnd.kubernetes.protobuf description: get available resources operationId: getAuthorizationV1beta1APIResources produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList" "401": description: Unauthorized schemes: - https tags: - authorization_v1beta1 "/apis/authorization.k8s.io/v1beta1/namespaces/{namespace}/localsubjectaccessreviews": parameters: - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true post: consumes: - "*/*" description: create a LocalSubjectAccessReview operationId: createAuthorizationV1beta1NamespacedLocalSubjectAccessReview parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.authorization.v1beta1.LocalSubjectAccessReview" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.authorization.v1beta1.LocalSubjectAccessReview" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.authorization.v1beta1.LocalSubjectAccessReview" "202": description: Accepted schema: $ref: "#/definitions/io.k8s.api.authorization.v1beta1.LocalSubjectAccessReview" "401": description: Unauthorized schemes: - https tags: - authorization_v1beta1 x-kubernetes-action: post x-kubernetes-group-version-kind: group: authorization.k8s.io kind: LocalSubjectAccessReview version: v1beta1 /apis/authorization.k8s.io/v1beta1/selfsubjectaccessreviews: parameters: - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true post: consumes: - "*/*" description: create a SelfSubjectAccessReview operationId: createAuthorizationV1beta1SelfSubjectAccessReview parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.authorization.v1beta1.SelfSubjectAccessReview" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.authorization.v1beta1.SelfSubjectAccessReview" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.authorization.v1beta1.SelfSubjectAccessReview" "202": description: Accepted schema: $ref: "#/definitions/io.k8s.api.authorization.v1beta1.SelfSubjectAccessReview" "401": description: Unauthorized schemes: - https tags: - authorization_v1beta1 x-kubernetes-action: post x-kubernetes-group-version-kind: group: authorization.k8s.io kind: SelfSubjectAccessReview version: v1beta1 /apis/authorization.k8s.io/v1beta1/selfsubjectrulesreviews: parameters: - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true post: consumes: - "*/*" description: create a SelfSubjectRulesReview operationId: createAuthorizationV1beta1SelfSubjectRulesReview parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.authorization.v1beta1.SelfSubjectRulesReview" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.authorization.v1beta1.SelfSubjectRulesReview" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.authorization.v1beta1.SelfSubjectRulesReview" "202": description: Accepted schema: $ref: "#/definitions/io.k8s.api.authorization.v1beta1.SelfSubjectRulesReview" "401": description: Unauthorized schemes: - https tags: - authorization_v1beta1 x-kubernetes-action: post x-kubernetes-group-version-kind: group: authorization.k8s.io kind: SelfSubjectRulesReview version: v1beta1 /apis/authorization.k8s.io/v1beta1/subjectaccessreviews: parameters: - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true post: consumes: - "*/*" description: create a SubjectAccessReview operationId: createAuthorizationV1beta1SubjectAccessReview parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.authorization.v1beta1.SubjectAccessReview" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.authorization.v1beta1.SubjectAccessReview" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.authorization.v1beta1.SubjectAccessReview" "202": description: Accepted schema: $ref: "#/definitions/io.k8s.api.authorization.v1beta1.SubjectAccessReview" "401": description: Unauthorized schemes: - https tags: - authorization_v1beta1 x-kubernetes-action: post x-kubernetes-group-version-kind: group: authorization.k8s.io kind: SubjectAccessReview version: v1beta1 /apis/autoscaling/: get: consumes: - application/json - application/yaml - application/vnd.kubernetes.protobuf description: get information of a group operationId: getAutoscalingAPIGroup produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup" "401": description: Unauthorized schemes: - https tags: - autoscaling /apis/autoscaling/v1/: get: consumes: - application/json - application/yaml - application/vnd.kubernetes.protobuf description: get available resources operationId: getAutoscalingV1APIResources produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList" "401": description: Unauthorized schemes: - https tags: - autoscaling_v1 /apis/autoscaling/v1/horizontalpodautoscalers: get: consumes: - "*/*" description: list or watch objects of kind HorizontalPodAutoscaler operationId: listAutoscalingV1HorizontalPodAutoscalerForAllNamespaces produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.autoscaling.v1.HorizontalPodAutoscalerList" "401": description: Unauthorized schemes: - https tags: - autoscaling_v1 x-kubernetes-action: list x-kubernetes-group-version-kind: group: autoscaling kind: HorizontalPodAutoscaler version: v1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true "/apis/autoscaling/v1/namespaces/{namespace}/horizontalpodautoscalers": delete: consumes: - "*/*" description: delete collection of HorizontalPodAutoscaler operationId: deleteAutoscalingV1CollectionNamespacedHorizontalPodAutoscaler parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - autoscaling_v1 x-kubernetes-action: deletecollection x-kubernetes-group-version-kind: group: autoscaling kind: HorizontalPodAutoscaler version: v1 get: consumes: - "*/*" description: list or watch objects of kind HorizontalPodAutoscaler operationId: listAutoscalingV1NamespacedHorizontalPodAutoscaler parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.autoscaling.v1.HorizontalPodAutoscalerList" "401": description: Unauthorized schemes: - https tags: - autoscaling_v1 x-kubernetes-action: list x-kubernetes-group-version-kind: group: autoscaling kind: HorizontalPodAutoscaler version: v1 parameters: - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true post: consumes: - "*/*" description: create a HorizontalPodAutoscaler operationId: createAutoscalingV1NamespacedHorizontalPodAutoscaler parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler" "202": description: Accepted schema: $ref: "#/definitions/io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler" "401": description: Unauthorized schemes: - https tags: - autoscaling_v1 x-kubernetes-action: post x-kubernetes-group-version-kind: group: autoscaling kind: HorizontalPodAutoscaler version: v1 "/apis/autoscaling/v1/namespaces/{namespace}/horizontalpodautoscalers/{name}": delete: consumes: - "*/*" description: delete a HorizontalPodAutoscaler operationId: deleteAutoscalingV1NamespacedHorizontalPodAutoscaler parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" - description: The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. in: query name: gracePeriodSeconds type: integer uniqueItems: true - description: "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both." in: query name: orphanDependents type: boolean uniqueItems: true - description: "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground." in: query name: propagationPolicy type: string uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - autoscaling_v1 x-kubernetes-action: delete x-kubernetes-group-version-kind: group: autoscaling kind: HorizontalPodAutoscaler version: v1 get: consumes: - "*/*" description: read the specified HorizontalPodAutoscaler operationId: readAutoscalingV1NamespacedHorizontalPodAutoscaler parameters: - description: Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. in: query name: exact type: boolean uniqueItems: true - description: Should this value be exported. Export strips fields that a user can not specify. in: query name: export type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler" "401": description: Unauthorized schemes: - https tags: - autoscaling_v1 x-kubernetes-action: get x-kubernetes-group-version-kind: group: autoscaling kind: HorizontalPodAutoscaler version: v1 parameters: - description: name of the HorizontalPodAutoscaler in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true patch: consumes: - application/json-patch+json - application/merge-patch+json - application/strategic-merge-patch+json description: partially update the specified HorizontalPodAutoscaler operationId: patchAutoscalingV1NamespacedHorizontalPodAutoscaler parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler" "401": description: Unauthorized schemes: - https tags: - autoscaling_v1 x-kubernetes-action: patch x-kubernetes-group-version-kind: group: autoscaling kind: HorizontalPodAutoscaler version: v1 put: consumes: - "*/*" description: replace the specified HorizontalPodAutoscaler operationId: replaceAutoscalingV1NamespacedHorizontalPodAutoscaler parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler" "401": description: Unauthorized schemes: - https tags: - autoscaling_v1 x-kubernetes-action: put x-kubernetes-group-version-kind: group: autoscaling kind: HorizontalPodAutoscaler version: v1 "/apis/autoscaling/v1/namespaces/{namespace}/horizontalpodautoscalers/{name}/status": get: consumes: - "*/*" description: read status of the specified HorizontalPodAutoscaler operationId: readAutoscalingV1NamespacedHorizontalPodAutoscalerStatus produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler" "401": description: Unauthorized schemes: - https tags: - autoscaling_v1 x-kubernetes-action: get x-kubernetes-group-version-kind: group: autoscaling kind: HorizontalPodAutoscaler version: v1 parameters: - description: name of the HorizontalPodAutoscaler in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true patch: consumes: - application/json-patch+json - application/merge-patch+json - application/strategic-merge-patch+json description: partially update status of the specified HorizontalPodAutoscaler operationId: patchAutoscalingV1NamespacedHorizontalPodAutoscalerStatus parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler" "401": description: Unauthorized schemes: - https tags: - autoscaling_v1 x-kubernetes-action: patch x-kubernetes-group-version-kind: group: autoscaling kind: HorizontalPodAutoscaler version: v1 put: consumes: - "*/*" description: replace status of the specified HorizontalPodAutoscaler operationId: replaceAutoscalingV1NamespacedHorizontalPodAutoscalerStatus parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler" "401": description: Unauthorized schemes: - https tags: - autoscaling_v1 x-kubernetes-action: put x-kubernetes-group-version-kind: group: autoscaling kind: HorizontalPodAutoscaler version: v1 /apis/autoscaling/v1/watch/horizontalpodautoscalers: get: consumes: - "*/*" description: watch individual changes to a list of HorizontalPodAutoscaler operationId: watchAutoscalingV1HorizontalPodAutoscalerListForAllNamespaces produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - autoscaling_v1 x-kubernetes-action: watchlist x-kubernetes-group-version-kind: group: autoscaling kind: HorizontalPodAutoscaler version: v1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true "/apis/autoscaling/v1/watch/namespaces/{namespace}/horizontalpodautoscalers": get: consumes: - "*/*" description: watch individual changes to a list of HorizontalPodAutoscaler operationId: watchAutoscalingV1NamespacedHorizontalPodAutoscalerList produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - autoscaling_v1 x-kubernetes-action: watchlist x-kubernetes-group-version-kind: group: autoscaling kind: HorizontalPodAutoscaler version: v1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true "/apis/autoscaling/v1/watch/namespaces/{namespace}/horizontalpodautoscalers/{name}": get: consumes: - "*/*" description: watch changes to an object of kind HorizontalPodAutoscaler operationId: watchAutoscalingV1NamespacedHorizontalPodAutoscaler produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - autoscaling_v1 x-kubernetes-action: watch x-kubernetes-group-version-kind: group: autoscaling kind: HorizontalPodAutoscaler version: v1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: name of the HorizontalPodAutoscaler in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true /apis/autoscaling/v2beta1/: get: consumes: - application/json - application/yaml - application/vnd.kubernetes.protobuf description: get available resources operationId: getAutoscalingV2beta1APIResources produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList" "401": description: Unauthorized schemes: - https tags: - autoscaling_v2beta1 /apis/autoscaling/v2beta1/horizontalpodautoscalers: get: consumes: - "*/*" description: list or watch objects of kind HorizontalPodAutoscaler operationId: listAutoscalingV2beta1HorizontalPodAutoscalerForAllNamespaces produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscalerList" "401": description: Unauthorized schemes: - https tags: - autoscaling_v2beta1 x-kubernetes-action: list x-kubernetes-group-version-kind: group: autoscaling kind: HorizontalPodAutoscaler version: v2beta1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true "/apis/autoscaling/v2beta1/namespaces/{namespace}/horizontalpodautoscalers": delete: consumes: - "*/*" description: delete collection of HorizontalPodAutoscaler operationId: deleteAutoscalingV2beta1CollectionNamespacedHorizontalPodAutoscaler parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - autoscaling_v2beta1 x-kubernetes-action: deletecollection x-kubernetes-group-version-kind: group: autoscaling kind: HorizontalPodAutoscaler version: v2beta1 get: consumes: - "*/*" description: list or watch objects of kind HorizontalPodAutoscaler operationId: listAutoscalingV2beta1NamespacedHorizontalPodAutoscaler parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscalerList" "401": description: Unauthorized schemes: - https tags: - autoscaling_v2beta1 x-kubernetes-action: list x-kubernetes-group-version-kind: group: autoscaling kind: HorizontalPodAutoscaler version: v2beta1 parameters: - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true post: consumes: - "*/*" description: create a HorizontalPodAutoscaler operationId: createAutoscalingV2beta1NamespacedHorizontalPodAutoscaler parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscaler" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscaler" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscaler" "202": description: Accepted schema: $ref: "#/definitions/io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscaler" "401": description: Unauthorized schemes: - https tags: - autoscaling_v2beta1 x-kubernetes-action: post x-kubernetes-group-version-kind: group: autoscaling kind: HorizontalPodAutoscaler version: v2beta1 "/apis/autoscaling/v2beta1/namespaces/{namespace}/horizontalpodautoscalers/{name}": delete: consumes: - "*/*" description: delete a HorizontalPodAutoscaler operationId: deleteAutoscalingV2beta1NamespacedHorizontalPodAutoscaler parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" - description: The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. in: query name: gracePeriodSeconds type: integer uniqueItems: true - description: "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both." in: query name: orphanDependents type: boolean uniqueItems: true - description: "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground." in: query name: propagationPolicy type: string uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - autoscaling_v2beta1 x-kubernetes-action: delete x-kubernetes-group-version-kind: group: autoscaling kind: HorizontalPodAutoscaler version: v2beta1 get: consumes: - "*/*" description: read the specified HorizontalPodAutoscaler operationId: readAutoscalingV2beta1NamespacedHorizontalPodAutoscaler parameters: - description: Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. in: query name: exact type: boolean uniqueItems: true - description: Should this value be exported. Export strips fields that a user can not specify. in: query name: export type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscaler" "401": description: Unauthorized schemes: - https tags: - autoscaling_v2beta1 x-kubernetes-action: get x-kubernetes-group-version-kind: group: autoscaling kind: HorizontalPodAutoscaler version: v2beta1 parameters: - description: name of the HorizontalPodAutoscaler in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true patch: consumes: - application/json-patch+json - application/merge-patch+json - application/strategic-merge-patch+json description: partially update the specified HorizontalPodAutoscaler operationId: patchAutoscalingV2beta1NamespacedHorizontalPodAutoscaler parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscaler" "401": description: Unauthorized schemes: - https tags: - autoscaling_v2beta1 x-kubernetes-action: patch x-kubernetes-group-version-kind: group: autoscaling kind: HorizontalPodAutoscaler version: v2beta1 put: consumes: - "*/*" description: replace the specified HorizontalPodAutoscaler operationId: replaceAutoscalingV2beta1NamespacedHorizontalPodAutoscaler parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscaler" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscaler" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscaler" "401": description: Unauthorized schemes: - https tags: - autoscaling_v2beta1 x-kubernetes-action: put x-kubernetes-group-version-kind: group: autoscaling kind: HorizontalPodAutoscaler version: v2beta1 "/apis/autoscaling/v2beta1/namespaces/{namespace}/horizontalpodautoscalers/{name}/status": get: consumes: - "*/*" description: read status of the specified HorizontalPodAutoscaler operationId: readAutoscalingV2beta1NamespacedHorizontalPodAutoscalerStatus produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscaler" "401": description: Unauthorized schemes: - https tags: - autoscaling_v2beta1 x-kubernetes-action: get x-kubernetes-group-version-kind: group: autoscaling kind: HorizontalPodAutoscaler version: v2beta1 parameters: - description: name of the HorizontalPodAutoscaler in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true patch: consumes: - application/json-patch+json - application/merge-patch+json - application/strategic-merge-patch+json description: partially update status of the specified HorizontalPodAutoscaler operationId: patchAutoscalingV2beta1NamespacedHorizontalPodAutoscalerStatus parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscaler" "401": description: Unauthorized schemes: - https tags: - autoscaling_v2beta1 x-kubernetes-action: patch x-kubernetes-group-version-kind: group: autoscaling kind: HorizontalPodAutoscaler version: v2beta1 put: consumes: - "*/*" description: replace status of the specified HorizontalPodAutoscaler operationId: replaceAutoscalingV2beta1NamespacedHorizontalPodAutoscalerStatus parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscaler" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscaler" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscaler" "401": description: Unauthorized schemes: - https tags: - autoscaling_v2beta1 x-kubernetes-action: put x-kubernetes-group-version-kind: group: autoscaling kind: HorizontalPodAutoscaler version: v2beta1 /apis/autoscaling/v2beta1/watch/horizontalpodautoscalers: get: consumes: - "*/*" description: watch individual changes to a list of HorizontalPodAutoscaler operationId: watchAutoscalingV2beta1HorizontalPodAutoscalerListForAllNamespaces produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - autoscaling_v2beta1 x-kubernetes-action: watchlist x-kubernetes-group-version-kind: group: autoscaling kind: HorizontalPodAutoscaler version: v2beta1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true "/apis/autoscaling/v2beta1/watch/namespaces/{namespace}/horizontalpodautoscalers": get: consumes: - "*/*" description: watch individual changes to a list of HorizontalPodAutoscaler operationId: watchAutoscalingV2beta1NamespacedHorizontalPodAutoscalerList produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - autoscaling_v2beta1 x-kubernetes-action: watchlist x-kubernetes-group-version-kind: group: autoscaling kind: HorizontalPodAutoscaler version: v2beta1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true "/apis/autoscaling/v2beta1/watch/namespaces/{namespace}/horizontalpodautoscalers/{name}": get: consumes: - "*/*" description: watch changes to an object of kind HorizontalPodAutoscaler operationId: watchAutoscalingV2beta1NamespacedHorizontalPodAutoscaler produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - autoscaling_v2beta1 x-kubernetes-action: watch x-kubernetes-group-version-kind: group: autoscaling kind: HorizontalPodAutoscaler version: v2beta1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: name of the HorizontalPodAutoscaler in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true /apis/batch/: get: consumes: - application/json - application/yaml - application/vnd.kubernetes.protobuf description: get information of a group operationId: getBatchAPIGroup produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup" "401": description: Unauthorized schemes: - https tags: - batch /apis/batch/v1/: get: consumes: - application/json - application/yaml - application/vnd.kubernetes.protobuf description: get available resources operationId: getBatchV1APIResources produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList" "401": description: Unauthorized schemes: - https tags: - batch_v1 /apis/batch/v1/jobs: get: consumes: - "*/*" description: list or watch objects of kind Job operationId: listBatchV1JobForAllNamespaces produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.batch.v1.JobList" "401": description: Unauthorized schemes: - https tags: - batch_v1 x-kubernetes-action: list x-kubernetes-group-version-kind: group: batch kind: Job version: v1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true "/apis/batch/v1/namespaces/{namespace}/jobs": delete: consumes: - "*/*" description: delete collection of Job operationId: deleteBatchV1CollectionNamespacedJob parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - batch_v1 x-kubernetes-action: deletecollection x-kubernetes-group-version-kind: group: batch kind: Job version: v1 get: consumes: - "*/*" description: list or watch objects of kind Job operationId: listBatchV1NamespacedJob parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.batch.v1.JobList" "401": description: Unauthorized schemes: - https tags: - batch_v1 x-kubernetes-action: list x-kubernetes-group-version-kind: group: batch kind: Job version: v1 parameters: - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true post: consumes: - "*/*" description: create a Job operationId: createBatchV1NamespacedJob parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.batch.v1.Job" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.batch.v1.Job" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.batch.v1.Job" "202": description: Accepted schema: $ref: "#/definitions/io.k8s.api.batch.v1.Job" "401": description: Unauthorized schemes: - https tags: - batch_v1 x-kubernetes-action: post x-kubernetes-group-version-kind: group: batch kind: Job version: v1 "/apis/batch/v1/namespaces/{namespace}/jobs/{name}": delete: consumes: - "*/*" description: delete a Job operationId: deleteBatchV1NamespacedJob parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" - description: The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. in: query name: gracePeriodSeconds type: integer uniqueItems: true - description: "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both." in: query name: orphanDependents type: boolean uniqueItems: true - description: "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground." in: query name: propagationPolicy type: string uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - batch_v1 x-kubernetes-action: delete x-kubernetes-group-version-kind: group: batch kind: Job version: v1 get: consumes: - "*/*" description: read the specified Job operationId: readBatchV1NamespacedJob parameters: - description: Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. in: query name: exact type: boolean uniqueItems: true - description: Should this value be exported. Export strips fields that a user can not specify. in: query name: export type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.batch.v1.Job" "401": description: Unauthorized schemes: - https tags: - batch_v1 x-kubernetes-action: get x-kubernetes-group-version-kind: group: batch kind: Job version: v1 parameters: - description: name of the Job in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true patch: consumes: - application/json-patch+json - application/merge-patch+json - application/strategic-merge-patch+json description: partially update the specified Job operationId: patchBatchV1NamespacedJob parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.batch.v1.Job" "401": description: Unauthorized schemes: - https tags: - batch_v1 x-kubernetes-action: patch x-kubernetes-group-version-kind: group: batch kind: Job version: v1 put: consumes: - "*/*" description: replace the specified Job operationId: replaceBatchV1NamespacedJob parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.batch.v1.Job" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.batch.v1.Job" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.batch.v1.Job" "401": description: Unauthorized schemes: - https tags: - batch_v1 x-kubernetes-action: put x-kubernetes-group-version-kind: group: batch kind: Job version: v1 "/apis/batch/v1/namespaces/{namespace}/jobs/{name}/status": get: consumes: - "*/*" description: read status of the specified Job operationId: readBatchV1NamespacedJobStatus produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.batch.v1.Job" "401": description: Unauthorized schemes: - https tags: - batch_v1 x-kubernetes-action: get x-kubernetes-group-version-kind: group: batch kind: Job version: v1 parameters: - description: name of the Job in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true patch: consumes: - application/json-patch+json - application/merge-patch+json - application/strategic-merge-patch+json description: partially update status of the specified Job operationId: patchBatchV1NamespacedJobStatus parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.batch.v1.Job" "401": description: Unauthorized schemes: - https tags: - batch_v1 x-kubernetes-action: patch x-kubernetes-group-version-kind: group: batch kind: Job version: v1 put: consumes: - "*/*" description: replace status of the specified Job operationId: replaceBatchV1NamespacedJobStatus parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.batch.v1.Job" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.batch.v1.Job" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.batch.v1.Job" "401": description: Unauthorized schemes: - https tags: - batch_v1 x-kubernetes-action: put x-kubernetes-group-version-kind: group: batch kind: Job version: v1 /apis/batch/v1/watch/jobs: get: consumes: - "*/*" description: watch individual changes to a list of Job operationId: watchBatchV1JobListForAllNamespaces produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - batch_v1 x-kubernetes-action: watchlist x-kubernetes-group-version-kind: group: batch kind: Job version: v1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true "/apis/batch/v1/watch/namespaces/{namespace}/jobs": get: consumes: - "*/*" description: watch individual changes to a list of Job operationId: watchBatchV1NamespacedJobList produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - batch_v1 x-kubernetes-action: watchlist x-kubernetes-group-version-kind: group: batch kind: Job version: v1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true "/apis/batch/v1/watch/namespaces/{namespace}/jobs/{name}": get: consumes: - "*/*" description: watch changes to an object of kind Job operationId: watchBatchV1NamespacedJob produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - batch_v1 x-kubernetes-action: watch x-kubernetes-group-version-kind: group: batch kind: Job version: v1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: name of the Job in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true /apis/batch/v1beta1/: get: consumes: - application/json - application/yaml - application/vnd.kubernetes.protobuf description: get available resources operationId: getBatchV1beta1APIResources produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList" "401": description: Unauthorized schemes: - https tags: - batch_v1beta1 /apis/batch/v1beta1/cronjobs: get: consumes: - "*/*" description: list or watch objects of kind CronJob operationId: listBatchV1beta1CronJobForAllNamespaces produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.batch.v1beta1.CronJobList" "401": description: Unauthorized schemes: - https tags: - batch_v1beta1 x-kubernetes-action: list x-kubernetes-group-version-kind: group: batch kind: CronJob version: v1beta1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true "/apis/batch/v1beta1/namespaces/{namespace}/cronjobs": delete: consumes: - "*/*" description: delete collection of CronJob operationId: deleteBatchV1beta1CollectionNamespacedCronJob parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - batch_v1beta1 x-kubernetes-action: deletecollection x-kubernetes-group-version-kind: group: batch kind: CronJob version: v1beta1 get: consumes: - "*/*" description: list or watch objects of kind CronJob operationId: listBatchV1beta1NamespacedCronJob parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.batch.v1beta1.CronJobList" "401": description: Unauthorized schemes: - https tags: - batch_v1beta1 x-kubernetes-action: list x-kubernetes-group-version-kind: group: batch kind: CronJob version: v1beta1 parameters: - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true post: consumes: - "*/*" description: create a CronJob operationId: createBatchV1beta1NamespacedCronJob parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.batch.v1beta1.CronJob" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.batch.v1beta1.CronJob" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.batch.v1beta1.CronJob" "202": description: Accepted schema: $ref: "#/definitions/io.k8s.api.batch.v1beta1.CronJob" "401": description: Unauthorized schemes: - https tags: - batch_v1beta1 x-kubernetes-action: post x-kubernetes-group-version-kind: group: batch kind: CronJob version: v1beta1 "/apis/batch/v1beta1/namespaces/{namespace}/cronjobs/{name}": delete: consumes: - "*/*" description: delete a CronJob operationId: deleteBatchV1beta1NamespacedCronJob parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" - description: The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. in: query name: gracePeriodSeconds type: integer uniqueItems: true - description: "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both." in: query name: orphanDependents type: boolean uniqueItems: true - description: "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground." in: query name: propagationPolicy type: string uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - batch_v1beta1 x-kubernetes-action: delete x-kubernetes-group-version-kind: group: batch kind: CronJob version: v1beta1 get: consumes: - "*/*" description: read the specified CronJob operationId: readBatchV1beta1NamespacedCronJob parameters: - description: Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. in: query name: exact type: boolean uniqueItems: true - description: Should this value be exported. Export strips fields that a user can not specify. in: query name: export type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.batch.v1beta1.CronJob" "401": description: Unauthorized schemes: - https tags: - batch_v1beta1 x-kubernetes-action: get x-kubernetes-group-version-kind: group: batch kind: CronJob version: v1beta1 parameters: - description: name of the CronJob in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true patch: consumes: - application/json-patch+json - application/merge-patch+json - application/strategic-merge-patch+json description: partially update the specified CronJob operationId: patchBatchV1beta1NamespacedCronJob parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.batch.v1beta1.CronJob" "401": description: Unauthorized schemes: - https tags: - batch_v1beta1 x-kubernetes-action: patch x-kubernetes-group-version-kind: group: batch kind: CronJob version: v1beta1 put: consumes: - "*/*" description: replace the specified CronJob operationId: replaceBatchV1beta1NamespacedCronJob parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.batch.v1beta1.CronJob" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.batch.v1beta1.CronJob" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.batch.v1beta1.CronJob" "401": description: Unauthorized schemes: - https tags: - batch_v1beta1 x-kubernetes-action: put x-kubernetes-group-version-kind: group: batch kind: CronJob version: v1beta1 "/apis/batch/v1beta1/namespaces/{namespace}/cronjobs/{name}/status": get: consumes: - "*/*" description: read status of the specified CronJob operationId: readBatchV1beta1NamespacedCronJobStatus produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.batch.v1beta1.CronJob" "401": description: Unauthorized schemes: - https tags: - batch_v1beta1 x-kubernetes-action: get x-kubernetes-group-version-kind: group: batch kind: CronJob version: v1beta1 parameters: - description: name of the CronJob in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true patch: consumes: - application/json-patch+json - application/merge-patch+json - application/strategic-merge-patch+json description: partially update status of the specified CronJob operationId: patchBatchV1beta1NamespacedCronJobStatus parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.batch.v1beta1.CronJob" "401": description: Unauthorized schemes: - https tags: - batch_v1beta1 x-kubernetes-action: patch x-kubernetes-group-version-kind: group: batch kind: CronJob version: v1beta1 put: consumes: - "*/*" description: replace status of the specified CronJob operationId: replaceBatchV1beta1NamespacedCronJobStatus parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.batch.v1beta1.CronJob" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.batch.v1beta1.CronJob" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.batch.v1beta1.CronJob" "401": description: Unauthorized schemes: - https tags: - batch_v1beta1 x-kubernetes-action: put x-kubernetes-group-version-kind: group: batch kind: CronJob version: v1beta1 /apis/batch/v1beta1/watch/cronjobs: get: consumes: - "*/*" description: watch individual changes to a list of CronJob operationId: watchBatchV1beta1CronJobListForAllNamespaces produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - batch_v1beta1 x-kubernetes-action: watchlist x-kubernetes-group-version-kind: group: batch kind: CronJob version: v1beta1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true "/apis/batch/v1beta1/watch/namespaces/{namespace}/cronjobs": get: consumes: - "*/*" description: watch individual changes to a list of CronJob operationId: watchBatchV1beta1NamespacedCronJobList produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - batch_v1beta1 x-kubernetes-action: watchlist x-kubernetes-group-version-kind: group: batch kind: CronJob version: v1beta1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true "/apis/batch/v1beta1/watch/namespaces/{namespace}/cronjobs/{name}": get: consumes: - "*/*" description: watch changes to an object of kind CronJob operationId: watchBatchV1beta1NamespacedCronJob produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - batch_v1beta1 x-kubernetes-action: watch x-kubernetes-group-version-kind: group: batch kind: CronJob version: v1beta1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: name of the CronJob in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true /apis/batch/v2alpha1/: get: consumes: - application/json - application/yaml - application/vnd.kubernetes.protobuf description: get available resources operationId: getBatchV2alpha1APIResources produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList" "401": description: Unauthorized schemes: - https tags: - batch_v2alpha1 /apis/batch/v2alpha1/cronjobs: get: consumes: - "*/*" description: list or watch objects of kind CronJob operationId: listBatchV2alpha1CronJobForAllNamespaces produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.batch.v2alpha1.CronJobList" "401": description: Unauthorized schemes: - https tags: - batch_v2alpha1 x-kubernetes-action: list x-kubernetes-group-version-kind: group: batch kind: CronJob version: v2alpha1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true "/apis/batch/v2alpha1/namespaces/{namespace}/cronjobs": delete: consumes: - "*/*" description: delete collection of CronJob operationId: deleteBatchV2alpha1CollectionNamespacedCronJob parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - batch_v2alpha1 x-kubernetes-action: deletecollection x-kubernetes-group-version-kind: group: batch kind: CronJob version: v2alpha1 get: consumes: - "*/*" description: list or watch objects of kind CronJob operationId: listBatchV2alpha1NamespacedCronJob parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.batch.v2alpha1.CronJobList" "401": description: Unauthorized schemes: - https tags: - batch_v2alpha1 x-kubernetes-action: list x-kubernetes-group-version-kind: group: batch kind: CronJob version: v2alpha1 parameters: - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true post: consumes: - "*/*" description: create a CronJob operationId: createBatchV2alpha1NamespacedCronJob parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.batch.v2alpha1.CronJob" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.batch.v2alpha1.CronJob" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.batch.v2alpha1.CronJob" "202": description: Accepted schema: $ref: "#/definitions/io.k8s.api.batch.v2alpha1.CronJob" "401": description: Unauthorized schemes: - https tags: - batch_v2alpha1 x-kubernetes-action: post x-kubernetes-group-version-kind: group: batch kind: CronJob version: v2alpha1 "/apis/batch/v2alpha1/namespaces/{namespace}/cronjobs/{name}": delete: consumes: - "*/*" description: delete a CronJob operationId: deleteBatchV2alpha1NamespacedCronJob parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" - description: The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. in: query name: gracePeriodSeconds type: integer uniqueItems: true - description: "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both." in: query name: orphanDependents type: boolean uniqueItems: true - description: "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground." in: query name: propagationPolicy type: string uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - batch_v2alpha1 x-kubernetes-action: delete x-kubernetes-group-version-kind: group: batch kind: CronJob version: v2alpha1 get: consumes: - "*/*" description: read the specified CronJob operationId: readBatchV2alpha1NamespacedCronJob parameters: - description: Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. in: query name: exact type: boolean uniqueItems: true - description: Should this value be exported. Export strips fields that a user can not specify. in: query name: export type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.batch.v2alpha1.CronJob" "401": description: Unauthorized schemes: - https tags: - batch_v2alpha1 x-kubernetes-action: get x-kubernetes-group-version-kind: group: batch kind: CronJob version: v2alpha1 parameters: - description: name of the CronJob in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true patch: consumes: - application/json-patch+json - application/merge-patch+json - application/strategic-merge-patch+json description: partially update the specified CronJob operationId: patchBatchV2alpha1NamespacedCronJob parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.batch.v2alpha1.CronJob" "401": description: Unauthorized schemes: - https tags: - batch_v2alpha1 x-kubernetes-action: patch x-kubernetes-group-version-kind: group: batch kind: CronJob version: v2alpha1 put: consumes: - "*/*" description: replace the specified CronJob operationId: replaceBatchV2alpha1NamespacedCronJob parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.batch.v2alpha1.CronJob" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.batch.v2alpha1.CronJob" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.batch.v2alpha1.CronJob" "401": description: Unauthorized schemes: - https tags: - batch_v2alpha1 x-kubernetes-action: put x-kubernetes-group-version-kind: group: batch kind: CronJob version: v2alpha1 "/apis/batch/v2alpha1/namespaces/{namespace}/cronjobs/{name}/status": get: consumes: - "*/*" description: read status of the specified CronJob operationId: readBatchV2alpha1NamespacedCronJobStatus produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.batch.v2alpha1.CronJob" "401": description: Unauthorized schemes: - https tags: - batch_v2alpha1 x-kubernetes-action: get x-kubernetes-group-version-kind: group: batch kind: CronJob version: v2alpha1 parameters: - description: name of the CronJob in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true patch: consumes: - application/json-patch+json - application/merge-patch+json - application/strategic-merge-patch+json description: partially update status of the specified CronJob operationId: patchBatchV2alpha1NamespacedCronJobStatus parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.batch.v2alpha1.CronJob" "401": description: Unauthorized schemes: - https tags: - batch_v2alpha1 x-kubernetes-action: patch x-kubernetes-group-version-kind: group: batch kind: CronJob version: v2alpha1 put: consumes: - "*/*" description: replace status of the specified CronJob operationId: replaceBatchV2alpha1NamespacedCronJobStatus parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.batch.v2alpha1.CronJob" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.batch.v2alpha1.CronJob" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.batch.v2alpha1.CronJob" "401": description: Unauthorized schemes: - https tags: - batch_v2alpha1 x-kubernetes-action: put x-kubernetes-group-version-kind: group: batch kind: CronJob version: v2alpha1 /apis/batch/v2alpha1/watch/cronjobs: get: consumes: - "*/*" description: watch individual changes to a list of CronJob operationId: watchBatchV2alpha1CronJobListForAllNamespaces produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - batch_v2alpha1 x-kubernetes-action: watchlist x-kubernetes-group-version-kind: group: batch kind: CronJob version: v2alpha1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true "/apis/batch/v2alpha1/watch/namespaces/{namespace}/cronjobs": get: consumes: - "*/*" description: watch individual changes to a list of CronJob operationId: watchBatchV2alpha1NamespacedCronJobList produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - batch_v2alpha1 x-kubernetes-action: watchlist x-kubernetes-group-version-kind: group: batch kind: CronJob version: v2alpha1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true "/apis/batch/v2alpha1/watch/namespaces/{namespace}/cronjobs/{name}": get: consumes: - "*/*" description: watch changes to an object of kind CronJob operationId: watchBatchV2alpha1NamespacedCronJob produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - batch_v2alpha1 x-kubernetes-action: watch x-kubernetes-group-version-kind: group: batch kind: CronJob version: v2alpha1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: name of the CronJob in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true /apis/certificates.k8s.io/: get: consumes: - application/json - application/yaml - application/vnd.kubernetes.protobuf description: get information of a group operationId: getCertificatesAPIGroup produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup" "401": description: Unauthorized schemes: - https tags: - certificates /apis/certificates.k8s.io/v1beta1/: get: consumes: - application/json - application/yaml - application/vnd.kubernetes.protobuf description: get available resources operationId: getCertificatesV1beta1APIResources produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList" "401": description: Unauthorized schemes: - https tags: - certificates_v1beta1 /apis/certificates.k8s.io/v1beta1/certificatesigningrequests: delete: consumes: - "*/*" description: delete collection of CertificateSigningRequest operationId: deleteCertificatesV1beta1CollectionCertificateSigningRequest parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - certificates_v1beta1 x-kubernetes-action: deletecollection x-kubernetes-group-version-kind: group: certificates.k8s.io kind: CertificateSigningRequest version: v1beta1 get: consumes: - "*/*" description: list or watch objects of kind CertificateSigningRequest operationId: listCertificatesV1beta1CertificateSigningRequest parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.certificates.v1beta1.CertificateSigningRequestList" "401": description: Unauthorized schemes: - https tags: - certificates_v1beta1 x-kubernetes-action: list x-kubernetes-group-version-kind: group: certificates.k8s.io kind: CertificateSigningRequest version: v1beta1 parameters: - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true post: consumes: - "*/*" description: create a CertificateSigningRequest operationId: createCertificatesV1beta1CertificateSigningRequest parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.certificates.v1beta1.CertificateSigningRequest" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.certificates.v1beta1.CertificateSigningRequest" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.certificates.v1beta1.CertificateSigningRequest" "202": description: Accepted schema: $ref: "#/definitions/io.k8s.api.certificates.v1beta1.CertificateSigningRequest" "401": description: Unauthorized schemes: - https tags: - certificates_v1beta1 x-kubernetes-action: post x-kubernetes-group-version-kind: group: certificates.k8s.io kind: CertificateSigningRequest version: v1beta1 "/apis/certificates.k8s.io/v1beta1/certificatesigningrequests/{name}": delete: consumes: - "*/*" description: delete a CertificateSigningRequest operationId: deleteCertificatesV1beta1CertificateSigningRequest parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" - description: The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. in: query name: gracePeriodSeconds type: integer uniqueItems: true - description: "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both." in: query name: orphanDependents type: boolean uniqueItems: true - description: "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground." in: query name: propagationPolicy type: string uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - certificates_v1beta1 x-kubernetes-action: delete x-kubernetes-group-version-kind: group: certificates.k8s.io kind: CertificateSigningRequest version: v1beta1 get: consumes: - "*/*" description: read the specified CertificateSigningRequest operationId: readCertificatesV1beta1CertificateSigningRequest parameters: - description: Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. in: query name: exact type: boolean uniqueItems: true - description: Should this value be exported. Export strips fields that a user can not specify. in: query name: export type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.certificates.v1beta1.CertificateSigningRequest" "401": description: Unauthorized schemes: - https tags: - certificates_v1beta1 x-kubernetes-action: get x-kubernetes-group-version-kind: group: certificates.k8s.io kind: CertificateSigningRequest version: v1beta1 parameters: - description: name of the CertificateSigningRequest in: path name: name required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true patch: consumes: - application/json-patch+json - application/merge-patch+json - application/strategic-merge-patch+json description: partially update the specified CertificateSigningRequest operationId: patchCertificatesV1beta1CertificateSigningRequest parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.certificates.v1beta1.CertificateSigningRequest" "401": description: Unauthorized schemes: - https tags: - certificates_v1beta1 x-kubernetes-action: patch x-kubernetes-group-version-kind: group: certificates.k8s.io kind: CertificateSigningRequest version: v1beta1 put: consumes: - "*/*" description: replace the specified CertificateSigningRequest operationId: replaceCertificatesV1beta1CertificateSigningRequest parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.certificates.v1beta1.CertificateSigningRequest" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.certificates.v1beta1.CertificateSigningRequest" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.certificates.v1beta1.CertificateSigningRequest" "401": description: Unauthorized schemes: - https tags: - certificates_v1beta1 x-kubernetes-action: put x-kubernetes-group-version-kind: group: certificates.k8s.io kind: CertificateSigningRequest version: v1beta1 "/apis/certificates.k8s.io/v1beta1/certificatesigningrequests/{name}/approval": parameters: - description: name of the CertificateSigningRequest in: path name: name required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true put: consumes: - "*/*" description: replace approval of the specified CertificateSigningRequest operationId: replaceCertificatesV1beta1CertificateSigningRequestApproval parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.certificates.v1beta1.CertificateSigningRequest" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.certificates.v1beta1.CertificateSigningRequest" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.certificates.v1beta1.CertificateSigningRequest" "401": description: Unauthorized schemes: - https tags: - certificates_v1beta1 x-kubernetes-action: put x-kubernetes-group-version-kind: group: certificates.k8s.io kind: CertificateSigningRequest version: v1beta1 "/apis/certificates.k8s.io/v1beta1/certificatesigningrequests/{name}/status": parameters: - description: name of the CertificateSigningRequest in: path name: name required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true put: consumes: - "*/*" description: replace status of the specified CertificateSigningRequest operationId: replaceCertificatesV1beta1CertificateSigningRequestStatus parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.certificates.v1beta1.CertificateSigningRequest" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.certificates.v1beta1.CertificateSigningRequest" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.certificates.v1beta1.CertificateSigningRequest" "401": description: Unauthorized schemes: - https tags: - certificates_v1beta1 x-kubernetes-action: put x-kubernetes-group-version-kind: group: certificates.k8s.io kind: CertificateSigningRequest version: v1beta1 /apis/certificates.k8s.io/v1beta1/watch/certificatesigningrequests: get: consumes: - "*/*" description: watch individual changes to a list of CertificateSigningRequest operationId: watchCertificatesV1beta1CertificateSigningRequestList produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - certificates_v1beta1 x-kubernetes-action: watchlist x-kubernetes-group-version-kind: group: certificates.k8s.io kind: CertificateSigningRequest version: v1beta1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true "/apis/certificates.k8s.io/v1beta1/watch/certificatesigningrequests/{name}": get: consumes: - "*/*" description: watch changes to an object of kind CertificateSigningRequest operationId: watchCertificatesV1beta1CertificateSigningRequest produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - certificates_v1beta1 x-kubernetes-action: watch x-kubernetes-group-version-kind: group: certificates.k8s.io kind: CertificateSigningRequest version: v1beta1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: name of the CertificateSigningRequest in: path name: name required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true /apis/events.k8s.io/: get: consumes: - application/json - application/yaml - application/vnd.kubernetes.protobuf description: get information of a group operationId: getEventsAPIGroup produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup" "401": description: Unauthorized schemes: - https tags: - events /apis/events.k8s.io/v1beta1/: get: consumes: - application/json - application/yaml - application/vnd.kubernetes.protobuf description: get available resources operationId: getEventsV1beta1APIResources produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList" "401": description: Unauthorized schemes: - https tags: - events_v1beta1 /apis/events.k8s.io/v1beta1/events: get: consumes: - "*/*" description: list or watch objects of kind Event operationId: listEventsV1beta1EventForAllNamespaces produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.events.v1beta1.EventList" "401": description: Unauthorized schemes: - https tags: - events_v1beta1 x-kubernetes-action: list x-kubernetes-group-version-kind: group: events.k8s.io kind: Event version: v1beta1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true "/apis/events.k8s.io/v1beta1/namespaces/{namespace}/events": delete: consumes: - "*/*" description: delete collection of Event operationId: deleteEventsV1beta1CollectionNamespacedEvent parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - events_v1beta1 x-kubernetes-action: deletecollection x-kubernetes-group-version-kind: group: events.k8s.io kind: Event version: v1beta1 get: consumes: - "*/*" description: list or watch objects of kind Event operationId: listEventsV1beta1NamespacedEvent parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.events.v1beta1.EventList" "401": description: Unauthorized schemes: - https tags: - events_v1beta1 x-kubernetes-action: list x-kubernetes-group-version-kind: group: events.k8s.io kind: Event version: v1beta1 parameters: - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true post: consumes: - "*/*" description: create an Event operationId: createEventsV1beta1NamespacedEvent parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.events.v1beta1.Event" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.events.v1beta1.Event" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.events.v1beta1.Event" "202": description: Accepted schema: $ref: "#/definitions/io.k8s.api.events.v1beta1.Event" "401": description: Unauthorized schemes: - https tags: - events_v1beta1 x-kubernetes-action: post x-kubernetes-group-version-kind: group: events.k8s.io kind: Event version: v1beta1 "/apis/events.k8s.io/v1beta1/namespaces/{namespace}/events/{name}": delete: consumes: - "*/*" description: delete an Event operationId: deleteEventsV1beta1NamespacedEvent parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" - description: The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. in: query name: gracePeriodSeconds type: integer uniqueItems: true - description: "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both." in: query name: orphanDependents type: boolean uniqueItems: true - description: "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground." in: query name: propagationPolicy type: string uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - events_v1beta1 x-kubernetes-action: delete x-kubernetes-group-version-kind: group: events.k8s.io kind: Event version: v1beta1 get: consumes: - "*/*" description: read the specified Event operationId: readEventsV1beta1NamespacedEvent parameters: - description: Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. in: query name: exact type: boolean uniqueItems: true - description: Should this value be exported. Export strips fields that a user can not specify. in: query name: export type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.events.v1beta1.Event" "401": description: Unauthorized schemes: - https tags: - events_v1beta1 x-kubernetes-action: get x-kubernetes-group-version-kind: group: events.k8s.io kind: Event version: v1beta1 parameters: - description: name of the Event in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true patch: consumes: - application/json-patch+json - application/merge-patch+json - application/strategic-merge-patch+json description: partially update the specified Event operationId: patchEventsV1beta1NamespacedEvent parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.events.v1beta1.Event" "401": description: Unauthorized schemes: - https tags: - events_v1beta1 x-kubernetes-action: patch x-kubernetes-group-version-kind: group: events.k8s.io kind: Event version: v1beta1 put: consumes: - "*/*" description: replace the specified Event operationId: replaceEventsV1beta1NamespacedEvent parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.events.v1beta1.Event" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.events.v1beta1.Event" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.events.v1beta1.Event" "401": description: Unauthorized schemes: - https tags: - events_v1beta1 x-kubernetes-action: put x-kubernetes-group-version-kind: group: events.k8s.io kind: Event version: v1beta1 /apis/events.k8s.io/v1beta1/watch/events: get: consumes: - "*/*" description: watch individual changes to a list of Event operationId: watchEventsV1beta1EventListForAllNamespaces produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - events_v1beta1 x-kubernetes-action: watchlist x-kubernetes-group-version-kind: group: events.k8s.io kind: Event version: v1beta1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true "/apis/events.k8s.io/v1beta1/watch/namespaces/{namespace}/events": get: consumes: - "*/*" description: watch individual changes to a list of Event operationId: watchEventsV1beta1NamespacedEventList produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - events_v1beta1 x-kubernetes-action: watchlist x-kubernetes-group-version-kind: group: events.k8s.io kind: Event version: v1beta1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true "/apis/events.k8s.io/v1beta1/watch/namespaces/{namespace}/events/{name}": get: consumes: - "*/*" description: watch changes to an object of kind Event operationId: watchEventsV1beta1NamespacedEvent produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - events_v1beta1 x-kubernetes-action: watch x-kubernetes-group-version-kind: group: events.k8s.io kind: Event version: v1beta1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: name of the Event in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true /apis/extensions/: get: consumes: - application/json - application/yaml - application/vnd.kubernetes.protobuf description: get information of a group operationId: getExtensionsAPIGroup produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup" "401": description: Unauthorized schemes: - https tags: - extensions /apis/extensions/v1beta1/: get: consumes: - application/json - application/yaml - application/vnd.kubernetes.protobuf description: get available resources operationId: getExtensionsV1beta1APIResources produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList" "401": description: Unauthorized schemes: - https tags: - extensions_v1beta1 /apis/extensions/v1beta1/daemonsets: get: consumes: - "*/*" description: list or watch objects of kind DaemonSet operationId: listExtensionsV1beta1DaemonSetForAllNamespaces produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.DaemonSetList" "401": description: Unauthorized schemes: - https tags: - extensions_v1beta1 x-kubernetes-action: list x-kubernetes-group-version-kind: group: extensions kind: DaemonSet version: v1beta1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true /apis/extensions/v1beta1/deployments: get: consumes: - "*/*" description: list or watch objects of kind Deployment operationId: listExtensionsV1beta1DeploymentForAllNamespaces produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.DeploymentList" "401": description: Unauthorized schemes: - https tags: - extensions_v1beta1 x-kubernetes-action: list x-kubernetes-group-version-kind: group: extensions kind: Deployment version: v1beta1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true /apis/extensions/v1beta1/ingresses: get: consumes: - "*/*" description: list or watch objects of kind Ingress operationId: listExtensionsV1beta1IngressForAllNamespaces produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.IngressList" "401": description: Unauthorized schemes: - https tags: - extensions_v1beta1 x-kubernetes-action: list x-kubernetes-group-version-kind: group: extensions kind: Ingress version: v1beta1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true "/apis/extensions/v1beta1/namespaces/{namespace}/daemonsets": delete: consumes: - "*/*" description: delete collection of DaemonSet operationId: deleteExtensionsV1beta1CollectionNamespacedDaemonSet parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - extensions_v1beta1 x-kubernetes-action: deletecollection x-kubernetes-group-version-kind: group: extensions kind: DaemonSet version: v1beta1 get: consumes: - "*/*" description: list or watch objects of kind DaemonSet operationId: listExtensionsV1beta1NamespacedDaemonSet parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.DaemonSetList" "401": description: Unauthorized schemes: - https tags: - extensions_v1beta1 x-kubernetes-action: list x-kubernetes-group-version-kind: group: extensions kind: DaemonSet version: v1beta1 parameters: - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true post: consumes: - "*/*" description: create a DaemonSet operationId: createExtensionsV1beta1NamespacedDaemonSet parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.DaemonSet" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.DaemonSet" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.DaemonSet" "202": description: Accepted schema: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.DaemonSet" "401": description: Unauthorized schemes: - https tags: - extensions_v1beta1 x-kubernetes-action: post x-kubernetes-group-version-kind: group: extensions kind: DaemonSet version: v1beta1 "/apis/extensions/v1beta1/namespaces/{namespace}/daemonsets/{name}": delete: consumes: - "*/*" description: delete a DaemonSet operationId: deleteExtensionsV1beta1NamespacedDaemonSet parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" - description: The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. in: query name: gracePeriodSeconds type: integer uniqueItems: true - description: "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both." in: query name: orphanDependents type: boolean uniqueItems: true - description: "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground." in: query name: propagationPolicy type: string uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - extensions_v1beta1 x-kubernetes-action: delete x-kubernetes-group-version-kind: group: extensions kind: DaemonSet version: v1beta1 get: consumes: - "*/*" description: read the specified DaemonSet operationId: readExtensionsV1beta1NamespacedDaemonSet parameters: - description: Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. in: query name: exact type: boolean uniqueItems: true - description: Should this value be exported. Export strips fields that a user can not specify. in: query name: export type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.DaemonSet" "401": description: Unauthorized schemes: - https tags: - extensions_v1beta1 x-kubernetes-action: get x-kubernetes-group-version-kind: group: extensions kind: DaemonSet version: v1beta1 parameters: - description: name of the DaemonSet in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true patch: consumes: - application/json-patch+json - application/merge-patch+json - application/strategic-merge-patch+json description: partially update the specified DaemonSet operationId: patchExtensionsV1beta1NamespacedDaemonSet parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.DaemonSet" "401": description: Unauthorized schemes: - https tags: - extensions_v1beta1 x-kubernetes-action: patch x-kubernetes-group-version-kind: group: extensions kind: DaemonSet version: v1beta1 put: consumes: - "*/*" description: replace the specified DaemonSet operationId: replaceExtensionsV1beta1NamespacedDaemonSet parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.DaemonSet" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.DaemonSet" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.DaemonSet" "401": description: Unauthorized schemes: - https tags: - extensions_v1beta1 x-kubernetes-action: put x-kubernetes-group-version-kind: group: extensions kind: DaemonSet version: v1beta1 "/apis/extensions/v1beta1/namespaces/{namespace}/daemonsets/{name}/status": get: consumes: - "*/*" description: read status of the specified DaemonSet operationId: readExtensionsV1beta1NamespacedDaemonSetStatus produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.DaemonSet" "401": description: Unauthorized schemes: - https tags: - extensions_v1beta1 x-kubernetes-action: get x-kubernetes-group-version-kind: group: extensions kind: DaemonSet version: v1beta1 parameters: - description: name of the DaemonSet in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true patch: consumes: - application/json-patch+json - application/merge-patch+json - application/strategic-merge-patch+json description: partially update status of the specified DaemonSet operationId: patchExtensionsV1beta1NamespacedDaemonSetStatus parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.DaemonSet" "401": description: Unauthorized schemes: - https tags: - extensions_v1beta1 x-kubernetes-action: patch x-kubernetes-group-version-kind: group: extensions kind: DaemonSet version: v1beta1 put: consumes: - "*/*" description: replace status of the specified DaemonSet operationId: replaceExtensionsV1beta1NamespacedDaemonSetStatus parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.DaemonSet" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.DaemonSet" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.DaemonSet" "401": description: Unauthorized schemes: - https tags: - extensions_v1beta1 x-kubernetes-action: put x-kubernetes-group-version-kind: group: extensions kind: DaemonSet version: v1beta1 "/apis/extensions/v1beta1/namespaces/{namespace}/deployments": delete: consumes: - "*/*" description: delete collection of Deployment operationId: deleteExtensionsV1beta1CollectionNamespacedDeployment parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - extensions_v1beta1 x-kubernetes-action: deletecollection x-kubernetes-group-version-kind: group: extensions kind: Deployment version: v1beta1 get: consumes: - "*/*" description: list or watch objects of kind Deployment operationId: listExtensionsV1beta1NamespacedDeployment parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.DeploymentList" "401": description: Unauthorized schemes: - https tags: - extensions_v1beta1 x-kubernetes-action: list x-kubernetes-group-version-kind: group: extensions kind: Deployment version: v1beta1 parameters: - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true post: consumes: - "*/*" description: create a Deployment operationId: createExtensionsV1beta1NamespacedDeployment parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.Deployment" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.Deployment" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.Deployment" "202": description: Accepted schema: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.Deployment" "401": description: Unauthorized schemes: - https tags: - extensions_v1beta1 x-kubernetes-action: post x-kubernetes-group-version-kind: group: extensions kind: Deployment version: v1beta1 "/apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name}": delete: consumes: - "*/*" description: delete a Deployment operationId: deleteExtensionsV1beta1NamespacedDeployment parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" - description: The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. in: query name: gracePeriodSeconds type: integer uniqueItems: true - description: "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both." in: query name: orphanDependents type: boolean uniqueItems: true - description: "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground." in: query name: propagationPolicy type: string uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - extensions_v1beta1 x-kubernetes-action: delete x-kubernetes-group-version-kind: group: extensions kind: Deployment version: v1beta1 get: consumes: - "*/*" description: read the specified Deployment operationId: readExtensionsV1beta1NamespacedDeployment parameters: - description: Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. in: query name: exact type: boolean uniqueItems: true - description: Should this value be exported. Export strips fields that a user can not specify. in: query name: export type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.Deployment" "401": description: Unauthorized schemes: - https tags: - extensions_v1beta1 x-kubernetes-action: get x-kubernetes-group-version-kind: group: extensions kind: Deployment version: v1beta1 parameters: - description: name of the Deployment in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true patch: consumes: - application/json-patch+json - application/merge-patch+json - application/strategic-merge-patch+json description: partially update the specified Deployment operationId: patchExtensionsV1beta1NamespacedDeployment parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.Deployment" "401": description: Unauthorized schemes: - https tags: - extensions_v1beta1 x-kubernetes-action: patch x-kubernetes-group-version-kind: group: extensions kind: Deployment version: v1beta1 put: consumes: - "*/*" description: replace the specified Deployment operationId: replaceExtensionsV1beta1NamespacedDeployment parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.Deployment" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.Deployment" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.Deployment" "401": description: Unauthorized schemes: - https tags: - extensions_v1beta1 x-kubernetes-action: put x-kubernetes-group-version-kind: group: extensions kind: Deployment version: v1beta1 "/apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name}/rollback": parameters: - description: name of the DeploymentRollback in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true post: consumes: - "*/*" description: create rollback of a Deployment operationId: createExtensionsV1beta1NamespacedDeploymentRollback parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.DeploymentRollback" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.DeploymentRollback" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.DeploymentRollback" "202": description: Accepted schema: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.DeploymentRollback" "401": description: Unauthorized schemes: - https tags: - extensions_v1beta1 x-kubernetes-action: post x-kubernetes-group-version-kind: group: extensions kind: DeploymentRollback version: v1beta1 "/apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name}/scale": get: consumes: - "*/*" description: read scale of the specified Deployment operationId: readExtensionsV1beta1NamespacedDeploymentScale produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.Scale" "401": description: Unauthorized schemes: - https tags: - extensions_v1beta1 x-kubernetes-action: get x-kubernetes-group-version-kind: group: extensions kind: Scale version: v1beta1 parameters: - description: name of the Scale in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true patch: consumes: - application/json-patch+json - application/merge-patch+json - application/strategic-merge-patch+json description: partially update scale of the specified Deployment operationId: patchExtensionsV1beta1NamespacedDeploymentScale parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.Scale" "401": description: Unauthorized schemes: - https tags: - extensions_v1beta1 x-kubernetes-action: patch x-kubernetes-group-version-kind: group: extensions kind: Scale version: v1beta1 put: consumes: - "*/*" description: replace scale of the specified Deployment operationId: replaceExtensionsV1beta1NamespacedDeploymentScale parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.Scale" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.Scale" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.Scale" "401": description: Unauthorized schemes: - https tags: - extensions_v1beta1 x-kubernetes-action: put x-kubernetes-group-version-kind: group: extensions kind: Scale version: v1beta1 "/apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name}/status": get: consumes: - "*/*" description: read status of the specified Deployment operationId: readExtensionsV1beta1NamespacedDeploymentStatus produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.Deployment" "401": description: Unauthorized schemes: - https tags: - extensions_v1beta1 x-kubernetes-action: get x-kubernetes-group-version-kind: group: extensions kind: Deployment version: v1beta1 parameters: - description: name of the Deployment in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true patch: consumes: - application/json-patch+json - application/merge-patch+json - application/strategic-merge-patch+json description: partially update status of the specified Deployment operationId: patchExtensionsV1beta1NamespacedDeploymentStatus parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.Deployment" "401": description: Unauthorized schemes: - https tags: - extensions_v1beta1 x-kubernetes-action: patch x-kubernetes-group-version-kind: group: extensions kind: Deployment version: v1beta1 put: consumes: - "*/*" description: replace status of the specified Deployment operationId: replaceExtensionsV1beta1NamespacedDeploymentStatus parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.Deployment" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.Deployment" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.Deployment" "401": description: Unauthorized schemes: - https tags: - extensions_v1beta1 x-kubernetes-action: put x-kubernetes-group-version-kind: group: extensions kind: Deployment version: v1beta1 "/apis/extensions/v1beta1/namespaces/{namespace}/ingresses": delete: consumes: - "*/*" description: delete collection of Ingress operationId: deleteExtensionsV1beta1CollectionNamespacedIngress parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - extensions_v1beta1 x-kubernetes-action: deletecollection x-kubernetes-group-version-kind: group: extensions kind: Ingress version: v1beta1 get: consumes: - "*/*" description: list or watch objects of kind Ingress operationId: listExtensionsV1beta1NamespacedIngress parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.IngressList" "401": description: Unauthorized schemes: - https tags: - extensions_v1beta1 x-kubernetes-action: list x-kubernetes-group-version-kind: group: extensions kind: Ingress version: v1beta1 parameters: - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true post: consumes: - "*/*" description: create an Ingress operationId: createExtensionsV1beta1NamespacedIngress parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.Ingress" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.Ingress" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.Ingress" "202": description: Accepted schema: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.Ingress" "401": description: Unauthorized schemes: - https tags: - extensions_v1beta1 x-kubernetes-action: post x-kubernetes-group-version-kind: group: extensions kind: Ingress version: v1beta1 "/apis/extensions/v1beta1/namespaces/{namespace}/ingresses/{name}": delete: consumes: - "*/*" description: delete an Ingress operationId: deleteExtensionsV1beta1NamespacedIngress parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" - description: The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. in: query name: gracePeriodSeconds type: integer uniqueItems: true - description: "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both." in: query name: orphanDependents type: boolean uniqueItems: true - description: "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground." in: query name: propagationPolicy type: string uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - extensions_v1beta1 x-kubernetes-action: delete x-kubernetes-group-version-kind: group: extensions kind: Ingress version: v1beta1 get: consumes: - "*/*" description: read the specified Ingress operationId: readExtensionsV1beta1NamespacedIngress parameters: - description: Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. in: query name: exact type: boolean uniqueItems: true - description: Should this value be exported. Export strips fields that a user can not specify. in: query name: export type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.Ingress" "401": description: Unauthorized schemes: - https tags: - extensions_v1beta1 x-kubernetes-action: get x-kubernetes-group-version-kind: group: extensions kind: Ingress version: v1beta1 parameters: - description: name of the Ingress in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true patch: consumes: - application/json-patch+json - application/merge-patch+json - application/strategic-merge-patch+json description: partially update the specified Ingress operationId: patchExtensionsV1beta1NamespacedIngress parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.Ingress" "401": description: Unauthorized schemes: - https tags: - extensions_v1beta1 x-kubernetes-action: patch x-kubernetes-group-version-kind: group: extensions kind: Ingress version: v1beta1 put: consumes: - "*/*" description: replace the specified Ingress operationId: replaceExtensionsV1beta1NamespacedIngress parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.Ingress" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.Ingress" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.Ingress" "401": description: Unauthorized schemes: - https tags: - extensions_v1beta1 x-kubernetes-action: put x-kubernetes-group-version-kind: group: extensions kind: Ingress version: v1beta1 "/apis/extensions/v1beta1/namespaces/{namespace}/ingresses/{name}/status": get: consumes: - "*/*" description: read status of the specified Ingress operationId: readExtensionsV1beta1NamespacedIngressStatus produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.Ingress" "401": description: Unauthorized schemes: - https tags: - extensions_v1beta1 x-kubernetes-action: get x-kubernetes-group-version-kind: group: extensions kind: Ingress version: v1beta1 parameters: - description: name of the Ingress in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true patch: consumes: - application/json-patch+json - application/merge-patch+json - application/strategic-merge-patch+json description: partially update status of the specified Ingress operationId: patchExtensionsV1beta1NamespacedIngressStatus parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.Ingress" "401": description: Unauthorized schemes: - https tags: - extensions_v1beta1 x-kubernetes-action: patch x-kubernetes-group-version-kind: group: extensions kind: Ingress version: v1beta1 put: consumes: - "*/*" description: replace status of the specified Ingress operationId: replaceExtensionsV1beta1NamespacedIngressStatus parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.Ingress" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.Ingress" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.Ingress" "401": description: Unauthorized schemes: - https tags: - extensions_v1beta1 x-kubernetes-action: put x-kubernetes-group-version-kind: group: extensions kind: Ingress version: v1beta1 "/apis/extensions/v1beta1/namespaces/{namespace}/networkpolicies": delete: consumes: - "*/*" description: delete collection of NetworkPolicy operationId: deleteExtensionsV1beta1CollectionNamespacedNetworkPolicy parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - extensions_v1beta1 x-kubernetes-action: deletecollection x-kubernetes-group-version-kind: group: extensions kind: NetworkPolicy version: v1beta1 get: consumes: - "*/*" description: list or watch objects of kind NetworkPolicy operationId: listExtensionsV1beta1NamespacedNetworkPolicy parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.NetworkPolicyList" "401": description: Unauthorized schemes: - https tags: - extensions_v1beta1 x-kubernetes-action: list x-kubernetes-group-version-kind: group: extensions kind: NetworkPolicy version: v1beta1 parameters: - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true post: consumes: - "*/*" description: create a NetworkPolicy operationId: createExtensionsV1beta1NamespacedNetworkPolicy parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.NetworkPolicy" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.NetworkPolicy" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.NetworkPolicy" "202": description: Accepted schema: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.NetworkPolicy" "401": description: Unauthorized schemes: - https tags: - extensions_v1beta1 x-kubernetes-action: post x-kubernetes-group-version-kind: group: extensions kind: NetworkPolicy version: v1beta1 "/apis/extensions/v1beta1/namespaces/{namespace}/networkpolicies/{name}": delete: consumes: - "*/*" description: delete a NetworkPolicy operationId: deleteExtensionsV1beta1NamespacedNetworkPolicy parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" - description: The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. in: query name: gracePeriodSeconds type: integer uniqueItems: true - description: "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both." in: query name: orphanDependents type: boolean uniqueItems: true - description: "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground." in: query name: propagationPolicy type: string uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - extensions_v1beta1 x-kubernetes-action: delete x-kubernetes-group-version-kind: group: extensions kind: NetworkPolicy version: v1beta1 get: consumes: - "*/*" description: read the specified NetworkPolicy operationId: readExtensionsV1beta1NamespacedNetworkPolicy parameters: - description: Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. in: query name: exact type: boolean uniqueItems: true - description: Should this value be exported. Export strips fields that a user can not specify. in: query name: export type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.NetworkPolicy" "401": description: Unauthorized schemes: - https tags: - extensions_v1beta1 x-kubernetes-action: get x-kubernetes-group-version-kind: group: extensions kind: NetworkPolicy version: v1beta1 parameters: - description: name of the NetworkPolicy in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true patch: consumes: - application/json-patch+json - application/merge-patch+json - application/strategic-merge-patch+json description: partially update the specified NetworkPolicy operationId: patchExtensionsV1beta1NamespacedNetworkPolicy parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.NetworkPolicy" "401": description: Unauthorized schemes: - https tags: - extensions_v1beta1 x-kubernetes-action: patch x-kubernetes-group-version-kind: group: extensions kind: NetworkPolicy version: v1beta1 put: consumes: - "*/*" description: replace the specified NetworkPolicy operationId: replaceExtensionsV1beta1NamespacedNetworkPolicy parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.NetworkPolicy" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.NetworkPolicy" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.NetworkPolicy" "401": description: Unauthorized schemes: - https tags: - extensions_v1beta1 x-kubernetes-action: put x-kubernetes-group-version-kind: group: extensions kind: NetworkPolicy version: v1beta1 "/apis/extensions/v1beta1/namespaces/{namespace}/replicasets": delete: consumes: - "*/*" description: delete collection of ReplicaSet operationId: deleteExtensionsV1beta1CollectionNamespacedReplicaSet parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - extensions_v1beta1 x-kubernetes-action: deletecollection x-kubernetes-group-version-kind: group: extensions kind: ReplicaSet version: v1beta1 get: consumes: - "*/*" description: list or watch objects of kind ReplicaSet operationId: listExtensionsV1beta1NamespacedReplicaSet parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.ReplicaSetList" "401": description: Unauthorized schemes: - https tags: - extensions_v1beta1 x-kubernetes-action: list x-kubernetes-group-version-kind: group: extensions kind: ReplicaSet version: v1beta1 parameters: - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true post: consumes: - "*/*" description: create a ReplicaSet operationId: createExtensionsV1beta1NamespacedReplicaSet parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.ReplicaSet" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.ReplicaSet" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.ReplicaSet" "202": description: Accepted schema: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.ReplicaSet" "401": description: Unauthorized schemes: - https tags: - extensions_v1beta1 x-kubernetes-action: post x-kubernetes-group-version-kind: group: extensions kind: ReplicaSet version: v1beta1 "/apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name}": delete: consumes: - "*/*" description: delete a ReplicaSet operationId: deleteExtensionsV1beta1NamespacedReplicaSet parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" - description: The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. in: query name: gracePeriodSeconds type: integer uniqueItems: true - description: "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both." in: query name: orphanDependents type: boolean uniqueItems: true - description: "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground." in: query name: propagationPolicy type: string uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - extensions_v1beta1 x-kubernetes-action: delete x-kubernetes-group-version-kind: group: extensions kind: ReplicaSet version: v1beta1 get: consumes: - "*/*" description: read the specified ReplicaSet operationId: readExtensionsV1beta1NamespacedReplicaSet parameters: - description: Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. in: query name: exact type: boolean uniqueItems: true - description: Should this value be exported. Export strips fields that a user can not specify. in: query name: export type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.ReplicaSet" "401": description: Unauthorized schemes: - https tags: - extensions_v1beta1 x-kubernetes-action: get x-kubernetes-group-version-kind: group: extensions kind: ReplicaSet version: v1beta1 parameters: - description: name of the ReplicaSet in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true patch: consumes: - application/json-patch+json - application/merge-patch+json - application/strategic-merge-patch+json description: partially update the specified ReplicaSet operationId: patchExtensionsV1beta1NamespacedReplicaSet parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.ReplicaSet" "401": description: Unauthorized schemes: - https tags: - extensions_v1beta1 x-kubernetes-action: patch x-kubernetes-group-version-kind: group: extensions kind: ReplicaSet version: v1beta1 put: consumes: - "*/*" description: replace the specified ReplicaSet operationId: replaceExtensionsV1beta1NamespacedReplicaSet parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.ReplicaSet" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.ReplicaSet" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.ReplicaSet" "401": description: Unauthorized schemes: - https tags: - extensions_v1beta1 x-kubernetes-action: put x-kubernetes-group-version-kind: group: extensions kind: ReplicaSet version: v1beta1 "/apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name}/scale": get: consumes: - "*/*" description: read scale of the specified ReplicaSet operationId: readExtensionsV1beta1NamespacedReplicaSetScale produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.Scale" "401": description: Unauthorized schemes: - https tags: - extensions_v1beta1 x-kubernetes-action: get x-kubernetes-group-version-kind: group: extensions kind: Scale version: v1beta1 parameters: - description: name of the Scale in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true patch: consumes: - application/json-patch+json - application/merge-patch+json - application/strategic-merge-patch+json description: partially update scale of the specified ReplicaSet operationId: patchExtensionsV1beta1NamespacedReplicaSetScale parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.Scale" "401": description: Unauthorized schemes: - https tags: - extensions_v1beta1 x-kubernetes-action: patch x-kubernetes-group-version-kind: group: extensions kind: Scale version: v1beta1 put: consumes: - "*/*" description: replace scale of the specified ReplicaSet operationId: replaceExtensionsV1beta1NamespacedReplicaSetScale parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.Scale" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.Scale" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.Scale" "401": description: Unauthorized schemes: - https tags: - extensions_v1beta1 x-kubernetes-action: put x-kubernetes-group-version-kind: group: extensions kind: Scale version: v1beta1 "/apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name}/status": get: consumes: - "*/*" description: read status of the specified ReplicaSet operationId: readExtensionsV1beta1NamespacedReplicaSetStatus produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.ReplicaSet" "401": description: Unauthorized schemes: - https tags: - extensions_v1beta1 x-kubernetes-action: get x-kubernetes-group-version-kind: group: extensions kind: ReplicaSet version: v1beta1 parameters: - description: name of the ReplicaSet in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true patch: consumes: - application/json-patch+json - application/merge-patch+json - application/strategic-merge-patch+json description: partially update status of the specified ReplicaSet operationId: patchExtensionsV1beta1NamespacedReplicaSetStatus parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.ReplicaSet" "401": description: Unauthorized schemes: - https tags: - extensions_v1beta1 x-kubernetes-action: patch x-kubernetes-group-version-kind: group: extensions kind: ReplicaSet version: v1beta1 put: consumes: - "*/*" description: replace status of the specified ReplicaSet operationId: replaceExtensionsV1beta1NamespacedReplicaSetStatus parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.ReplicaSet" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.ReplicaSet" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.ReplicaSet" "401": description: Unauthorized schemes: - https tags: - extensions_v1beta1 x-kubernetes-action: put x-kubernetes-group-version-kind: group: extensions kind: ReplicaSet version: v1beta1 "/apis/extensions/v1beta1/namespaces/{namespace}/replicationcontrollers/{name}/scale": get: consumes: - "*/*" description: read scale of the specified ReplicationControllerDummy operationId: readExtensionsV1beta1NamespacedReplicationControllerDummyScale produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.Scale" "401": description: Unauthorized schemes: - https tags: - extensions_v1beta1 x-kubernetes-action: get x-kubernetes-group-version-kind: group: extensions kind: Scale version: v1beta1 parameters: - description: name of the Scale in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true patch: consumes: - application/json-patch+json - application/merge-patch+json - application/strategic-merge-patch+json description: partially update scale of the specified ReplicationControllerDummy operationId: patchExtensionsV1beta1NamespacedReplicationControllerDummyScale parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.Scale" "401": description: Unauthorized schemes: - https tags: - extensions_v1beta1 x-kubernetes-action: patch x-kubernetes-group-version-kind: group: extensions kind: Scale version: v1beta1 put: consumes: - "*/*" description: replace scale of the specified ReplicationControllerDummy operationId: replaceExtensionsV1beta1NamespacedReplicationControllerDummyScale parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.Scale" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.Scale" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.Scale" "401": description: Unauthorized schemes: - https tags: - extensions_v1beta1 x-kubernetes-action: put x-kubernetes-group-version-kind: group: extensions kind: Scale version: v1beta1 /apis/extensions/v1beta1/networkpolicies: get: consumes: - "*/*" description: list or watch objects of kind NetworkPolicy operationId: listExtensionsV1beta1NetworkPolicyForAllNamespaces produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.NetworkPolicyList" "401": description: Unauthorized schemes: - https tags: - extensions_v1beta1 x-kubernetes-action: list x-kubernetes-group-version-kind: group: extensions kind: NetworkPolicy version: v1beta1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true /apis/extensions/v1beta1/podsecuritypolicies: delete: consumes: - "*/*" description: delete collection of PodSecurityPolicy operationId: deleteExtensionsV1beta1CollectionPodSecurityPolicy parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - extensions_v1beta1 x-kubernetes-action: deletecollection x-kubernetes-group-version-kind: group: extensions kind: PodSecurityPolicy version: v1beta1 get: consumes: - "*/*" description: list or watch objects of kind PodSecurityPolicy operationId: listExtensionsV1beta1PodSecurityPolicy parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.PodSecurityPolicyList" "401": description: Unauthorized schemes: - https tags: - extensions_v1beta1 x-kubernetes-action: list x-kubernetes-group-version-kind: group: extensions kind: PodSecurityPolicy version: v1beta1 parameters: - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true post: consumes: - "*/*" description: create a PodSecurityPolicy operationId: createExtensionsV1beta1PodSecurityPolicy parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.PodSecurityPolicy" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.PodSecurityPolicy" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.PodSecurityPolicy" "202": description: Accepted schema: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.PodSecurityPolicy" "401": description: Unauthorized schemes: - https tags: - extensions_v1beta1 x-kubernetes-action: post x-kubernetes-group-version-kind: group: extensions kind: PodSecurityPolicy version: v1beta1 "/apis/extensions/v1beta1/podsecuritypolicies/{name}": delete: consumes: - "*/*" description: delete a PodSecurityPolicy operationId: deleteExtensionsV1beta1PodSecurityPolicy parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" - description: The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. in: query name: gracePeriodSeconds type: integer uniqueItems: true - description: "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both." in: query name: orphanDependents type: boolean uniqueItems: true - description: "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground." in: query name: propagationPolicy type: string uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - extensions_v1beta1 x-kubernetes-action: delete x-kubernetes-group-version-kind: group: extensions kind: PodSecurityPolicy version: v1beta1 get: consumes: - "*/*" description: read the specified PodSecurityPolicy operationId: readExtensionsV1beta1PodSecurityPolicy parameters: - description: Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. in: query name: exact type: boolean uniqueItems: true - description: Should this value be exported. Export strips fields that a user can not specify. in: query name: export type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.PodSecurityPolicy" "401": description: Unauthorized schemes: - https tags: - extensions_v1beta1 x-kubernetes-action: get x-kubernetes-group-version-kind: group: extensions kind: PodSecurityPolicy version: v1beta1 parameters: - description: name of the PodSecurityPolicy in: path name: name required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true patch: consumes: - application/json-patch+json - application/merge-patch+json - application/strategic-merge-patch+json description: partially update the specified PodSecurityPolicy operationId: patchExtensionsV1beta1PodSecurityPolicy parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.PodSecurityPolicy" "401": description: Unauthorized schemes: - https tags: - extensions_v1beta1 x-kubernetes-action: patch x-kubernetes-group-version-kind: group: extensions kind: PodSecurityPolicy version: v1beta1 put: consumes: - "*/*" description: replace the specified PodSecurityPolicy operationId: replaceExtensionsV1beta1PodSecurityPolicy parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.PodSecurityPolicy" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.PodSecurityPolicy" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.PodSecurityPolicy" "401": description: Unauthorized schemes: - https tags: - extensions_v1beta1 x-kubernetes-action: put x-kubernetes-group-version-kind: group: extensions kind: PodSecurityPolicy version: v1beta1 /apis/extensions/v1beta1/replicasets: get: consumes: - "*/*" description: list or watch objects of kind ReplicaSet operationId: listExtensionsV1beta1ReplicaSetForAllNamespaces produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.ReplicaSetList" "401": description: Unauthorized schemes: - https tags: - extensions_v1beta1 x-kubernetes-action: list x-kubernetes-group-version-kind: group: extensions kind: ReplicaSet version: v1beta1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true /apis/extensions/v1beta1/watch/daemonsets: get: consumes: - "*/*" description: watch individual changes to a list of DaemonSet operationId: watchExtensionsV1beta1DaemonSetListForAllNamespaces produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - extensions_v1beta1 x-kubernetes-action: watchlist x-kubernetes-group-version-kind: group: extensions kind: DaemonSet version: v1beta1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true /apis/extensions/v1beta1/watch/deployments: get: consumes: - "*/*" description: watch individual changes to a list of Deployment operationId: watchExtensionsV1beta1DeploymentListForAllNamespaces produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - extensions_v1beta1 x-kubernetes-action: watchlist x-kubernetes-group-version-kind: group: extensions kind: Deployment version: v1beta1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true /apis/extensions/v1beta1/watch/ingresses: get: consumes: - "*/*" description: watch individual changes to a list of Ingress operationId: watchExtensionsV1beta1IngressListForAllNamespaces produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - extensions_v1beta1 x-kubernetes-action: watchlist x-kubernetes-group-version-kind: group: extensions kind: Ingress version: v1beta1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true "/apis/extensions/v1beta1/watch/namespaces/{namespace}/daemonsets": get: consumes: - "*/*" description: watch individual changes to a list of DaemonSet operationId: watchExtensionsV1beta1NamespacedDaemonSetList produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - extensions_v1beta1 x-kubernetes-action: watchlist x-kubernetes-group-version-kind: group: extensions kind: DaemonSet version: v1beta1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true "/apis/extensions/v1beta1/watch/namespaces/{namespace}/daemonsets/{name}": get: consumes: - "*/*" description: watch changes to an object of kind DaemonSet operationId: watchExtensionsV1beta1NamespacedDaemonSet produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - extensions_v1beta1 x-kubernetes-action: watch x-kubernetes-group-version-kind: group: extensions kind: DaemonSet version: v1beta1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: name of the DaemonSet in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true "/apis/extensions/v1beta1/watch/namespaces/{namespace}/deployments": get: consumes: - "*/*" description: watch individual changes to a list of Deployment operationId: watchExtensionsV1beta1NamespacedDeploymentList produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - extensions_v1beta1 x-kubernetes-action: watchlist x-kubernetes-group-version-kind: group: extensions kind: Deployment version: v1beta1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true "/apis/extensions/v1beta1/watch/namespaces/{namespace}/deployments/{name}": get: consumes: - "*/*" description: watch changes to an object of kind Deployment operationId: watchExtensionsV1beta1NamespacedDeployment produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - extensions_v1beta1 x-kubernetes-action: watch x-kubernetes-group-version-kind: group: extensions kind: Deployment version: v1beta1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: name of the Deployment in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true "/apis/extensions/v1beta1/watch/namespaces/{namespace}/ingresses": get: consumes: - "*/*" description: watch individual changes to a list of Ingress operationId: watchExtensionsV1beta1NamespacedIngressList produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - extensions_v1beta1 x-kubernetes-action: watchlist x-kubernetes-group-version-kind: group: extensions kind: Ingress version: v1beta1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true "/apis/extensions/v1beta1/watch/namespaces/{namespace}/ingresses/{name}": get: consumes: - "*/*" description: watch changes to an object of kind Ingress operationId: watchExtensionsV1beta1NamespacedIngress produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - extensions_v1beta1 x-kubernetes-action: watch x-kubernetes-group-version-kind: group: extensions kind: Ingress version: v1beta1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: name of the Ingress in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true "/apis/extensions/v1beta1/watch/namespaces/{namespace}/networkpolicies": get: consumes: - "*/*" description: watch individual changes to a list of NetworkPolicy operationId: watchExtensionsV1beta1NamespacedNetworkPolicyList produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - extensions_v1beta1 x-kubernetes-action: watchlist x-kubernetes-group-version-kind: group: extensions kind: NetworkPolicy version: v1beta1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true "/apis/extensions/v1beta1/watch/namespaces/{namespace}/networkpolicies/{name}": get: consumes: - "*/*" description: watch changes to an object of kind NetworkPolicy operationId: watchExtensionsV1beta1NamespacedNetworkPolicy produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - extensions_v1beta1 x-kubernetes-action: watch x-kubernetes-group-version-kind: group: extensions kind: NetworkPolicy version: v1beta1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: name of the NetworkPolicy in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true "/apis/extensions/v1beta1/watch/namespaces/{namespace}/replicasets": get: consumes: - "*/*" description: watch individual changes to a list of ReplicaSet operationId: watchExtensionsV1beta1NamespacedReplicaSetList produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - extensions_v1beta1 x-kubernetes-action: watchlist x-kubernetes-group-version-kind: group: extensions kind: ReplicaSet version: v1beta1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true "/apis/extensions/v1beta1/watch/namespaces/{namespace}/replicasets/{name}": get: consumes: - "*/*" description: watch changes to an object of kind ReplicaSet operationId: watchExtensionsV1beta1NamespacedReplicaSet produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - extensions_v1beta1 x-kubernetes-action: watch x-kubernetes-group-version-kind: group: extensions kind: ReplicaSet version: v1beta1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: name of the ReplicaSet in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true /apis/extensions/v1beta1/watch/networkpolicies: get: consumes: - "*/*" description: watch individual changes to a list of NetworkPolicy operationId: watchExtensionsV1beta1NetworkPolicyListForAllNamespaces produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - extensions_v1beta1 x-kubernetes-action: watchlist x-kubernetes-group-version-kind: group: extensions kind: NetworkPolicy version: v1beta1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true /apis/extensions/v1beta1/watch/podsecuritypolicies: get: consumes: - "*/*" description: watch individual changes to a list of PodSecurityPolicy operationId: watchExtensionsV1beta1PodSecurityPolicyList produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - extensions_v1beta1 x-kubernetes-action: watchlist x-kubernetes-group-version-kind: group: extensions kind: PodSecurityPolicy version: v1beta1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true "/apis/extensions/v1beta1/watch/podsecuritypolicies/{name}": get: consumes: - "*/*" description: watch changes to an object of kind PodSecurityPolicy operationId: watchExtensionsV1beta1PodSecurityPolicy produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - extensions_v1beta1 x-kubernetes-action: watch x-kubernetes-group-version-kind: group: extensions kind: PodSecurityPolicy version: v1beta1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: name of the PodSecurityPolicy in: path name: name required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true /apis/extensions/v1beta1/watch/replicasets: get: consumes: - "*/*" description: watch individual changes to a list of ReplicaSet operationId: watchExtensionsV1beta1ReplicaSetListForAllNamespaces produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - extensions_v1beta1 x-kubernetes-action: watchlist x-kubernetes-group-version-kind: group: extensions kind: ReplicaSet version: v1beta1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true /apis/networking.k8s.io/: get: consumes: - application/json - application/yaml - application/vnd.kubernetes.protobuf description: get information of a group operationId: getNetworkingAPIGroup produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup" "401": description: Unauthorized schemes: - https tags: - networking /apis/networking.k8s.io/v1/: get: consumes: - application/json - application/yaml - application/vnd.kubernetes.protobuf description: get available resources operationId: getNetworkingV1APIResources produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList" "401": description: Unauthorized schemes: - https tags: - networking_v1 "/apis/networking.k8s.io/v1/namespaces/{namespace}/networkpolicies": delete: consumes: - "*/*" description: delete collection of NetworkPolicy operationId: deleteNetworkingV1CollectionNamespacedNetworkPolicy parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - networking_v1 x-kubernetes-action: deletecollection x-kubernetes-group-version-kind: group: networking.k8s.io kind: NetworkPolicy version: v1 get: consumes: - "*/*" description: list or watch objects of kind NetworkPolicy operationId: listNetworkingV1NamespacedNetworkPolicy parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.networking.v1.NetworkPolicyList" "401": description: Unauthorized schemes: - https tags: - networking_v1 x-kubernetes-action: list x-kubernetes-group-version-kind: group: networking.k8s.io kind: NetworkPolicy version: v1 parameters: - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true post: consumes: - "*/*" description: create a NetworkPolicy operationId: createNetworkingV1NamespacedNetworkPolicy parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.networking.v1.NetworkPolicy" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.networking.v1.NetworkPolicy" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.networking.v1.NetworkPolicy" "202": description: Accepted schema: $ref: "#/definitions/io.k8s.api.networking.v1.NetworkPolicy" "401": description: Unauthorized schemes: - https tags: - networking_v1 x-kubernetes-action: post x-kubernetes-group-version-kind: group: networking.k8s.io kind: NetworkPolicy version: v1 "/apis/networking.k8s.io/v1/namespaces/{namespace}/networkpolicies/{name}": delete: consumes: - "*/*" description: delete a NetworkPolicy operationId: deleteNetworkingV1NamespacedNetworkPolicy parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" - description: The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. in: query name: gracePeriodSeconds type: integer uniqueItems: true - description: "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both." in: query name: orphanDependents type: boolean uniqueItems: true - description: "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground." in: query name: propagationPolicy type: string uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - networking_v1 x-kubernetes-action: delete x-kubernetes-group-version-kind: group: networking.k8s.io kind: NetworkPolicy version: v1 get: consumes: - "*/*" description: read the specified NetworkPolicy operationId: readNetworkingV1NamespacedNetworkPolicy parameters: - description: Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. in: query name: exact type: boolean uniqueItems: true - description: Should this value be exported. Export strips fields that a user can not specify. in: query name: export type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.networking.v1.NetworkPolicy" "401": description: Unauthorized schemes: - https tags: - networking_v1 x-kubernetes-action: get x-kubernetes-group-version-kind: group: networking.k8s.io kind: NetworkPolicy version: v1 parameters: - description: name of the NetworkPolicy in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true patch: consumes: - application/json-patch+json - application/merge-patch+json - application/strategic-merge-patch+json description: partially update the specified NetworkPolicy operationId: patchNetworkingV1NamespacedNetworkPolicy parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.networking.v1.NetworkPolicy" "401": description: Unauthorized schemes: - https tags: - networking_v1 x-kubernetes-action: patch x-kubernetes-group-version-kind: group: networking.k8s.io kind: NetworkPolicy version: v1 put: consumes: - "*/*" description: replace the specified NetworkPolicy operationId: replaceNetworkingV1NamespacedNetworkPolicy parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.networking.v1.NetworkPolicy" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.networking.v1.NetworkPolicy" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.networking.v1.NetworkPolicy" "401": description: Unauthorized schemes: - https tags: - networking_v1 x-kubernetes-action: put x-kubernetes-group-version-kind: group: networking.k8s.io kind: NetworkPolicy version: v1 /apis/networking.k8s.io/v1/networkpolicies: get: consumes: - "*/*" description: list or watch objects of kind NetworkPolicy operationId: listNetworkingV1NetworkPolicyForAllNamespaces produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.networking.v1.NetworkPolicyList" "401": description: Unauthorized schemes: - https tags: - networking_v1 x-kubernetes-action: list x-kubernetes-group-version-kind: group: networking.k8s.io kind: NetworkPolicy version: v1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true "/apis/networking.k8s.io/v1/watch/namespaces/{namespace}/networkpolicies": get: consumes: - "*/*" description: watch individual changes to a list of NetworkPolicy operationId: watchNetworkingV1NamespacedNetworkPolicyList produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - networking_v1 x-kubernetes-action: watchlist x-kubernetes-group-version-kind: group: networking.k8s.io kind: NetworkPolicy version: v1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true "/apis/networking.k8s.io/v1/watch/namespaces/{namespace}/networkpolicies/{name}": get: consumes: - "*/*" description: watch changes to an object of kind NetworkPolicy operationId: watchNetworkingV1NamespacedNetworkPolicy produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - networking_v1 x-kubernetes-action: watch x-kubernetes-group-version-kind: group: networking.k8s.io kind: NetworkPolicy version: v1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: name of the NetworkPolicy in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true /apis/networking.k8s.io/v1/watch/networkpolicies: get: consumes: - "*/*" description: watch individual changes to a list of NetworkPolicy operationId: watchNetworkingV1NetworkPolicyListForAllNamespaces produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - networking_v1 x-kubernetes-action: watchlist x-kubernetes-group-version-kind: group: networking.k8s.io kind: NetworkPolicy version: v1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true /apis/policy/: get: consumes: - application/json - application/yaml - application/vnd.kubernetes.protobuf description: get information of a group operationId: getPolicyAPIGroup produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup" "401": description: Unauthorized schemes: - https tags: - policy /apis/policy/v1beta1/: get: consumes: - application/json - application/yaml - application/vnd.kubernetes.protobuf description: get available resources operationId: getPolicyV1beta1APIResources produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList" "401": description: Unauthorized schemes: - https tags: - policy_v1beta1 "/apis/policy/v1beta1/namespaces/{namespace}/poddisruptionbudgets": delete: consumes: - "*/*" description: delete collection of PodDisruptionBudget operationId: deletePolicyV1beta1CollectionNamespacedPodDisruptionBudget parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - policy_v1beta1 x-kubernetes-action: deletecollection x-kubernetes-group-version-kind: group: policy kind: PodDisruptionBudget version: v1beta1 get: consumes: - "*/*" description: list or watch objects of kind PodDisruptionBudget operationId: listPolicyV1beta1NamespacedPodDisruptionBudget parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.policy.v1beta1.PodDisruptionBudgetList" "401": description: Unauthorized schemes: - https tags: - policy_v1beta1 x-kubernetes-action: list x-kubernetes-group-version-kind: group: policy kind: PodDisruptionBudget version: v1beta1 parameters: - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true post: consumes: - "*/*" description: create a PodDisruptionBudget operationId: createPolicyV1beta1NamespacedPodDisruptionBudget parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.policy.v1beta1.PodDisruptionBudget" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.policy.v1beta1.PodDisruptionBudget" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.policy.v1beta1.PodDisruptionBudget" "202": description: Accepted schema: $ref: "#/definitions/io.k8s.api.policy.v1beta1.PodDisruptionBudget" "401": description: Unauthorized schemes: - https tags: - policy_v1beta1 x-kubernetes-action: post x-kubernetes-group-version-kind: group: policy kind: PodDisruptionBudget version: v1beta1 "/apis/policy/v1beta1/namespaces/{namespace}/poddisruptionbudgets/{name}": delete: consumes: - "*/*" description: delete a PodDisruptionBudget operationId: deletePolicyV1beta1NamespacedPodDisruptionBudget parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" - description: The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. in: query name: gracePeriodSeconds type: integer uniqueItems: true - description: "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both." in: query name: orphanDependents type: boolean uniqueItems: true - description: "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground." in: query name: propagationPolicy type: string uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - policy_v1beta1 x-kubernetes-action: delete x-kubernetes-group-version-kind: group: policy kind: PodDisruptionBudget version: v1beta1 get: consumes: - "*/*" description: read the specified PodDisruptionBudget operationId: readPolicyV1beta1NamespacedPodDisruptionBudget parameters: - description: Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. in: query name: exact type: boolean uniqueItems: true - description: Should this value be exported. Export strips fields that a user can not specify. in: query name: export type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.policy.v1beta1.PodDisruptionBudget" "401": description: Unauthorized schemes: - https tags: - policy_v1beta1 x-kubernetes-action: get x-kubernetes-group-version-kind: group: policy kind: PodDisruptionBudget version: v1beta1 parameters: - description: name of the PodDisruptionBudget in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true patch: consumes: - application/json-patch+json - application/merge-patch+json - application/strategic-merge-patch+json description: partially update the specified PodDisruptionBudget operationId: patchPolicyV1beta1NamespacedPodDisruptionBudget parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.policy.v1beta1.PodDisruptionBudget" "401": description: Unauthorized schemes: - https tags: - policy_v1beta1 x-kubernetes-action: patch x-kubernetes-group-version-kind: group: policy kind: PodDisruptionBudget version: v1beta1 put: consumes: - "*/*" description: replace the specified PodDisruptionBudget operationId: replacePolicyV1beta1NamespacedPodDisruptionBudget parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.policy.v1beta1.PodDisruptionBudget" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.policy.v1beta1.PodDisruptionBudget" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.policy.v1beta1.PodDisruptionBudget" "401": description: Unauthorized schemes: - https tags: - policy_v1beta1 x-kubernetes-action: put x-kubernetes-group-version-kind: group: policy kind: PodDisruptionBudget version: v1beta1 "/apis/policy/v1beta1/namespaces/{namespace}/poddisruptionbudgets/{name}/status": get: consumes: - "*/*" description: read status of the specified PodDisruptionBudget operationId: readPolicyV1beta1NamespacedPodDisruptionBudgetStatus produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.policy.v1beta1.PodDisruptionBudget" "401": description: Unauthorized schemes: - https tags: - policy_v1beta1 x-kubernetes-action: get x-kubernetes-group-version-kind: group: policy kind: PodDisruptionBudget version: v1beta1 parameters: - description: name of the PodDisruptionBudget in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true patch: consumes: - application/json-patch+json - application/merge-patch+json - application/strategic-merge-patch+json description: partially update status of the specified PodDisruptionBudget operationId: patchPolicyV1beta1NamespacedPodDisruptionBudgetStatus parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.policy.v1beta1.PodDisruptionBudget" "401": description: Unauthorized schemes: - https tags: - policy_v1beta1 x-kubernetes-action: patch x-kubernetes-group-version-kind: group: policy kind: PodDisruptionBudget version: v1beta1 put: consumes: - "*/*" description: replace status of the specified PodDisruptionBudget operationId: replacePolicyV1beta1NamespacedPodDisruptionBudgetStatus parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.policy.v1beta1.PodDisruptionBudget" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.policy.v1beta1.PodDisruptionBudget" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.policy.v1beta1.PodDisruptionBudget" "401": description: Unauthorized schemes: - https tags: - policy_v1beta1 x-kubernetes-action: put x-kubernetes-group-version-kind: group: policy kind: PodDisruptionBudget version: v1beta1 /apis/policy/v1beta1/poddisruptionbudgets: get: consumes: - "*/*" description: list or watch objects of kind PodDisruptionBudget operationId: listPolicyV1beta1PodDisruptionBudgetForAllNamespaces produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.policy.v1beta1.PodDisruptionBudgetList" "401": description: Unauthorized schemes: - https tags: - policy_v1beta1 x-kubernetes-action: list x-kubernetes-group-version-kind: group: policy kind: PodDisruptionBudget version: v1beta1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true /apis/policy/v1beta1/podsecuritypolicies: delete: consumes: - "*/*" description: delete collection of PodSecurityPolicy operationId: deletePolicyV1beta1CollectionPodSecurityPolicy parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - policy_v1beta1 x-kubernetes-action: deletecollection x-kubernetes-group-version-kind: group: policy kind: PodSecurityPolicy version: v1beta1 get: consumes: - "*/*" description: list or watch objects of kind PodSecurityPolicy operationId: listPolicyV1beta1PodSecurityPolicy parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.policy.v1beta1.PodSecurityPolicyList" "401": description: Unauthorized schemes: - https tags: - policy_v1beta1 x-kubernetes-action: list x-kubernetes-group-version-kind: group: policy kind: PodSecurityPolicy version: v1beta1 parameters: - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true post: consumes: - "*/*" description: create a PodSecurityPolicy operationId: createPolicyV1beta1PodSecurityPolicy parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.policy.v1beta1.PodSecurityPolicy" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.policy.v1beta1.PodSecurityPolicy" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.policy.v1beta1.PodSecurityPolicy" "202": description: Accepted schema: $ref: "#/definitions/io.k8s.api.policy.v1beta1.PodSecurityPolicy" "401": description: Unauthorized schemes: - https tags: - policy_v1beta1 x-kubernetes-action: post x-kubernetes-group-version-kind: group: policy kind: PodSecurityPolicy version: v1beta1 "/apis/policy/v1beta1/podsecuritypolicies/{name}": delete: consumes: - "*/*" description: delete a PodSecurityPolicy operationId: deletePolicyV1beta1PodSecurityPolicy parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" - description: The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. in: query name: gracePeriodSeconds type: integer uniqueItems: true - description: "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both." in: query name: orphanDependents type: boolean uniqueItems: true - description: "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground." in: query name: propagationPolicy type: string uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - policy_v1beta1 x-kubernetes-action: delete x-kubernetes-group-version-kind: group: policy kind: PodSecurityPolicy version: v1beta1 get: consumes: - "*/*" description: read the specified PodSecurityPolicy operationId: readPolicyV1beta1PodSecurityPolicy parameters: - description: Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. in: query name: exact type: boolean uniqueItems: true - description: Should this value be exported. Export strips fields that a user can not specify. in: query name: export type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.policy.v1beta1.PodSecurityPolicy" "401": description: Unauthorized schemes: - https tags: - policy_v1beta1 x-kubernetes-action: get x-kubernetes-group-version-kind: group: policy kind: PodSecurityPolicy version: v1beta1 parameters: - description: name of the PodSecurityPolicy in: path name: name required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true patch: consumes: - application/json-patch+json - application/merge-patch+json - application/strategic-merge-patch+json description: partially update the specified PodSecurityPolicy operationId: patchPolicyV1beta1PodSecurityPolicy parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.policy.v1beta1.PodSecurityPolicy" "401": description: Unauthorized schemes: - https tags: - policy_v1beta1 x-kubernetes-action: patch x-kubernetes-group-version-kind: group: policy kind: PodSecurityPolicy version: v1beta1 put: consumes: - "*/*" description: replace the specified PodSecurityPolicy operationId: replacePolicyV1beta1PodSecurityPolicy parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.policy.v1beta1.PodSecurityPolicy" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.policy.v1beta1.PodSecurityPolicy" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.policy.v1beta1.PodSecurityPolicy" "401": description: Unauthorized schemes: - https tags: - policy_v1beta1 x-kubernetes-action: put x-kubernetes-group-version-kind: group: policy kind: PodSecurityPolicy version: v1beta1 "/apis/policy/v1beta1/watch/namespaces/{namespace}/poddisruptionbudgets": get: consumes: - "*/*" description: watch individual changes to a list of PodDisruptionBudget operationId: watchPolicyV1beta1NamespacedPodDisruptionBudgetList produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - policy_v1beta1 x-kubernetes-action: watchlist x-kubernetes-group-version-kind: group: policy kind: PodDisruptionBudget version: v1beta1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true "/apis/policy/v1beta1/watch/namespaces/{namespace}/poddisruptionbudgets/{name}": get: consumes: - "*/*" description: watch changes to an object of kind PodDisruptionBudget operationId: watchPolicyV1beta1NamespacedPodDisruptionBudget produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - policy_v1beta1 x-kubernetes-action: watch x-kubernetes-group-version-kind: group: policy kind: PodDisruptionBudget version: v1beta1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: name of the PodDisruptionBudget in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true /apis/policy/v1beta1/watch/poddisruptionbudgets: get: consumes: - "*/*" description: watch individual changes to a list of PodDisruptionBudget operationId: watchPolicyV1beta1PodDisruptionBudgetListForAllNamespaces produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - policy_v1beta1 x-kubernetes-action: watchlist x-kubernetes-group-version-kind: group: policy kind: PodDisruptionBudget version: v1beta1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true /apis/policy/v1beta1/watch/podsecuritypolicies: get: consumes: - "*/*" description: watch individual changes to a list of PodSecurityPolicy operationId: watchPolicyV1beta1PodSecurityPolicyList produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - policy_v1beta1 x-kubernetes-action: watchlist x-kubernetes-group-version-kind: group: policy kind: PodSecurityPolicy version: v1beta1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true "/apis/policy/v1beta1/watch/podsecuritypolicies/{name}": get: consumes: - "*/*" description: watch changes to an object of kind PodSecurityPolicy operationId: watchPolicyV1beta1PodSecurityPolicy produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - policy_v1beta1 x-kubernetes-action: watch x-kubernetes-group-version-kind: group: policy kind: PodSecurityPolicy version: v1beta1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: name of the PodSecurityPolicy in: path name: name required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true /apis/rbac.authorization.k8s.io/: get: consumes: - application/json - application/yaml - application/vnd.kubernetes.protobuf description: get information of a group operationId: getRbacAuthorizationAPIGroup produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup" "401": description: Unauthorized schemes: - https tags: - rbacAuthorization /apis/rbac.authorization.k8s.io/v1/: get: consumes: - application/json - application/yaml - application/vnd.kubernetes.protobuf description: get available resources operationId: getRbacAuthorizationV1APIResources produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList" "401": description: Unauthorized schemes: - https tags: - rbacAuthorization_v1 /apis/rbac.authorization.k8s.io/v1/clusterrolebindings: delete: consumes: - "*/*" description: delete collection of ClusterRoleBinding operationId: deleteRbacAuthorizationV1CollectionClusterRoleBinding parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - rbacAuthorization_v1 x-kubernetes-action: deletecollection x-kubernetes-group-version-kind: group: rbac.authorization.k8s.io kind: ClusterRoleBinding version: v1 get: consumes: - "*/*" description: list or watch objects of kind ClusterRoleBinding operationId: listRbacAuthorizationV1ClusterRoleBinding parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.rbac.v1.ClusterRoleBindingList" "401": description: Unauthorized schemes: - https tags: - rbacAuthorization_v1 x-kubernetes-action: list x-kubernetes-group-version-kind: group: rbac.authorization.k8s.io kind: ClusterRoleBinding version: v1 parameters: - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true post: consumes: - "*/*" description: create a ClusterRoleBinding operationId: createRbacAuthorizationV1ClusterRoleBinding parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.rbac.v1.ClusterRoleBinding" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.rbac.v1.ClusterRoleBinding" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.rbac.v1.ClusterRoleBinding" "202": description: Accepted schema: $ref: "#/definitions/io.k8s.api.rbac.v1.ClusterRoleBinding" "401": description: Unauthorized schemes: - https tags: - rbacAuthorization_v1 x-kubernetes-action: post x-kubernetes-group-version-kind: group: rbac.authorization.k8s.io kind: ClusterRoleBinding version: v1 "/apis/rbac.authorization.k8s.io/v1/clusterrolebindings/{name}": delete: consumes: - "*/*" description: delete a ClusterRoleBinding operationId: deleteRbacAuthorizationV1ClusterRoleBinding parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" - description: The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. in: query name: gracePeriodSeconds type: integer uniqueItems: true - description: "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both." in: query name: orphanDependents type: boolean uniqueItems: true - description: "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground." in: query name: propagationPolicy type: string uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - rbacAuthorization_v1 x-kubernetes-action: delete x-kubernetes-group-version-kind: group: rbac.authorization.k8s.io kind: ClusterRoleBinding version: v1 get: consumes: - "*/*" description: read the specified ClusterRoleBinding operationId: readRbacAuthorizationV1ClusterRoleBinding produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.rbac.v1.ClusterRoleBinding" "401": description: Unauthorized schemes: - https tags: - rbacAuthorization_v1 x-kubernetes-action: get x-kubernetes-group-version-kind: group: rbac.authorization.k8s.io kind: ClusterRoleBinding version: v1 parameters: - description: name of the ClusterRoleBinding in: path name: name required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true patch: consumes: - application/json-patch+json - application/merge-patch+json - application/strategic-merge-patch+json description: partially update the specified ClusterRoleBinding operationId: patchRbacAuthorizationV1ClusterRoleBinding parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.rbac.v1.ClusterRoleBinding" "401": description: Unauthorized schemes: - https tags: - rbacAuthorization_v1 x-kubernetes-action: patch x-kubernetes-group-version-kind: group: rbac.authorization.k8s.io kind: ClusterRoleBinding version: v1 put: consumes: - "*/*" description: replace the specified ClusterRoleBinding operationId: replaceRbacAuthorizationV1ClusterRoleBinding parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.rbac.v1.ClusterRoleBinding" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.rbac.v1.ClusterRoleBinding" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.rbac.v1.ClusterRoleBinding" "401": description: Unauthorized schemes: - https tags: - rbacAuthorization_v1 x-kubernetes-action: put x-kubernetes-group-version-kind: group: rbac.authorization.k8s.io kind: ClusterRoleBinding version: v1 /apis/rbac.authorization.k8s.io/v1/clusterroles: delete: consumes: - "*/*" description: delete collection of ClusterRole operationId: deleteRbacAuthorizationV1CollectionClusterRole parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - rbacAuthorization_v1 x-kubernetes-action: deletecollection x-kubernetes-group-version-kind: group: rbac.authorization.k8s.io kind: ClusterRole version: v1 get: consumes: - "*/*" description: list or watch objects of kind ClusterRole operationId: listRbacAuthorizationV1ClusterRole parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.rbac.v1.ClusterRoleList" "401": description: Unauthorized schemes: - https tags: - rbacAuthorization_v1 x-kubernetes-action: list x-kubernetes-group-version-kind: group: rbac.authorization.k8s.io kind: ClusterRole version: v1 parameters: - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true post: consumes: - "*/*" description: create a ClusterRole operationId: createRbacAuthorizationV1ClusterRole parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.rbac.v1.ClusterRole" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.rbac.v1.ClusterRole" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.rbac.v1.ClusterRole" "202": description: Accepted schema: $ref: "#/definitions/io.k8s.api.rbac.v1.ClusterRole" "401": description: Unauthorized schemes: - https tags: - rbacAuthorization_v1 x-kubernetes-action: post x-kubernetes-group-version-kind: group: rbac.authorization.k8s.io kind: ClusterRole version: v1 "/apis/rbac.authorization.k8s.io/v1/clusterroles/{name}": delete: consumes: - "*/*" description: delete a ClusterRole operationId: deleteRbacAuthorizationV1ClusterRole parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" - description: The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. in: query name: gracePeriodSeconds type: integer uniqueItems: true - description: "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both." in: query name: orphanDependents type: boolean uniqueItems: true - description: "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground." in: query name: propagationPolicy type: string uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - rbacAuthorization_v1 x-kubernetes-action: delete x-kubernetes-group-version-kind: group: rbac.authorization.k8s.io kind: ClusterRole version: v1 get: consumes: - "*/*" description: read the specified ClusterRole operationId: readRbacAuthorizationV1ClusterRole produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.rbac.v1.ClusterRole" "401": description: Unauthorized schemes: - https tags: - rbacAuthorization_v1 x-kubernetes-action: get x-kubernetes-group-version-kind: group: rbac.authorization.k8s.io kind: ClusterRole version: v1 parameters: - description: name of the ClusterRole in: path name: name required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true patch: consumes: - application/json-patch+json - application/merge-patch+json - application/strategic-merge-patch+json description: partially update the specified ClusterRole operationId: patchRbacAuthorizationV1ClusterRole parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.rbac.v1.ClusterRole" "401": description: Unauthorized schemes: - https tags: - rbacAuthorization_v1 x-kubernetes-action: patch x-kubernetes-group-version-kind: group: rbac.authorization.k8s.io kind: ClusterRole version: v1 put: consumes: - "*/*" description: replace the specified ClusterRole operationId: replaceRbacAuthorizationV1ClusterRole parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.rbac.v1.ClusterRole" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.rbac.v1.ClusterRole" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.rbac.v1.ClusterRole" "401": description: Unauthorized schemes: - https tags: - rbacAuthorization_v1 x-kubernetes-action: put x-kubernetes-group-version-kind: group: rbac.authorization.k8s.io kind: ClusterRole version: v1 "/apis/rbac.authorization.k8s.io/v1/namespaces/{namespace}/rolebindings": delete: consumes: - "*/*" description: delete collection of RoleBinding operationId: deleteRbacAuthorizationV1CollectionNamespacedRoleBinding parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - rbacAuthorization_v1 x-kubernetes-action: deletecollection x-kubernetes-group-version-kind: group: rbac.authorization.k8s.io kind: RoleBinding version: v1 get: consumes: - "*/*" description: list or watch objects of kind RoleBinding operationId: listRbacAuthorizationV1NamespacedRoleBinding parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.rbac.v1.RoleBindingList" "401": description: Unauthorized schemes: - https tags: - rbacAuthorization_v1 x-kubernetes-action: list x-kubernetes-group-version-kind: group: rbac.authorization.k8s.io kind: RoleBinding version: v1 parameters: - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true post: consumes: - "*/*" description: create a RoleBinding operationId: createRbacAuthorizationV1NamespacedRoleBinding parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.rbac.v1.RoleBinding" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.rbac.v1.RoleBinding" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.rbac.v1.RoleBinding" "202": description: Accepted schema: $ref: "#/definitions/io.k8s.api.rbac.v1.RoleBinding" "401": description: Unauthorized schemes: - https tags: - rbacAuthorization_v1 x-kubernetes-action: post x-kubernetes-group-version-kind: group: rbac.authorization.k8s.io kind: RoleBinding version: v1 "/apis/rbac.authorization.k8s.io/v1/namespaces/{namespace}/rolebindings/{name}": delete: consumes: - "*/*" description: delete a RoleBinding operationId: deleteRbacAuthorizationV1NamespacedRoleBinding parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" - description: The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. in: query name: gracePeriodSeconds type: integer uniqueItems: true - description: "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both." in: query name: orphanDependents type: boolean uniqueItems: true - description: "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground." in: query name: propagationPolicy type: string uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - rbacAuthorization_v1 x-kubernetes-action: delete x-kubernetes-group-version-kind: group: rbac.authorization.k8s.io kind: RoleBinding version: v1 get: consumes: - "*/*" description: read the specified RoleBinding operationId: readRbacAuthorizationV1NamespacedRoleBinding produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.rbac.v1.RoleBinding" "401": description: Unauthorized schemes: - https tags: - rbacAuthorization_v1 x-kubernetes-action: get x-kubernetes-group-version-kind: group: rbac.authorization.k8s.io kind: RoleBinding version: v1 parameters: - description: name of the RoleBinding in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true patch: consumes: - application/json-patch+json - application/merge-patch+json - application/strategic-merge-patch+json description: partially update the specified RoleBinding operationId: patchRbacAuthorizationV1NamespacedRoleBinding parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.rbac.v1.RoleBinding" "401": description: Unauthorized schemes: - https tags: - rbacAuthorization_v1 x-kubernetes-action: patch x-kubernetes-group-version-kind: group: rbac.authorization.k8s.io kind: RoleBinding version: v1 put: consumes: - "*/*" description: replace the specified RoleBinding operationId: replaceRbacAuthorizationV1NamespacedRoleBinding parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.rbac.v1.RoleBinding" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.rbac.v1.RoleBinding" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.rbac.v1.RoleBinding" "401": description: Unauthorized schemes: - https tags: - rbacAuthorization_v1 x-kubernetes-action: put x-kubernetes-group-version-kind: group: rbac.authorization.k8s.io kind: RoleBinding version: v1 "/apis/rbac.authorization.k8s.io/v1/namespaces/{namespace}/roles": delete: consumes: - "*/*" description: delete collection of Role operationId: deleteRbacAuthorizationV1CollectionNamespacedRole parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - rbacAuthorization_v1 x-kubernetes-action: deletecollection x-kubernetes-group-version-kind: group: rbac.authorization.k8s.io kind: Role version: v1 get: consumes: - "*/*" description: list or watch objects of kind Role operationId: listRbacAuthorizationV1NamespacedRole parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.rbac.v1.RoleList" "401": description: Unauthorized schemes: - https tags: - rbacAuthorization_v1 x-kubernetes-action: list x-kubernetes-group-version-kind: group: rbac.authorization.k8s.io kind: Role version: v1 parameters: - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true post: consumes: - "*/*" description: create a Role operationId: createRbacAuthorizationV1NamespacedRole parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.rbac.v1.Role" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.rbac.v1.Role" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.rbac.v1.Role" "202": description: Accepted schema: $ref: "#/definitions/io.k8s.api.rbac.v1.Role" "401": description: Unauthorized schemes: - https tags: - rbacAuthorization_v1 x-kubernetes-action: post x-kubernetes-group-version-kind: group: rbac.authorization.k8s.io kind: Role version: v1 "/apis/rbac.authorization.k8s.io/v1/namespaces/{namespace}/roles/{name}": delete: consumes: - "*/*" description: delete a Role operationId: deleteRbacAuthorizationV1NamespacedRole parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" - description: The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. in: query name: gracePeriodSeconds type: integer uniqueItems: true - description: "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both." in: query name: orphanDependents type: boolean uniqueItems: true - description: "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground." in: query name: propagationPolicy type: string uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - rbacAuthorization_v1 x-kubernetes-action: delete x-kubernetes-group-version-kind: group: rbac.authorization.k8s.io kind: Role version: v1 get: consumes: - "*/*" description: read the specified Role operationId: readRbacAuthorizationV1NamespacedRole produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.rbac.v1.Role" "401": description: Unauthorized schemes: - https tags: - rbacAuthorization_v1 x-kubernetes-action: get x-kubernetes-group-version-kind: group: rbac.authorization.k8s.io kind: Role version: v1 parameters: - description: name of the Role in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true patch: consumes: - application/json-patch+json - application/merge-patch+json - application/strategic-merge-patch+json description: partially update the specified Role operationId: patchRbacAuthorizationV1NamespacedRole parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.rbac.v1.Role" "401": description: Unauthorized schemes: - https tags: - rbacAuthorization_v1 x-kubernetes-action: patch x-kubernetes-group-version-kind: group: rbac.authorization.k8s.io kind: Role version: v1 put: consumes: - "*/*" description: replace the specified Role operationId: replaceRbacAuthorizationV1NamespacedRole parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.rbac.v1.Role" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.rbac.v1.Role" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.rbac.v1.Role" "401": description: Unauthorized schemes: - https tags: - rbacAuthorization_v1 x-kubernetes-action: put x-kubernetes-group-version-kind: group: rbac.authorization.k8s.io kind: Role version: v1 /apis/rbac.authorization.k8s.io/v1/rolebindings: get: consumes: - "*/*" description: list or watch objects of kind RoleBinding operationId: listRbacAuthorizationV1RoleBindingForAllNamespaces produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.rbac.v1.RoleBindingList" "401": description: Unauthorized schemes: - https tags: - rbacAuthorization_v1 x-kubernetes-action: list x-kubernetes-group-version-kind: group: rbac.authorization.k8s.io kind: RoleBinding version: v1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true /apis/rbac.authorization.k8s.io/v1/roles: get: consumes: - "*/*" description: list or watch objects of kind Role operationId: listRbacAuthorizationV1RoleForAllNamespaces produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.rbac.v1.RoleList" "401": description: Unauthorized schemes: - https tags: - rbacAuthorization_v1 x-kubernetes-action: list x-kubernetes-group-version-kind: group: rbac.authorization.k8s.io kind: Role version: v1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true /apis/rbac.authorization.k8s.io/v1/watch/clusterrolebindings: get: consumes: - "*/*" description: watch individual changes to a list of ClusterRoleBinding operationId: watchRbacAuthorizationV1ClusterRoleBindingList produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - rbacAuthorization_v1 x-kubernetes-action: watchlist x-kubernetes-group-version-kind: group: rbac.authorization.k8s.io kind: ClusterRoleBinding version: v1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true "/apis/rbac.authorization.k8s.io/v1/watch/clusterrolebindings/{name}": get: consumes: - "*/*" description: watch changes to an object of kind ClusterRoleBinding operationId: watchRbacAuthorizationV1ClusterRoleBinding produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - rbacAuthorization_v1 x-kubernetes-action: watch x-kubernetes-group-version-kind: group: rbac.authorization.k8s.io kind: ClusterRoleBinding version: v1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: name of the ClusterRoleBinding in: path name: name required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true /apis/rbac.authorization.k8s.io/v1/watch/clusterroles: get: consumes: - "*/*" description: watch individual changes to a list of ClusterRole operationId: watchRbacAuthorizationV1ClusterRoleList produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - rbacAuthorization_v1 x-kubernetes-action: watchlist x-kubernetes-group-version-kind: group: rbac.authorization.k8s.io kind: ClusterRole version: v1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true "/apis/rbac.authorization.k8s.io/v1/watch/clusterroles/{name}": get: consumes: - "*/*" description: watch changes to an object of kind ClusterRole operationId: watchRbacAuthorizationV1ClusterRole produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - rbacAuthorization_v1 x-kubernetes-action: watch x-kubernetes-group-version-kind: group: rbac.authorization.k8s.io kind: ClusterRole version: v1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: name of the ClusterRole in: path name: name required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true "/apis/rbac.authorization.k8s.io/v1/watch/namespaces/{namespace}/rolebindings": get: consumes: - "*/*" description: watch individual changes to a list of RoleBinding operationId: watchRbacAuthorizationV1NamespacedRoleBindingList produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - rbacAuthorization_v1 x-kubernetes-action: watchlist x-kubernetes-group-version-kind: group: rbac.authorization.k8s.io kind: RoleBinding version: v1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true "/apis/rbac.authorization.k8s.io/v1/watch/namespaces/{namespace}/rolebindings/{name}": get: consumes: - "*/*" description: watch changes to an object of kind RoleBinding operationId: watchRbacAuthorizationV1NamespacedRoleBinding produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - rbacAuthorization_v1 x-kubernetes-action: watch x-kubernetes-group-version-kind: group: rbac.authorization.k8s.io kind: RoleBinding version: v1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: name of the RoleBinding in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true "/apis/rbac.authorization.k8s.io/v1/watch/namespaces/{namespace}/roles": get: consumes: - "*/*" description: watch individual changes to a list of Role operationId: watchRbacAuthorizationV1NamespacedRoleList produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - rbacAuthorization_v1 x-kubernetes-action: watchlist x-kubernetes-group-version-kind: group: rbac.authorization.k8s.io kind: Role version: v1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true "/apis/rbac.authorization.k8s.io/v1/watch/namespaces/{namespace}/roles/{name}": get: consumes: - "*/*" description: watch changes to an object of kind Role operationId: watchRbacAuthorizationV1NamespacedRole produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - rbacAuthorization_v1 x-kubernetes-action: watch x-kubernetes-group-version-kind: group: rbac.authorization.k8s.io kind: Role version: v1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: name of the Role in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true /apis/rbac.authorization.k8s.io/v1/watch/rolebindings: get: consumes: - "*/*" description: watch individual changes to a list of RoleBinding operationId: watchRbacAuthorizationV1RoleBindingListForAllNamespaces produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - rbacAuthorization_v1 x-kubernetes-action: watchlist x-kubernetes-group-version-kind: group: rbac.authorization.k8s.io kind: RoleBinding version: v1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true /apis/rbac.authorization.k8s.io/v1/watch/roles: get: consumes: - "*/*" description: watch individual changes to a list of Role operationId: watchRbacAuthorizationV1RoleListForAllNamespaces produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - rbacAuthorization_v1 x-kubernetes-action: watchlist x-kubernetes-group-version-kind: group: rbac.authorization.k8s.io kind: Role version: v1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true /apis/rbac.authorization.k8s.io/v1alpha1/: get: consumes: - application/json - application/yaml - application/vnd.kubernetes.protobuf description: get available resources operationId: getRbacAuthorizationV1alpha1APIResources produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList" "401": description: Unauthorized schemes: - https tags: - rbacAuthorization_v1alpha1 /apis/rbac.authorization.k8s.io/v1alpha1/clusterrolebindings: delete: consumes: - "*/*" description: delete collection of ClusterRoleBinding operationId: deleteRbacAuthorizationV1alpha1CollectionClusterRoleBinding parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - rbacAuthorization_v1alpha1 x-kubernetes-action: deletecollection x-kubernetes-group-version-kind: group: rbac.authorization.k8s.io kind: ClusterRoleBinding version: v1alpha1 get: consumes: - "*/*" description: list or watch objects of kind ClusterRoleBinding operationId: listRbacAuthorizationV1alpha1ClusterRoleBinding parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.rbac.v1alpha1.ClusterRoleBindingList" "401": description: Unauthorized schemes: - https tags: - rbacAuthorization_v1alpha1 x-kubernetes-action: list x-kubernetes-group-version-kind: group: rbac.authorization.k8s.io kind: ClusterRoleBinding version: v1alpha1 parameters: - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true post: consumes: - "*/*" description: create a ClusterRoleBinding operationId: createRbacAuthorizationV1alpha1ClusterRoleBinding parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.rbac.v1alpha1.ClusterRoleBinding" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.rbac.v1alpha1.ClusterRoleBinding" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.rbac.v1alpha1.ClusterRoleBinding" "202": description: Accepted schema: $ref: "#/definitions/io.k8s.api.rbac.v1alpha1.ClusterRoleBinding" "401": description: Unauthorized schemes: - https tags: - rbacAuthorization_v1alpha1 x-kubernetes-action: post x-kubernetes-group-version-kind: group: rbac.authorization.k8s.io kind: ClusterRoleBinding version: v1alpha1 "/apis/rbac.authorization.k8s.io/v1alpha1/clusterrolebindings/{name}": delete: consumes: - "*/*" description: delete a ClusterRoleBinding operationId: deleteRbacAuthorizationV1alpha1ClusterRoleBinding parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" - description: The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. in: query name: gracePeriodSeconds type: integer uniqueItems: true - description: "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both." in: query name: orphanDependents type: boolean uniqueItems: true - description: "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground." in: query name: propagationPolicy type: string uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - rbacAuthorization_v1alpha1 x-kubernetes-action: delete x-kubernetes-group-version-kind: group: rbac.authorization.k8s.io kind: ClusterRoleBinding version: v1alpha1 get: consumes: - "*/*" description: read the specified ClusterRoleBinding operationId: readRbacAuthorizationV1alpha1ClusterRoleBinding produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.rbac.v1alpha1.ClusterRoleBinding" "401": description: Unauthorized schemes: - https tags: - rbacAuthorization_v1alpha1 x-kubernetes-action: get x-kubernetes-group-version-kind: group: rbac.authorization.k8s.io kind: ClusterRoleBinding version: v1alpha1 parameters: - description: name of the ClusterRoleBinding in: path name: name required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true patch: consumes: - application/json-patch+json - application/merge-patch+json - application/strategic-merge-patch+json description: partially update the specified ClusterRoleBinding operationId: patchRbacAuthorizationV1alpha1ClusterRoleBinding parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.rbac.v1alpha1.ClusterRoleBinding" "401": description: Unauthorized schemes: - https tags: - rbacAuthorization_v1alpha1 x-kubernetes-action: patch x-kubernetes-group-version-kind: group: rbac.authorization.k8s.io kind: ClusterRoleBinding version: v1alpha1 put: consumes: - "*/*" description: replace the specified ClusterRoleBinding operationId: replaceRbacAuthorizationV1alpha1ClusterRoleBinding parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.rbac.v1alpha1.ClusterRoleBinding" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.rbac.v1alpha1.ClusterRoleBinding" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.rbac.v1alpha1.ClusterRoleBinding" "401": description: Unauthorized schemes: - https tags: - rbacAuthorization_v1alpha1 x-kubernetes-action: put x-kubernetes-group-version-kind: group: rbac.authorization.k8s.io kind: ClusterRoleBinding version: v1alpha1 /apis/rbac.authorization.k8s.io/v1alpha1/clusterroles: delete: consumes: - "*/*" description: delete collection of ClusterRole operationId: deleteRbacAuthorizationV1alpha1CollectionClusterRole parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - rbacAuthorization_v1alpha1 x-kubernetes-action: deletecollection x-kubernetes-group-version-kind: group: rbac.authorization.k8s.io kind: ClusterRole version: v1alpha1 get: consumes: - "*/*" description: list or watch objects of kind ClusterRole operationId: listRbacAuthorizationV1alpha1ClusterRole parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.rbac.v1alpha1.ClusterRoleList" "401": description: Unauthorized schemes: - https tags: - rbacAuthorization_v1alpha1 x-kubernetes-action: list x-kubernetes-group-version-kind: group: rbac.authorization.k8s.io kind: ClusterRole version: v1alpha1 parameters: - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true post: consumes: - "*/*" description: create a ClusterRole operationId: createRbacAuthorizationV1alpha1ClusterRole parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.rbac.v1alpha1.ClusterRole" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.rbac.v1alpha1.ClusterRole" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.rbac.v1alpha1.ClusterRole" "202": description: Accepted schema: $ref: "#/definitions/io.k8s.api.rbac.v1alpha1.ClusterRole" "401": description: Unauthorized schemes: - https tags: - rbacAuthorization_v1alpha1 x-kubernetes-action: post x-kubernetes-group-version-kind: group: rbac.authorization.k8s.io kind: ClusterRole version: v1alpha1 "/apis/rbac.authorization.k8s.io/v1alpha1/clusterroles/{name}": delete: consumes: - "*/*" description: delete a ClusterRole operationId: deleteRbacAuthorizationV1alpha1ClusterRole parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" - description: The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. in: query name: gracePeriodSeconds type: integer uniqueItems: true - description: "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both." in: query name: orphanDependents type: boolean uniqueItems: true - description: "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground." in: query name: propagationPolicy type: string uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - rbacAuthorization_v1alpha1 x-kubernetes-action: delete x-kubernetes-group-version-kind: group: rbac.authorization.k8s.io kind: ClusterRole version: v1alpha1 get: consumes: - "*/*" description: read the specified ClusterRole operationId: readRbacAuthorizationV1alpha1ClusterRole produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.rbac.v1alpha1.ClusterRole" "401": description: Unauthorized schemes: - https tags: - rbacAuthorization_v1alpha1 x-kubernetes-action: get x-kubernetes-group-version-kind: group: rbac.authorization.k8s.io kind: ClusterRole version: v1alpha1 parameters: - description: name of the ClusterRole in: path name: name required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true patch: consumes: - application/json-patch+json - application/merge-patch+json - application/strategic-merge-patch+json description: partially update the specified ClusterRole operationId: patchRbacAuthorizationV1alpha1ClusterRole parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.rbac.v1alpha1.ClusterRole" "401": description: Unauthorized schemes: - https tags: - rbacAuthorization_v1alpha1 x-kubernetes-action: patch x-kubernetes-group-version-kind: group: rbac.authorization.k8s.io kind: ClusterRole version: v1alpha1 put: consumes: - "*/*" description: replace the specified ClusterRole operationId: replaceRbacAuthorizationV1alpha1ClusterRole parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.rbac.v1alpha1.ClusterRole" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.rbac.v1alpha1.ClusterRole" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.rbac.v1alpha1.ClusterRole" "401": description: Unauthorized schemes: - https tags: - rbacAuthorization_v1alpha1 x-kubernetes-action: put x-kubernetes-group-version-kind: group: rbac.authorization.k8s.io kind: ClusterRole version: v1alpha1 "/apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/rolebindings": delete: consumes: - "*/*" description: delete collection of RoleBinding operationId: deleteRbacAuthorizationV1alpha1CollectionNamespacedRoleBinding parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - rbacAuthorization_v1alpha1 x-kubernetes-action: deletecollection x-kubernetes-group-version-kind: group: rbac.authorization.k8s.io kind: RoleBinding version: v1alpha1 get: consumes: - "*/*" description: list or watch objects of kind RoleBinding operationId: listRbacAuthorizationV1alpha1NamespacedRoleBinding parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.rbac.v1alpha1.RoleBindingList" "401": description: Unauthorized schemes: - https tags: - rbacAuthorization_v1alpha1 x-kubernetes-action: list x-kubernetes-group-version-kind: group: rbac.authorization.k8s.io kind: RoleBinding version: v1alpha1 parameters: - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true post: consumes: - "*/*" description: create a RoleBinding operationId: createRbacAuthorizationV1alpha1NamespacedRoleBinding parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.rbac.v1alpha1.RoleBinding" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.rbac.v1alpha1.RoleBinding" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.rbac.v1alpha1.RoleBinding" "202": description: Accepted schema: $ref: "#/definitions/io.k8s.api.rbac.v1alpha1.RoleBinding" "401": description: Unauthorized schemes: - https tags: - rbacAuthorization_v1alpha1 x-kubernetes-action: post x-kubernetes-group-version-kind: group: rbac.authorization.k8s.io kind: RoleBinding version: v1alpha1 "/apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/rolebindings/{name}": delete: consumes: - "*/*" description: delete a RoleBinding operationId: deleteRbacAuthorizationV1alpha1NamespacedRoleBinding parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" - description: The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. in: query name: gracePeriodSeconds type: integer uniqueItems: true - description: "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both." in: query name: orphanDependents type: boolean uniqueItems: true - description: "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground." in: query name: propagationPolicy type: string uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - rbacAuthorization_v1alpha1 x-kubernetes-action: delete x-kubernetes-group-version-kind: group: rbac.authorization.k8s.io kind: RoleBinding version: v1alpha1 get: consumes: - "*/*" description: read the specified RoleBinding operationId: readRbacAuthorizationV1alpha1NamespacedRoleBinding produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.rbac.v1alpha1.RoleBinding" "401": description: Unauthorized schemes: - https tags: - rbacAuthorization_v1alpha1 x-kubernetes-action: get x-kubernetes-group-version-kind: group: rbac.authorization.k8s.io kind: RoleBinding version: v1alpha1 parameters: - description: name of the RoleBinding in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true patch: consumes: - application/json-patch+json - application/merge-patch+json - application/strategic-merge-patch+json description: partially update the specified RoleBinding operationId: patchRbacAuthorizationV1alpha1NamespacedRoleBinding parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.rbac.v1alpha1.RoleBinding" "401": description: Unauthorized schemes: - https tags: - rbacAuthorization_v1alpha1 x-kubernetes-action: patch x-kubernetes-group-version-kind: group: rbac.authorization.k8s.io kind: RoleBinding version: v1alpha1 put: consumes: - "*/*" description: replace the specified RoleBinding operationId: replaceRbacAuthorizationV1alpha1NamespacedRoleBinding parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.rbac.v1alpha1.RoleBinding" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.rbac.v1alpha1.RoleBinding" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.rbac.v1alpha1.RoleBinding" "401": description: Unauthorized schemes: - https tags: - rbacAuthorization_v1alpha1 x-kubernetes-action: put x-kubernetes-group-version-kind: group: rbac.authorization.k8s.io kind: RoleBinding version: v1alpha1 "/apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/roles": delete: consumes: - "*/*" description: delete collection of Role operationId: deleteRbacAuthorizationV1alpha1CollectionNamespacedRole parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - rbacAuthorization_v1alpha1 x-kubernetes-action: deletecollection x-kubernetes-group-version-kind: group: rbac.authorization.k8s.io kind: Role version: v1alpha1 get: consumes: - "*/*" description: list or watch objects of kind Role operationId: listRbacAuthorizationV1alpha1NamespacedRole parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.rbac.v1alpha1.RoleList" "401": description: Unauthorized schemes: - https tags: - rbacAuthorization_v1alpha1 x-kubernetes-action: list x-kubernetes-group-version-kind: group: rbac.authorization.k8s.io kind: Role version: v1alpha1 parameters: - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true post: consumes: - "*/*" description: create a Role operationId: createRbacAuthorizationV1alpha1NamespacedRole parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.rbac.v1alpha1.Role" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.rbac.v1alpha1.Role" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.rbac.v1alpha1.Role" "202": description: Accepted schema: $ref: "#/definitions/io.k8s.api.rbac.v1alpha1.Role" "401": description: Unauthorized schemes: - https tags: - rbacAuthorization_v1alpha1 x-kubernetes-action: post x-kubernetes-group-version-kind: group: rbac.authorization.k8s.io kind: Role version: v1alpha1 "/apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/roles/{name}": delete: consumes: - "*/*" description: delete a Role operationId: deleteRbacAuthorizationV1alpha1NamespacedRole parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" - description: The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. in: query name: gracePeriodSeconds type: integer uniqueItems: true - description: "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both." in: query name: orphanDependents type: boolean uniqueItems: true - description: "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground." in: query name: propagationPolicy type: string uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - rbacAuthorization_v1alpha1 x-kubernetes-action: delete x-kubernetes-group-version-kind: group: rbac.authorization.k8s.io kind: Role version: v1alpha1 get: consumes: - "*/*" description: read the specified Role operationId: readRbacAuthorizationV1alpha1NamespacedRole produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.rbac.v1alpha1.Role" "401": description: Unauthorized schemes: - https tags: - rbacAuthorization_v1alpha1 x-kubernetes-action: get x-kubernetes-group-version-kind: group: rbac.authorization.k8s.io kind: Role version: v1alpha1 parameters: - description: name of the Role in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true patch: consumes: - application/json-patch+json - application/merge-patch+json - application/strategic-merge-patch+json description: partially update the specified Role operationId: patchRbacAuthorizationV1alpha1NamespacedRole parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.rbac.v1alpha1.Role" "401": description: Unauthorized schemes: - https tags: - rbacAuthorization_v1alpha1 x-kubernetes-action: patch x-kubernetes-group-version-kind: group: rbac.authorization.k8s.io kind: Role version: v1alpha1 put: consumes: - "*/*" description: replace the specified Role operationId: replaceRbacAuthorizationV1alpha1NamespacedRole parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.rbac.v1alpha1.Role" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.rbac.v1alpha1.Role" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.rbac.v1alpha1.Role" "401": description: Unauthorized schemes: - https tags: - rbacAuthorization_v1alpha1 x-kubernetes-action: put x-kubernetes-group-version-kind: group: rbac.authorization.k8s.io kind: Role version: v1alpha1 /apis/rbac.authorization.k8s.io/v1alpha1/rolebindings: get: consumes: - "*/*" description: list or watch objects of kind RoleBinding operationId: listRbacAuthorizationV1alpha1RoleBindingForAllNamespaces produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.rbac.v1alpha1.RoleBindingList" "401": description: Unauthorized schemes: - https tags: - rbacAuthorization_v1alpha1 x-kubernetes-action: list x-kubernetes-group-version-kind: group: rbac.authorization.k8s.io kind: RoleBinding version: v1alpha1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true /apis/rbac.authorization.k8s.io/v1alpha1/roles: get: consumes: - "*/*" description: list or watch objects of kind Role operationId: listRbacAuthorizationV1alpha1RoleForAllNamespaces produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.rbac.v1alpha1.RoleList" "401": description: Unauthorized schemes: - https tags: - rbacAuthorization_v1alpha1 x-kubernetes-action: list x-kubernetes-group-version-kind: group: rbac.authorization.k8s.io kind: Role version: v1alpha1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true /apis/rbac.authorization.k8s.io/v1alpha1/watch/clusterrolebindings: get: consumes: - "*/*" description: watch individual changes to a list of ClusterRoleBinding operationId: watchRbacAuthorizationV1alpha1ClusterRoleBindingList produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - rbacAuthorization_v1alpha1 x-kubernetes-action: watchlist x-kubernetes-group-version-kind: group: rbac.authorization.k8s.io kind: ClusterRoleBinding version: v1alpha1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true "/apis/rbac.authorization.k8s.io/v1alpha1/watch/clusterrolebindings/{name}": get: consumes: - "*/*" description: watch changes to an object of kind ClusterRoleBinding operationId: watchRbacAuthorizationV1alpha1ClusterRoleBinding produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - rbacAuthorization_v1alpha1 x-kubernetes-action: watch x-kubernetes-group-version-kind: group: rbac.authorization.k8s.io kind: ClusterRoleBinding version: v1alpha1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: name of the ClusterRoleBinding in: path name: name required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true /apis/rbac.authorization.k8s.io/v1alpha1/watch/clusterroles: get: consumes: - "*/*" description: watch individual changes to a list of ClusterRole operationId: watchRbacAuthorizationV1alpha1ClusterRoleList produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - rbacAuthorization_v1alpha1 x-kubernetes-action: watchlist x-kubernetes-group-version-kind: group: rbac.authorization.k8s.io kind: ClusterRole version: v1alpha1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true "/apis/rbac.authorization.k8s.io/v1alpha1/watch/clusterroles/{name}": get: consumes: - "*/*" description: watch changes to an object of kind ClusterRole operationId: watchRbacAuthorizationV1alpha1ClusterRole produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - rbacAuthorization_v1alpha1 x-kubernetes-action: watch x-kubernetes-group-version-kind: group: rbac.authorization.k8s.io kind: ClusterRole version: v1alpha1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: name of the ClusterRole in: path name: name required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true "/apis/rbac.authorization.k8s.io/v1alpha1/watch/namespaces/{namespace}/rolebindings": get: consumes: - "*/*" description: watch individual changes to a list of RoleBinding operationId: watchRbacAuthorizationV1alpha1NamespacedRoleBindingList produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - rbacAuthorization_v1alpha1 x-kubernetes-action: watchlist x-kubernetes-group-version-kind: group: rbac.authorization.k8s.io kind: RoleBinding version: v1alpha1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true "/apis/rbac.authorization.k8s.io/v1alpha1/watch/namespaces/{namespace}/rolebindings/{name}": get: consumes: - "*/*" description: watch changes to an object of kind RoleBinding operationId: watchRbacAuthorizationV1alpha1NamespacedRoleBinding produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - rbacAuthorization_v1alpha1 x-kubernetes-action: watch x-kubernetes-group-version-kind: group: rbac.authorization.k8s.io kind: RoleBinding version: v1alpha1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: name of the RoleBinding in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true "/apis/rbac.authorization.k8s.io/v1alpha1/watch/namespaces/{namespace}/roles": get: consumes: - "*/*" description: watch individual changes to a list of Role operationId: watchRbacAuthorizationV1alpha1NamespacedRoleList produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - rbacAuthorization_v1alpha1 x-kubernetes-action: watchlist x-kubernetes-group-version-kind: group: rbac.authorization.k8s.io kind: Role version: v1alpha1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true "/apis/rbac.authorization.k8s.io/v1alpha1/watch/namespaces/{namespace}/roles/{name}": get: consumes: - "*/*" description: watch changes to an object of kind Role operationId: watchRbacAuthorizationV1alpha1NamespacedRole produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - rbacAuthorization_v1alpha1 x-kubernetes-action: watch x-kubernetes-group-version-kind: group: rbac.authorization.k8s.io kind: Role version: v1alpha1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: name of the Role in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true /apis/rbac.authorization.k8s.io/v1alpha1/watch/rolebindings: get: consumes: - "*/*" description: watch individual changes to a list of RoleBinding operationId: watchRbacAuthorizationV1alpha1RoleBindingListForAllNamespaces produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - rbacAuthorization_v1alpha1 x-kubernetes-action: watchlist x-kubernetes-group-version-kind: group: rbac.authorization.k8s.io kind: RoleBinding version: v1alpha1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true /apis/rbac.authorization.k8s.io/v1alpha1/watch/roles: get: consumes: - "*/*" description: watch individual changes to a list of Role operationId: watchRbacAuthorizationV1alpha1RoleListForAllNamespaces produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - rbacAuthorization_v1alpha1 x-kubernetes-action: watchlist x-kubernetes-group-version-kind: group: rbac.authorization.k8s.io kind: Role version: v1alpha1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true /apis/rbac.authorization.k8s.io/v1beta1/: get: consumes: - application/json - application/yaml - application/vnd.kubernetes.protobuf description: get available resources operationId: getRbacAuthorizationV1beta1APIResources produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList" "401": description: Unauthorized schemes: - https tags: - rbacAuthorization_v1beta1 /apis/rbac.authorization.k8s.io/v1beta1/clusterrolebindings: delete: consumes: - "*/*" description: delete collection of ClusterRoleBinding operationId: deleteRbacAuthorizationV1beta1CollectionClusterRoleBinding parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - rbacAuthorization_v1beta1 x-kubernetes-action: deletecollection x-kubernetes-group-version-kind: group: rbac.authorization.k8s.io kind: ClusterRoleBinding version: v1beta1 get: consumes: - "*/*" description: list or watch objects of kind ClusterRoleBinding operationId: listRbacAuthorizationV1beta1ClusterRoleBinding parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.rbac.v1beta1.ClusterRoleBindingList" "401": description: Unauthorized schemes: - https tags: - rbacAuthorization_v1beta1 x-kubernetes-action: list x-kubernetes-group-version-kind: group: rbac.authorization.k8s.io kind: ClusterRoleBinding version: v1beta1 parameters: - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true post: consumes: - "*/*" description: create a ClusterRoleBinding operationId: createRbacAuthorizationV1beta1ClusterRoleBinding parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.rbac.v1beta1.ClusterRoleBinding" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.rbac.v1beta1.ClusterRoleBinding" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.rbac.v1beta1.ClusterRoleBinding" "202": description: Accepted schema: $ref: "#/definitions/io.k8s.api.rbac.v1beta1.ClusterRoleBinding" "401": description: Unauthorized schemes: - https tags: - rbacAuthorization_v1beta1 x-kubernetes-action: post x-kubernetes-group-version-kind: group: rbac.authorization.k8s.io kind: ClusterRoleBinding version: v1beta1 "/apis/rbac.authorization.k8s.io/v1beta1/clusterrolebindings/{name}": delete: consumes: - "*/*" description: delete a ClusterRoleBinding operationId: deleteRbacAuthorizationV1beta1ClusterRoleBinding parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" - description: The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. in: query name: gracePeriodSeconds type: integer uniqueItems: true - description: "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both." in: query name: orphanDependents type: boolean uniqueItems: true - description: "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground." in: query name: propagationPolicy type: string uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - rbacAuthorization_v1beta1 x-kubernetes-action: delete x-kubernetes-group-version-kind: group: rbac.authorization.k8s.io kind: ClusterRoleBinding version: v1beta1 get: consumes: - "*/*" description: read the specified ClusterRoleBinding operationId: readRbacAuthorizationV1beta1ClusterRoleBinding produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.rbac.v1beta1.ClusterRoleBinding" "401": description: Unauthorized schemes: - https tags: - rbacAuthorization_v1beta1 x-kubernetes-action: get x-kubernetes-group-version-kind: group: rbac.authorization.k8s.io kind: ClusterRoleBinding version: v1beta1 parameters: - description: name of the ClusterRoleBinding in: path name: name required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true patch: consumes: - application/json-patch+json - application/merge-patch+json - application/strategic-merge-patch+json description: partially update the specified ClusterRoleBinding operationId: patchRbacAuthorizationV1beta1ClusterRoleBinding parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.rbac.v1beta1.ClusterRoleBinding" "401": description: Unauthorized schemes: - https tags: - rbacAuthorization_v1beta1 x-kubernetes-action: patch x-kubernetes-group-version-kind: group: rbac.authorization.k8s.io kind: ClusterRoleBinding version: v1beta1 put: consumes: - "*/*" description: replace the specified ClusterRoleBinding operationId: replaceRbacAuthorizationV1beta1ClusterRoleBinding parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.rbac.v1beta1.ClusterRoleBinding" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.rbac.v1beta1.ClusterRoleBinding" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.rbac.v1beta1.ClusterRoleBinding" "401": description: Unauthorized schemes: - https tags: - rbacAuthorization_v1beta1 x-kubernetes-action: put x-kubernetes-group-version-kind: group: rbac.authorization.k8s.io kind: ClusterRoleBinding version: v1beta1 /apis/rbac.authorization.k8s.io/v1beta1/clusterroles: delete: consumes: - "*/*" description: delete collection of ClusterRole operationId: deleteRbacAuthorizationV1beta1CollectionClusterRole parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - rbacAuthorization_v1beta1 x-kubernetes-action: deletecollection x-kubernetes-group-version-kind: group: rbac.authorization.k8s.io kind: ClusterRole version: v1beta1 get: consumes: - "*/*" description: list or watch objects of kind ClusterRole operationId: listRbacAuthorizationV1beta1ClusterRole parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.rbac.v1beta1.ClusterRoleList" "401": description: Unauthorized schemes: - https tags: - rbacAuthorization_v1beta1 x-kubernetes-action: list x-kubernetes-group-version-kind: group: rbac.authorization.k8s.io kind: ClusterRole version: v1beta1 parameters: - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true post: consumes: - "*/*" description: create a ClusterRole operationId: createRbacAuthorizationV1beta1ClusterRole parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.rbac.v1beta1.ClusterRole" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.rbac.v1beta1.ClusterRole" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.rbac.v1beta1.ClusterRole" "202": description: Accepted schema: $ref: "#/definitions/io.k8s.api.rbac.v1beta1.ClusterRole" "401": description: Unauthorized schemes: - https tags: - rbacAuthorization_v1beta1 x-kubernetes-action: post x-kubernetes-group-version-kind: group: rbac.authorization.k8s.io kind: ClusterRole version: v1beta1 "/apis/rbac.authorization.k8s.io/v1beta1/clusterroles/{name}": delete: consumes: - "*/*" description: delete a ClusterRole operationId: deleteRbacAuthorizationV1beta1ClusterRole parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" - description: The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. in: query name: gracePeriodSeconds type: integer uniqueItems: true - description: "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both." in: query name: orphanDependents type: boolean uniqueItems: true - description: "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground." in: query name: propagationPolicy type: string uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - rbacAuthorization_v1beta1 x-kubernetes-action: delete x-kubernetes-group-version-kind: group: rbac.authorization.k8s.io kind: ClusterRole version: v1beta1 get: consumes: - "*/*" description: read the specified ClusterRole operationId: readRbacAuthorizationV1beta1ClusterRole produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.rbac.v1beta1.ClusterRole" "401": description: Unauthorized schemes: - https tags: - rbacAuthorization_v1beta1 x-kubernetes-action: get x-kubernetes-group-version-kind: group: rbac.authorization.k8s.io kind: ClusterRole version: v1beta1 parameters: - description: name of the ClusterRole in: path name: name required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true patch: consumes: - application/json-patch+json - application/merge-patch+json - application/strategic-merge-patch+json description: partially update the specified ClusterRole operationId: patchRbacAuthorizationV1beta1ClusterRole parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.rbac.v1beta1.ClusterRole" "401": description: Unauthorized schemes: - https tags: - rbacAuthorization_v1beta1 x-kubernetes-action: patch x-kubernetes-group-version-kind: group: rbac.authorization.k8s.io kind: ClusterRole version: v1beta1 put: consumes: - "*/*" description: replace the specified ClusterRole operationId: replaceRbacAuthorizationV1beta1ClusterRole parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.rbac.v1beta1.ClusterRole" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.rbac.v1beta1.ClusterRole" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.rbac.v1beta1.ClusterRole" "401": description: Unauthorized schemes: - https tags: - rbacAuthorization_v1beta1 x-kubernetes-action: put x-kubernetes-group-version-kind: group: rbac.authorization.k8s.io kind: ClusterRole version: v1beta1 "/apis/rbac.authorization.k8s.io/v1beta1/namespaces/{namespace}/rolebindings": delete: consumes: - "*/*" description: delete collection of RoleBinding operationId: deleteRbacAuthorizationV1beta1CollectionNamespacedRoleBinding parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - rbacAuthorization_v1beta1 x-kubernetes-action: deletecollection x-kubernetes-group-version-kind: group: rbac.authorization.k8s.io kind: RoleBinding version: v1beta1 get: consumes: - "*/*" description: list or watch objects of kind RoleBinding operationId: listRbacAuthorizationV1beta1NamespacedRoleBinding parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.rbac.v1beta1.RoleBindingList" "401": description: Unauthorized schemes: - https tags: - rbacAuthorization_v1beta1 x-kubernetes-action: list x-kubernetes-group-version-kind: group: rbac.authorization.k8s.io kind: RoleBinding version: v1beta1 parameters: - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true post: consumes: - "*/*" description: create a RoleBinding operationId: createRbacAuthorizationV1beta1NamespacedRoleBinding parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.rbac.v1beta1.RoleBinding" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.rbac.v1beta1.RoleBinding" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.rbac.v1beta1.RoleBinding" "202": description: Accepted schema: $ref: "#/definitions/io.k8s.api.rbac.v1beta1.RoleBinding" "401": description: Unauthorized schemes: - https tags: - rbacAuthorization_v1beta1 x-kubernetes-action: post x-kubernetes-group-version-kind: group: rbac.authorization.k8s.io kind: RoleBinding version: v1beta1 "/apis/rbac.authorization.k8s.io/v1beta1/namespaces/{namespace}/rolebindings/{name}": delete: consumes: - "*/*" description: delete a RoleBinding operationId: deleteRbacAuthorizationV1beta1NamespacedRoleBinding parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" - description: The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. in: query name: gracePeriodSeconds type: integer uniqueItems: true - description: "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both." in: query name: orphanDependents type: boolean uniqueItems: true - description: "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground." in: query name: propagationPolicy type: string uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - rbacAuthorization_v1beta1 x-kubernetes-action: delete x-kubernetes-group-version-kind: group: rbac.authorization.k8s.io kind: RoleBinding version: v1beta1 get: consumes: - "*/*" description: read the specified RoleBinding operationId: readRbacAuthorizationV1beta1NamespacedRoleBinding produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.rbac.v1beta1.RoleBinding" "401": description: Unauthorized schemes: - https tags: - rbacAuthorization_v1beta1 x-kubernetes-action: get x-kubernetes-group-version-kind: group: rbac.authorization.k8s.io kind: RoleBinding version: v1beta1 parameters: - description: name of the RoleBinding in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true patch: consumes: - application/json-patch+json - application/merge-patch+json - application/strategic-merge-patch+json description: partially update the specified RoleBinding operationId: patchRbacAuthorizationV1beta1NamespacedRoleBinding parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.rbac.v1beta1.RoleBinding" "401": description: Unauthorized schemes: - https tags: - rbacAuthorization_v1beta1 x-kubernetes-action: patch x-kubernetes-group-version-kind: group: rbac.authorization.k8s.io kind: RoleBinding version: v1beta1 put: consumes: - "*/*" description: replace the specified RoleBinding operationId: replaceRbacAuthorizationV1beta1NamespacedRoleBinding parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.rbac.v1beta1.RoleBinding" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.rbac.v1beta1.RoleBinding" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.rbac.v1beta1.RoleBinding" "401": description: Unauthorized schemes: - https tags: - rbacAuthorization_v1beta1 x-kubernetes-action: put x-kubernetes-group-version-kind: group: rbac.authorization.k8s.io kind: RoleBinding version: v1beta1 "/apis/rbac.authorization.k8s.io/v1beta1/namespaces/{namespace}/roles": delete: consumes: - "*/*" description: delete collection of Role operationId: deleteRbacAuthorizationV1beta1CollectionNamespacedRole parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - rbacAuthorization_v1beta1 x-kubernetes-action: deletecollection x-kubernetes-group-version-kind: group: rbac.authorization.k8s.io kind: Role version: v1beta1 get: consumes: - "*/*" description: list or watch objects of kind Role operationId: listRbacAuthorizationV1beta1NamespacedRole parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.rbac.v1beta1.RoleList" "401": description: Unauthorized schemes: - https tags: - rbacAuthorization_v1beta1 x-kubernetes-action: list x-kubernetes-group-version-kind: group: rbac.authorization.k8s.io kind: Role version: v1beta1 parameters: - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true post: consumes: - "*/*" description: create a Role operationId: createRbacAuthorizationV1beta1NamespacedRole parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.rbac.v1beta1.Role" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.rbac.v1beta1.Role" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.rbac.v1beta1.Role" "202": description: Accepted schema: $ref: "#/definitions/io.k8s.api.rbac.v1beta1.Role" "401": description: Unauthorized schemes: - https tags: - rbacAuthorization_v1beta1 x-kubernetes-action: post x-kubernetes-group-version-kind: group: rbac.authorization.k8s.io kind: Role version: v1beta1 "/apis/rbac.authorization.k8s.io/v1beta1/namespaces/{namespace}/roles/{name}": delete: consumes: - "*/*" description: delete a Role operationId: deleteRbacAuthorizationV1beta1NamespacedRole parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" - description: The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. in: query name: gracePeriodSeconds type: integer uniqueItems: true - description: "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both." in: query name: orphanDependents type: boolean uniqueItems: true - description: "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground." in: query name: propagationPolicy type: string uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - rbacAuthorization_v1beta1 x-kubernetes-action: delete x-kubernetes-group-version-kind: group: rbac.authorization.k8s.io kind: Role version: v1beta1 get: consumes: - "*/*" description: read the specified Role operationId: readRbacAuthorizationV1beta1NamespacedRole produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.rbac.v1beta1.Role" "401": description: Unauthorized schemes: - https tags: - rbacAuthorization_v1beta1 x-kubernetes-action: get x-kubernetes-group-version-kind: group: rbac.authorization.k8s.io kind: Role version: v1beta1 parameters: - description: name of the Role in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true patch: consumes: - application/json-patch+json - application/merge-patch+json - application/strategic-merge-patch+json description: partially update the specified Role operationId: patchRbacAuthorizationV1beta1NamespacedRole parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.rbac.v1beta1.Role" "401": description: Unauthorized schemes: - https tags: - rbacAuthorization_v1beta1 x-kubernetes-action: patch x-kubernetes-group-version-kind: group: rbac.authorization.k8s.io kind: Role version: v1beta1 put: consumes: - "*/*" description: replace the specified Role operationId: replaceRbacAuthorizationV1beta1NamespacedRole parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.rbac.v1beta1.Role" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.rbac.v1beta1.Role" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.rbac.v1beta1.Role" "401": description: Unauthorized schemes: - https tags: - rbacAuthorization_v1beta1 x-kubernetes-action: put x-kubernetes-group-version-kind: group: rbac.authorization.k8s.io kind: Role version: v1beta1 /apis/rbac.authorization.k8s.io/v1beta1/rolebindings: get: consumes: - "*/*" description: list or watch objects of kind RoleBinding operationId: listRbacAuthorizationV1beta1RoleBindingForAllNamespaces produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.rbac.v1beta1.RoleBindingList" "401": description: Unauthorized schemes: - https tags: - rbacAuthorization_v1beta1 x-kubernetes-action: list x-kubernetes-group-version-kind: group: rbac.authorization.k8s.io kind: RoleBinding version: v1beta1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true /apis/rbac.authorization.k8s.io/v1beta1/roles: get: consumes: - "*/*" description: list or watch objects of kind Role operationId: listRbacAuthorizationV1beta1RoleForAllNamespaces produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.rbac.v1beta1.RoleList" "401": description: Unauthorized schemes: - https tags: - rbacAuthorization_v1beta1 x-kubernetes-action: list x-kubernetes-group-version-kind: group: rbac.authorization.k8s.io kind: Role version: v1beta1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true /apis/rbac.authorization.k8s.io/v1beta1/watch/clusterrolebindings: get: consumes: - "*/*" description: watch individual changes to a list of ClusterRoleBinding operationId: watchRbacAuthorizationV1beta1ClusterRoleBindingList produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - rbacAuthorization_v1beta1 x-kubernetes-action: watchlist x-kubernetes-group-version-kind: group: rbac.authorization.k8s.io kind: ClusterRoleBinding version: v1beta1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true "/apis/rbac.authorization.k8s.io/v1beta1/watch/clusterrolebindings/{name}": get: consumes: - "*/*" description: watch changes to an object of kind ClusterRoleBinding operationId: watchRbacAuthorizationV1beta1ClusterRoleBinding produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - rbacAuthorization_v1beta1 x-kubernetes-action: watch x-kubernetes-group-version-kind: group: rbac.authorization.k8s.io kind: ClusterRoleBinding version: v1beta1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: name of the ClusterRoleBinding in: path name: name required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true /apis/rbac.authorization.k8s.io/v1beta1/watch/clusterroles: get: consumes: - "*/*" description: watch individual changes to a list of ClusterRole operationId: watchRbacAuthorizationV1beta1ClusterRoleList produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - rbacAuthorization_v1beta1 x-kubernetes-action: watchlist x-kubernetes-group-version-kind: group: rbac.authorization.k8s.io kind: ClusterRole version: v1beta1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true "/apis/rbac.authorization.k8s.io/v1beta1/watch/clusterroles/{name}": get: consumes: - "*/*" description: watch changes to an object of kind ClusterRole operationId: watchRbacAuthorizationV1beta1ClusterRole produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - rbacAuthorization_v1beta1 x-kubernetes-action: watch x-kubernetes-group-version-kind: group: rbac.authorization.k8s.io kind: ClusterRole version: v1beta1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: name of the ClusterRole in: path name: name required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true "/apis/rbac.authorization.k8s.io/v1beta1/watch/namespaces/{namespace}/rolebindings": get: consumes: - "*/*" description: watch individual changes to a list of RoleBinding operationId: watchRbacAuthorizationV1beta1NamespacedRoleBindingList produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - rbacAuthorization_v1beta1 x-kubernetes-action: watchlist x-kubernetes-group-version-kind: group: rbac.authorization.k8s.io kind: RoleBinding version: v1beta1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true "/apis/rbac.authorization.k8s.io/v1beta1/watch/namespaces/{namespace}/rolebindings/{name}": get: consumes: - "*/*" description: watch changes to an object of kind RoleBinding operationId: watchRbacAuthorizationV1beta1NamespacedRoleBinding produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - rbacAuthorization_v1beta1 x-kubernetes-action: watch x-kubernetes-group-version-kind: group: rbac.authorization.k8s.io kind: RoleBinding version: v1beta1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: name of the RoleBinding in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true "/apis/rbac.authorization.k8s.io/v1beta1/watch/namespaces/{namespace}/roles": get: consumes: - "*/*" description: watch individual changes to a list of Role operationId: watchRbacAuthorizationV1beta1NamespacedRoleList produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - rbacAuthorization_v1beta1 x-kubernetes-action: watchlist x-kubernetes-group-version-kind: group: rbac.authorization.k8s.io kind: Role version: v1beta1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true "/apis/rbac.authorization.k8s.io/v1beta1/watch/namespaces/{namespace}/roles/{name}": get: consumes: - "*/*" description: watch changes to an object of kind Role operationId: watchRbacAuthorizationV1beta1NamespacedRole produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - rbacAuthorization_v1beta1 x-kubernetes-action: watch x-kubernetes-group-version-kind: group: rbac.authorization.k8s.io kind: Role version: v1beta1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: name of the Role in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true /apis/rbac.authorization.k8s.io/v1beta1/watch/rolebindings: get: consumes: - "*/*" description: watch individual changes to a list of RoleBinding operationId: watchRbacAuthorizationV1beta1RoleBindingListForAllNamespaces produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - rbacAuthorization_v1beta1 x-kubernetes-action: watchlist x-kubernetes-group-version-kind: group: rbac.authorization.k8s.io kind: RoleBinding version: v1beta1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true /apis/rbac.authorization.k8s.io/v1beta1/watch/roles: get: consumes: - "*/*" description: watch individual changes to a list of Role operationId: watchRbacAuthorizationV1beta1RoleListForAllNamespaces produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - rbacAuthorization_v1beta1 x-kubernetes-action: watchlist x-kubernetes-group-version-kind: group: rbac.authorization.k8s.io kind: Role version: v1beta1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true /apis/scheduling.k8s.io/: get: consumes: - application/json - application/yaml - application/vnd.kubernetes.protobuf description: get information of a group operationId: getSchedulingAPIGroup produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup" "401": description: Unauthorized schemes: - https tags: - scheduling /apis/scheduling.k8s.io/v1alpha1/: get: consumes: - application/json - application/yaml - application/vnd.kubernetes.protobuf description: get available resources operationId: getSchedulingV1alpha1APIResources produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList" "401": description: Unauthorized schemes: - https tags: - scheduling_v1alpha1 /apis/scheduling.k8s.io/v1alpha1/priorityclasses: delete: consumes: - "*/*" description: delete collection of PriorityClass operationId: deleteSchedulingV1alpha1CollectionPriorityClass parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - scheduling_v1alpha1 x-kubernetes-action: deletecollection x-kubernetes-group-version-kind: group: scheduling.k8s.io kind: PriorityClass version: v1alpha1 get: consumes: - "*/*" description: list or watch objects of kind PriorityClass operationId: listSchedulingV1alpha1PriorityClass parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.scheduling.v1alpha1.PriorityClassList" "401": description: Unauthorized schemes: - https tags: - scheduling_v1alpha1 x-kubernetes-action: list x-kubernetes-group-version-kind: group: scheduling.k8s.io kind: PriorityClass version: v1alpha1 parameters: - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true post: consumes: - "*/*" description: create a PriorityClass operationId: createSchedulingV1alpha1PriorityClass parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.scheduling.v1alpha1.PriorityClass" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.scheduling.v1alpha1.PriorityClass" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.scheduling.v1alpha1.PriorityClass" "202": description: Accepted schema: $ref: "#/definitions/io.k8s.api.scheduling.v1alpha1.PriorityClass" "401": description: Unauthorized schemes: - https tags: - scheduling_v1alpha1 x-kubernetes-action: post x-kubernetes-group-version-kind: group: scheduling.k8s.io kind: PriorityClass version: v1alpha1 "/apis/scheduling.k8s.io/v1alpha1/priorityclasses/{name}": delete: consumes: - "*/*" description: delete a PriorityClass operationId: deleteSchedulingV1alpha1PriorityClass parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" - description: The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. in: query name: gracePeriodSeconds type: integer uniqueItems: true - description: "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both." in: query name: orphanDependents type: boolean uniqueItems: true - description: "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground." in: query name: propagationPolicy type: string uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - scheduling_v1alpha1 x-kubernetes-action: delete x-kubernetes-group-version-kind: group: scheduling.k8s.io kind: PriorityClass version: v1alpha1 get: consumes: - "*/*" description: read the specified PriorityClass operationId: readSchedulingV1alpha1PriorityClass parameters: - description: Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. in: query name: exact type: boolean uniqueItems: true - description: Should this value be exported. Export strips fields that a user can not specify. in: query name: export type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.scheduling.v1alpha1.PriorityClass" "401": description: Unauthorized schemes: - https tags: - scheduling_v1alpha1 x-kubernetes-action: get x-kubernetes-group-version-kind: group: scheduling.k8s.io kind: PriorityClass version: v1alpha1 parameters: - description: name of the PriorityClass in: path name: name required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true patch: consumes: - application/json-patch+json - application/merge-patch+json - application/strategic-merge-patch+json description: partially update the specified PriorityClass operationId: patchSchedulingV1alpha1PriorityClass parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.scheduling.v1alpha1.PriorityClass" "401": description: Unauthorized schemes: - https tags: - scheduling_v1alpha1 x-kubernetes-action: patch x-kubernetes-group-version-kind: group: scheduling.k8s.io kind: PriorityClass version: v1alpha1 put: consumes: - "*/*" description: replace the specified PriorityClass operationId: replaceSchedulingV1alpha1PriorityClass parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.scheduling.v1alpha1.PriorityClass" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.scheduling.v1alpha1.PriorityClass" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.scheduling.v1alpha1.PriorityClass" "401": description: Unauthorized schemes: - https tags: - scheduling_v1alpha1 x-kubernetes-action: put x-kubernetes-group-version-kind: group: scheduling.k8s.io kind: PriorityClass version: v1alpha1 /apis/scheduling.k8s.io/v1alpha1/watch/priorityclasses: get: consumes: - "*/*" description: watch individual changes to a list of PriorityClass operationId: watchSchedulingV1alpha1PriorityClassList produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - scheduling_v1alpha1 x-kubernetes-action: watchlist x-kubernetes-group-version-kind: group: scheduling.k8s.io kind: PriorityClass version: v1alpha1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true "/apis/scheduling.k8s.io/v1alpha1/watch/priorityclasses/{name}": get: consumes: - "*/*" description: watch changes to an object of kind PriorityClass operationId: watchSchedulingV1alpha1PriorityClass produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - scheduling_v1alpha1 x-kubernetes-action: watch x-kubernetes-group-version-kind: group: scheduling.k8s.io kind: PriorityClass version: v1alpha1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: name of the PriorityClass in: path name: name required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true /apis/settings.k8s.io/: get: consumes: - application/json - application/yaml - application/vnd.kubernetes.protobuf description: get information of a group operationId: getSettingsAPIGroup produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup" "401": description: Unauthorized schemes: - https tags: - settings /apis/settings.k8s.io/v1alpha1/: get: consumes: - application/json - application/yaml - application/vnd.kubernetes.protobuf description: get available resources operationId: getSettingsV1alpha1APIResources produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList" "401": description: Unauthorized schemes: - https tags: - settings_v1alpha1 "/apis/settings.k8s.io/v1alpha1/namespaces/{namespace}/podpresets": delete: consumes: - "*/*" description: delete collection of PodPreset operationId: deleteSettingsV1alpha1CollectionNamespacedPodPreset parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - settings_v1alpha1 x-kubernetes-action: deletecollection x-kubernetes-group-version-kind: group: settings.k8s.io kind: PodPreset version: v1alpha1 get: consumes: - "*/*" description: list or watch objects of kind PodPreset operationId: listSettingsV1alpha1NamespacedPodPreset parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.settings.v1alpha1.PodPresetList" "401": description: Unauthorized schemes: - https tags: - settings_v1alpha1 x-kubernetes-action: list x-kubernetes-group-version-kind: group: settings.k8s.io kind: PodPreset version: v1alpha1 parameters: - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true post: consumes: - "*/*" description: create a PodPreset operationId: createSettingsV1alpha1NamespacedPodPreset parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.settings.v1alpha1.PodPreset" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.settings.v1alpha1.PodPreset" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.settings.v1alpha1.PodPreset" "202": description: Accepted schema: $ref: "#/definitions/io.k8s.api.settings.v1alpha1.PodPreset" "401": description: Unauthorized schemes: - https tags: - settings_v1alpha1 x-kubernetes-action: post x-kubernetes-group-version-kind: group: settings.k8s.io kind: PodPreset version: v1alpha1 "/apis/settings.k8s.io/v1alpha1/namespaces/{namespace}/podpresets/{name}": delete: consumes: - "*/*" description: delete a PodPreset operationId: deleteSettingsV1alpha1NamespacedPodPreset parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" - description: The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. in: query name: gracePeriodSeconds type: integer uniqueItems: true - description: "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both." in: query name: orphanDependents type: boolean uniqueItems: true - description: "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground." in: query name: propagationPolicy type: string uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - settings_v1alpha1 x-kubernetes-action: delete x-kubernetes-group-version-kind: group: settings.k8s.io kind: PodPreset version: v1alpha1 get: consumes: - "*/*" description: read the specified PodPreset operationId: readSettingsV1alpha1NamespacedPodPreset parameters: - description: Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. in: query name: exact type: boolean uniqueItems: true - description: Should this value be exported. Export strips fields that a user can not specify. in: query name: export type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.settings.v1alpha1.PodPreset" "401": description: Unauthorized schemes: - https tags: - settings_v1alpha1 x-kubernetes-action: get x-kubernetes-group-version-kind: group: settings.k8s.io kind: PodPreset version: v1alpha1 parameters: - description: name of the PodPreset in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true patch: consumes: - application/json-patch+json - application/merge-patch+json - application/strategic-merge-patch+json description: partially update the specified PodPreset operationId: patchSettingsV1alpha1NamespacedPodPreset parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.settings.v1alpha1.PodPreset" "401": description: Unauthorized schemes: - https tags: - settings_v1alpha1 x-kubernetes-action: patch x-kubernetes-group-version-kind: group: settings.k8s.io kind: PodPreset version: v1alpha1 put: consumes: - "*/*" description: replace the specified PodPreset operationId: replaceSettingsV1alpha1NamespacedPodPreset parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.settings.v1alpha1.PodPreset" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.settings.v1alpha1.PodPreset" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.settings.v1alpha1.PodPreset" "401": description: Unauthorized schemes: - https tags: - settings_v1alpha1 x-kubernetes-action: put x-kubernetes-group-version-kind: group: settings.k8s.io kind: PodPreset version: v1alpha1 /apis/settings.k8s.io/v1alpha1/podpresets: get: consumes: - "*/*" description: list or watch objects of kind PodPreset operationId: listSettingsV1alpha1PodPresetForAllNamespaces produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.settings.v1alpha1.PodPresetList" "401": description: Unauthorized schemes: - https tags: - settings_v1alpha1 x-kubernetes-action: list x-kubernetes-group-version-kind: group: settings.k8s.io kind: PodPreset version: v1alpha1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true "/apis/settings.k8s.io/v1alpha1/watch/namespaces/{namespace}/podpresets": get: consumes: - "*/*" description: watch individual changes to a list of PodPreset operationId: watchSettingsV1alpha1NamespacedPodPresetList produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - settings_v1alpha1 x-kubernetes-action: watchlist x-kubernetes-group-version-kind: group: settings.k8s.io kind: PodPreset version: v1alpha1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true "/apis/settings.k8s.io/v1alpha1/watch/namespaces/{namespace}/podpresets/{name}": get: consumes: - "*/*" description: watch changes to an object of kind PodPreset operationId: watchSettingsV1alpha1NamespacedPodPreset produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - settings_v1alpha1 x-kubernetes-action: watch x-kubernetes-group-version-kind: group: settings.k8s.io kind: PodPreset version: v1alpha1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: name of the PodPreset in: path name: name required: true type: string uniqueItems: true - description: object name and auth scope, such as for teams and projects in: path name: namespace required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true /apis/settings.k8s.io/v1alpha1/watch/podpresets: get: consumes: - "*/*" description: watch individual changes to a list of PodPreset operationId: watchSettingsV1alpha1PodPresetListForAllNamespaces produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - settings_v1alpha1 x-kubernetes-action: watchlist x-kubernetes-group-version-kind: group: settings.k8s.io kind: PodPreset version: v1alpha1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true /apis/storage.k8s.io/: get: consumes: - application/json - application/yaml - application/vnd.kubernetes.protobuf description: get information of a group operationId: getStorageAPIGroup produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup" "401": description: Unauthorized schemes: - https tags: - storage /apis/storage.k8s.io/v1/: get: consumes: - application/json - application/yaml - application/vnd.kubernetes.protobuf description: get available resources operationId: getStorageV1APIResources produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList" "401": description: Unauthorized schemes: - https tags: - storage_v1 /apis/storage.k8s.io/v1/storageclasses: delete: consumes: - "*/*" description: delete collection of StorageClass operationId: deleteStorageV1CollectionStorageClass parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - storage_v1 x-kubernetes-action: deletecollection x-kubernetes-group-version-kind: group: storage.k8s.io kind: StorageClass version: v1 get: consumes: - "*/*" description: list or watch objects of kind StorageClass operationId: listStorageV1StorageClass parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.storage.v1.StorageClassList" "401": description: Unauthorized schemes: - https tags: - storage_v1 x-kubernetes-action: list x-kubernetes-group-version-kind: group: storage.k8s.io kind: StorageClass version: v1 parameters: - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true post: consumes: - "*/*" description: create a StorageClass operationId: createStorageV1StorageClass parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.storage.v1.StorageClass" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.storage.v1.StorageClass" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.storage.v1.StorageClass" "202": description: Accepted schema: $ref: "#/definitions/io.k8s.api.storage.v1.StorageClass" "401": description: Unauthorized schemes: - https tags: - storage_v1 x-kubernetes-action: post x-kubernetes-group-version-kind: group: storage.k8s.io kind: StorageClass version: v1 "/apis/storage.k8s.io/v1/storageclasses/{name}": delete: consumes: - "*/*" description: delete a StorageClass operationId: deleteStorageV1StorageClass parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" - description: The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. in: query name: gracePeriodSeconds type: integer uniqueItems: true - description: "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both." in: query name: orphanDependents type: boolean uniqueItems: true - description: "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground." in: query name: propagationPolicy type: string uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - storage_v1 x-kubernetes-action: delete x-kubernetes-group-version-kind: group: storage.k8s.io kind: StorageClass version: v1 get: consumes: - "*/*" description: read the specified StorageClass operationId: readStorageV1StorageClass parameters: - description: Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. in: query name: exact type: boolean uniqueItems: true - description: Should this value be exported. Export strips fields that a user can not specify. in: query name: export type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.storage.v1.StorageClass" "401": description: Unauthorized schemes: - https tags: - storage_v1 x-kubernetes-action: get x-kubernetes-group-version-kind: group: storage.k8s.io kind: StorageClass version: v1 parameters: - description: name of the StorageClass in: path name: name required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true patch: consumes: - application/json-patch+json - application/merge-patch+json - application/strategic-merge-patch+json description: partially update the specified StorageClass operationId: patchStorageV1StorageClass parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.storage.v1.StorageClass" "401": description: Unauthorized schemes: - https tags: - storage_v1 x-kubernetes-action: patch x-kubernetes-group-version-kind: group: storage.k8s.io kind: StorageClass version: v1 put: consumes: - "*/*" description: replace the specified StorageClass operationId: replaceStorageV1StorageClass parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.storage.v1.StorageClass" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.storage.v1.StorageClass" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.storage.v1.StorageClass" "401": description: Unauthorized schemes: - https tags: - storage_v1 x-kubernetes-action: put x-kubernetes-group-version-kind: group: storage.k8s.io kind: StorageClass version: v1 /apis/storage.k8s.io/v1/watch/storageclasses: get: consumes: - "*/*" description: watch individual changes to a list of StorageClass operationId: watchStorageV1StorageClassList produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - storage_v1 x-kubernetes-action: watchlist x-kubernetes-group-version-kind: group: storage.k8s.io kind: StorageClass version: v1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true "/apis/storage.k8s.io/v1/watch/storageclasses/{name}": get: consumes: - "*/*" description: watch changes to an object of kind StorageClass operationId: watchStorageV1StorageClass produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - storage_v1 x-kubernetes-action: watch x-kubernetes-group-version-kind: group: storage.k8s.io kind: StorageClass version: v1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: name of the StorageClass in: path name: name required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true /apis/storage.k8s.io/v1alpha1/: get: consumes: - application/json - application/yaml - application/vnd.kubernetes.protobuf description: get available resources operationId: getStorageV1alpha1APIResources produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList" "401": description: Unauthorized schemes: - https tags: - storage_v1alpha1 /apis/storage.k8s.io/v1alpha1/volumeattachments: delete: consumes: - "*/*" description: delete collection of VolumeAttachment operationId: deleteStorageV1alpha1CollectionVolumeAttachment parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - storage_v1alpha1 x-kubernetes-action: deletecollection x-kubernetes-group-version-kind: group: storage.k8s.io kind: VolumeAttachment version: v1alpha1 get: consumes: - "*/*" description: list or watch objects of kind VolumeAttachment operationId: listStorageV1alpha1VolumeAttachment parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.storage.v1alpha1.VolumeAttachmentList" "401": description: Unauthorized schemes: - https tags: - storage_v1alpha1 x-kubernetes-action: list x-kubernetes-group-version-kind: group: storage.k8s.io kind: VolumeAttachment version: v1alpha1 parameters: - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true post: consumes: - "*/*" description: create a VolumeAttachment operationId: createStorageV1alpha1VolumeAttachment parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.storage.v1alpha1.VolumeAttachment" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.storage.v1alpha1.VolumeAttachment" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.storage.v1alpha1.VolumeAttachment" "202": description: Accepted schema: $ref: "#/definitions/io.k8s.api.storage.v1alpha1.VolumeAttachment" "401": description: Unauthorized schemes: - https tags: - storage_v1alpha1 x-kubernetes-action: post x-kubernetes-group-version-kind: group: storage.k8s.io kind: VolumeAttachment version: v1alpha1 "/apis/storage.k8s.io/v1alpha1/volumeattachments/{name}": delete: consumes: - "*/*" description: delete a VolumeAttachment operationId: deleteStorageV1alpha1VolumeAttachment parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" - description: The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. in: query name: gracePeriodSeconds type: integer uniqueItems: true - description: "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both." in: query name: orphanDependents type: boolean uniqueItems: true - description: "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground." in: query name: propagationPolicy type: string uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - storage_v1alpha1 x-kubernetes-action: delete x-kubernetes-group-version-kind: group: storage.k8s.io kind: VolumeAttachment version: v1alpha1 get: consumes: - "*/*" description: read the specified VolumeAttachment operationId: readStorageV1alpha1VolumeAttachment parameters: - description: Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. in: query name: exact type: boolean uniqueItems: true - description: Should this value be exported. Export strips fields that a user can not specify. in: query name: export type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.storage.v1alpha1.VolumeAttachment" "401": description: Unauthorized schemes: - https tags: - storage_v1alpha1 x-kubernetes-action: get x-kubernetes-group-version-kind: group: storage.k8s.io kind: VolumeAttachment version: v1alpha1 parameters: - description: name of the VolumeAttachment in: path name: name required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true patch: consumes: - application/json-patch+json - application/merge-patch+json - application/strategic-merge-patch+json description: partially update the specified VolumeAttachment operationId: patchStorageV1alpha1VolumeAttachment parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.storage.v1alpha1.VolumeAttachment" "401": description: Unauthorized schemes: - https tags: - storage_v1alpha1 x-kubernetes-action: patch x-kubernetes-group-version-kind: group: storage.k8s.io kind: VolumeAttachment version: v1alpha1 put: consumes: - "*/*" description: replace the specified VolumeAttachment operationId: replaceStorageV1alpha1VolumeAttachment parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.storage.v1alpha1.VolumeAttachment" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.storage.v1alpha1.VolumeAttachment" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.storage.v1alpha1.VolumeAttachment" "401": description: Unauthorized schemes: - https tags: - storage_v1alpha1 x-kubernetes-action: put x-kubernetes-group-version-kind: group: storage.k8s.io kind: VolumeAttachment version: v1alpha1 /apis/storage.k8s.io/v1alpha1/watch/volumeattachments: get: consumes: - "*/*" description: watch individual changes to a list of VolumeAttachment operationId: watchStorageV1alpha1VolumeAttachmentList produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - storage_v1alpha1 x-kubernetes-action: watchlist x-kubernetes-group-version-kind: group: storage.k8s.io kind: VolumeAttachment version: v1alpha1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true "/apis/storage.k8s.io/v1alpha1/watch/volumeattachments/{name}": get: consumes: - "*/*" description: watch changes to an object of kind VolumeAttachment operationId: watchStorageV1alpha1VolumeAttachment produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - storage_v1alpha1 x-kubernetes-action: watch x-kubernetes-group-version-kind: group: storage.k8s.io kind: VolumeAttachment version: v1alpha1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: name of the VolumeAttachment in: path name: name required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true /apis/storage.k8s.io/v1beta1/: get: consumes: - application/json - application/yaml - application/vnd.kubernetes.protobuf description: get available resources operationId: getStorageV1beta1APIResources produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList" "401": description: Unauthorized schemes: - https tags: - storage_v1beta1 /apis/storage.k8s.io/v1beta1/storageclasses: delete: consumes: - "*/*" description: delete collection of StorageClass operationId: deleteStorageV1beta1CollectionStorageClass parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - storage_v1beta1 x-kubernetes-action: deletecollection x-kubernetes-group-version-kind: group: storage.k8s.io kind: StorageClass version: v1beta1 get: consumes: - "*/*" description: list or watch objects of kind StorageClass operationId: listStorageV1beta1StorageClass parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.storage.v1beta1.StorageClassList" "401": description: Unauthorized schemes: - https tags: - storage_v1beta1 x-kubernetes-action: list x-kubernetes-group-version-kind: group: storage.k8s.io kind: StorageClass version: v1beta1 parameters: - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true post: consumes: - "*/*" description: create a StorageClass operationId: createStorageV1beta1StorageClass parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.storage.v1beta1.StorageClass" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.storage.v1beta1.StorageClass" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.storage.v1beta1.StorageClass" "202": description: Accepted schema: $ref: "#/definitions/io.k8s.api.storage.v1beta1.StorageClass" "401": description: Unauthorized schemes: - https tags: - storage_v1beta1 x-kubernetes-action: post x-kubernetes-group-version-kind: group: storage.k8s.io kind: StorageClass version: v1beta1 "/apis/storage.k8s.io/v1beta1/storageclasses/{name}": delete: consumes: - "*/*" description: delete a StorageClass operationId: deleteStorageV1beta1StorageClass parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" - description: The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. in: query name: gracePeriodSeconds type: integer uniqueItems: true - description: "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both." in: query name: orphanDependents type: boolean uniqueItems: true - description: "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground." in: query name: propagationPolicy type: string uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - storage_v1beta1 x-kubernetes-action: delete x-kubernetes-group-version-kind: group: storage.k8s.io kind: StorageClass version: v1beta1 get: consumes: - "*/*" description: read the specified StorageClass operationId: readStorageV1beta1StorageClass parameters: - description: Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. in: query name: exact type: boolean uniqueItems: true - description: Should this value be exported. Export strips fields that a user can not specify. in: query name: export type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.storage.v1beta1.StorageClass" "401": description: Unauthorized schemes: - https tags: - storage_v1beta1 x-kubernetes-action: get x-kubernetes-group-version-kind: group: storage.k8s.io kind: StorageClass version: v1beta1 parameters: - description: name of the StorageClass in: path name: name required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true patch: consumes: - application/json-patch+json - application/merge-patch+json - application/strategic-merge-patch+json description: partially update the specified StorageClass operationId: patchStorageV1beta1StorageClass parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.storage.v1beta1.StorageClass" "401": description: Unauthorized schemes: - https tags: - storage_v1beta1 x-kubernetes-action: patch x-kubernetes-group-version-kind: group: storage.k8s.io kind: StorageClass version: v1beta1 put: consumes: - "*/*" description: replace the specified StorageClass operationId: replaceStorageV1beta1StorageClass parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.storage.v1beta1.StorageClass" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.storage.v1beta1.StorageClass" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.storage.v1beta1.StorageClass" "401": description: Unauthorized schemes: - https tags: - storage_v1beta1 x-kubernetes-action: put x-kubernetes-group-version-kind: group: storage.k8s.io kind: StorageClass version: v1beta1 /apis/storage.k8s.io/v1beta1/volumeattachments: delete: consumes: - "*/*" description: delete collection of VolumeAttachment operationId: deleteStorageV1beta1CollectionVolumeAttachment parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - storage_v1beta1 x-kubernetes-action: deletecollection x-kubernetes-group-version-kind: group: storage.k8s.io kind: VolumeAttachment version: v1beta1 get: consumes: - "*/*" description: list or watch objects of kind VolumeAttachment operationId: listStorageV1beta1VolumeAttachment parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.storage.v1beta1.VolumeAttachmentList" "401": description: Unauthorized schemes: - https tags: - storage_v1beta1 x-kubernetes-action: list x-kubernetes-group-version-kind: group: storage.k8s.io kind: VolumeAttachment version: v1beta1 parameters: - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true post: consumes: - "*/*" description: create a VolumeAttachment operationId: createStorageV1beta1VolumeAttachment parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.storage.v1beta1.VolumeAttachment" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.storage.v1beta1.VolumeAttachment" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.storage.v1beta1.VolumeAttachment" "202": description: Accepted schema: $ref: "#/definitions/io.k8s.api.storage.v1beta1.VolumeAttachment" "401": description: Unauthorized schemes: - https tags: - storage_v1beta1 x-kubernetes-action: post x-kubernetes-group-version-kind: group: storage.k8s.io kind: VolumeAttachment version: v1beta1 "/apis/storage.k8s.io/v1beta1/volumeattachments/{name}": delete: consumes: - "*/*" description: delete a VolumeAttachment operationId: deleteStorageV1beta1VolumeAttachment parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" - description: The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. in: query name: gracePeriodSeconds type: integer uniqueItems: true - description: "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both." in: query name: orphanDependents type: boolean uniqueItems: true - description: "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground." in: query name: propagationPolicy type: string uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" "401": description: Unauthorized schemes: - https tags: - storage_v1beta1 x-kubernetes-action: delete x-kubernetes-group-version-kind: group: storage.k8s.io kind: VolumeAttachment version: v1beta1 get: consumes: - "*/*" description: read the specified VolumeAttachment operationId: readStorageV1beta1VolumeAttachment parameters: - description: Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. in: query name: exact type: boolean uniqueItems: true - description: Should this value be exported. Export strips fields that a user can not specify. in: query name: export type: boolean uniqueItems: true produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.storage.v1beta1.VolumeAttachment" "401": description: Unauthorized schemes: - https tags: - storage_v1beta1 x-kubernetes-action: get x-kubernetes-group-version-kind: group: storage.k8s.io kind: VolumeAttachment version: v1beta1 parameters: - description: name of the VolumeAttachment in: path name: name required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true patch: consumes: - application/json-patch+json - application/merge-patch+json - application/strategic-merge-patch+json description: partially update the specified VolumeAttachment operationId: patchStorageV1beta1VolumeAttachment parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.storage.v1beta1.VolumeAttachment" "401": description: Unauthorized schemes: - https tags: - storage_v1beta1 x-kubernetes-action: patch x-kubernetes-group-version-kind: group: storage.k8s.io kind: VolumeAttachment version: v1beta1 put: consumes: - "*/*" description: replace the specified VolumeAttachment operationId: replaceStorageV1beta1VolumeAttachment parameters: - in: body name: body required: true schema: $ref: "#/definitions/io.k8s.api.storage.v1beta1.VolumeAttachment" produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.api.storage.v1beta1.VolumeAttachment" "201": description: Created schema: $ref: "#/definitions/io.k8s.api.storage.v1beta1.VolumeAttachment" "401": description: Unauthorized schemes: - https tags: - storage_v1beta1 x-kubernetes-action: put x-kubernetes-group-version-kind: group: storage.k8s.io kind: VolumeAttachment version: v1beta1 /apis/storage.k8s.io/v1beta1/watch/storageclasses: get: consumes: - "*/*" description: watch individual changes to a list of StorageClass operationId: watchStorageV1beta1StorageClassList produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - storage_v1beta1 x-kubernetes-action: watchlist x-kubernetes-group-version-kind: group: storage.k8s.io kind: StorageClass version: v1beta1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true "/apis/storage.k8s.io/v1beta1/watch/storageclasses/{name}": get: consumes: - "*/*" description: watch changes to an object of kind StorageClass operationId: watchStorageV1beta1StorageClass produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - storage_v1beta1 x-kubernetes-action: watch x-kubernetes-group-version-kind: group: storage.k8s.io kind: StorageClass version: v1beta1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: name of the StorageClass in: path name: name required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true /apis/storage.k8s.io/v1beta1/watch/volumeattachments: get: consumes: - "*/*" description: watch individual changes to a list of VolumeAttachment operationId: watchStorageV1beta1VolumeAttachmentList produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - storage_v1beta1 x-kubernetes-action: watchlist x-kubernetes-group-version-kind: group: storage.k8s.io kind: VolumeAttachment version: v1beta1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true "/apis/storage.k8s.io/v1beta1/watch/volumeattachments/{name}": get: consumes: - "*/*" description: watch changes to an object of kind VolumeAttachment operationId: watchStorageV1beta1VolumeAttachment produces: - application/json - application/yaml - application/vnd.kubernetes.protobuf - application/json;stream=watch - application/vnd.kubernetes.protobuf;stream=watch responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" "401": description: Unauthorized schemes: - https tags: - storage_v1beta1 x-kubernetes-action: watch x-kubernetes-group-version-kind: group: storage.k8s.io kind: VolumeAttachment version: v1beta1 parameters: - description: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. in: query name: continue type: string uniqueItems: true - description: A selector to restrict the list of returned objects by their fields. Defaults to everything. in: query name: fieldSelector type: string uniqueItems: true - description: If true, partially initialized resources are included in the response. in: query name: includeUninitialized type: boolean uniqueItems: true - description: A selector to restrict the list of returned objects by their labels. Defaults to everything. in: query name: labelSelector type: string uniqueItems: true - description: |- limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. in: query name: limit type: integer uniqueItems: true - description: name of the VolumeAttachment in: path name: name required: true type: string uniqueItems: true - description: If 'true', then the output is pretty printed. in: query name: pretty type: string uniqueItems: true - description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv." in: query name: resourceVersion type: string uniqueItems: true - description: Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. in: query name: timeoutSeconds type: integer uniqueItems: true - description: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. in: query name: watch type: boolean uniqueItems: true /logs/: get: operationId: logFileListHandler responses: "401": description: Unauthorized schemes: - https tags: - logs "/logs/{logpath}": get: operationId: logFileHandler responses: "401": description: Unauthorized schemes: - https tags: - logs parameters: - description: path to the log in: path name: logpath required: true type: string uniqueItems: true /version/: get: consumes: - application/json description: get the code version operationId: getCodeVersion produces: - application/json responses: "200": description: OK schema: $ref: "#/definitions/io.k8s.apimachinery.pkg.version.Info" "401": description: Unauthorized schemes: - https tags: - version definitions: io.k8s.api.admissionregistration.v1alpha1.Initializer: description: Initializer describes the name and the failure policy of an initializer, and what resources it applies to. properties: name: description: Name is the identifier of the initializer. It will be added to the object that needs to be initialized. Name should be fully qualified, e.g., alwayspullimages.kubernetes.io, where "alwayspullimages" is the name of the webhook, and kubernetes.io is the name of the organization. Required type: string rules: description: Rules describes what resources/subresources the initializer cares about. The initializer cares about an operation if it matches _any_ Rule. Rule.Resources must not include subresources. items: $ref: "#/definitions/io.k8s.api.admissionregistration.v1alpha1.Rule" type: array required: - name io.k8s.api.admissionregistration.v1alpha1.InitializerConfiguration: description: InitializerConfiguration describes the configuration of initializers. 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/api-conventions.md#resources" type: string initializers: description: Initializers is a list of resources and their default initializers Order-sensitive. When merging multiple InitializerConfigurations, we sort the initializers from different InitializerConfigurations by the name of the InitializerConfigurations; the order of the initializers from the same InitializerConfiguration is preserved. items: $ref: "#/definitions/io.k8s.api.admissionregistration.v1alpha1.Initializer" type: array x-kubernetes-patch-merge-key: name x-kubernetes-patch-strategy: merge 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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" description: "Standard object metadata; More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata." x-kubernetes-group-version-kind: - group: admissionregistration.k8s.io kind: InitializerConfiguration version: v1alpha1 io.k8s.api.admissionregistration.v1alpha1.InitializerConfigurationList: description: InitializerConfigurationList is a list of InitializerConfiguration. 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/api-conventions.md#resources" type: string items: description: List of InitializerConfiguration. items: $ref: "#/definitions/io.k8s.api.admissionregistration.v1alpha1.InitializerConfiguration" type: array 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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" description: "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds" required: - items x-kubernetes-group-version-kind: - group: admissionregistration.k8s.io kind: InitializerConfigurationList version: v1alpha1 io.k8s.api.admissionregistration.v1alpha1.Rule: description: Rule is a tuple of APIGroups, APIVersion, and Resources.It is recommended to make sure that all the tuple expansions are valid. properties: apiGroups: description: APIGroups is the API groups the resources belong to. '*' is all groups. If '*' is present, the length of the slice must be one. Required. items: type: string type: array apiVersions: description: APIVersions is the API versions the resources belong to. '*' is all versions. If '*' is present, the length of the slice must be one. Required. items: type: string type: array resources: description: |- Resources is a list of resources this rule applies to. For example: 'pods' means pods. 'pods/log' means the log subresource of pods. '*' means all resources, but not subresources. 'pods/*' means all subresources of pods. '*/scale' means all scale subresources. '*/*' means all resources and their subresources. If wildcard is present, the validation rule will ensure resources do not overlap with each other. Depending on the enclosing object, subresources might not be allowed. Required. items: type: string type: array io.k8s.api.admissionregistration.v1beta1.MutatingWebhookConfiguration: description: MutatingWebhookConfiguration describes the configuration of and admission webhook that accept or reject and may change the object. properties: apiVersion: description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" description: "Standard object metadata; More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata." webhooks: description: Webhooks is a list of webhooks and the affected resources and operations. items: $ref: "#/definitions/io.k8s.api.admissionregistration.v1beta1.Webhook" type: array x-kubernetes-patch-merge-key: name x-kubernetes-patch-strategy: merge x-kubernetes-group-version-kind: - group: admissionregistration.k8s.io kind: MutatingWebhookConfiguration version: v1beta1 io.k8s.api.admissionregistration.v1beta1.MutatingWebhookConfigurationList: description: MutatingWebhookConfigurationList is a list of MutatingWebhookConfiguration. 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/api-conventions.md#resources" type: string items: description: List of MutatingWebhookConfiguration. items: $ref: "#/definitions/io.k8s.api.admissionregistration.v1beta1.MutatingWebhookConfiguration" type: array 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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" description: "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds" required: - items x-kubernetes-group-version-kind: - group: admissionregistration.k8s.io kind: MutatingWebhookConfigurationList version: v1beta1 io.k8s.api.admissionregistration.v1beta1.RuleWithOperations: description: RuleWithOperations is a tuple of Operations and Resources. It is recommended to make sure that all the tuple expansions are valid. properties: apiGroups: description: APIGroups is the API groups the resources belong to. '*' is all groups. If '*' is present, the length of the slice must be one. Required. items: type: string type: array apiVersions: description: APIVersions is the API versions the resources belong to. '*' is all versions. If '*' is present, the length of the slice must be one. Required. items: type: string type: array operations: description: Operations is the operations the admission hook cares about - CREATE, UPDATE, or * for all operations. If '*' is present, the length of the slice must be one. Required. items: type: string type: array resources: description: |- Resources is a list of resources this rule applies to. For example: 'pods' means pods. 'pods/log' means the log subresource of pods. '*' means all resources, but not subresources. 'pods/*' means all subresources of pods. '*/scale' means all scale subresources. '*/*' means all resources and their subresources. If wildcard is present, the validation rule will ensure resources do not overlap with each other. Depending on the enclosing object, subresources might not be allowed. Required. items: type: string type: array io.k8s.api.admissionregistration.v1beta1.ServiceReference: description: ServiceReference holds a reference to Service.legacy.k8s.io properties: name: description: "`name` is the name of the service. Required" type: string namespace: description: "`namespace` is the namespace of the service. Required" type: string path: description: "`path` is an optional URL path which will be sent in any request to this service." type: string required: - namespace - name io.k8s.api.admissionregistration.v1beta1.ValidatingWebhookConfiguration: description: ValidatingWebhookConfiguration describes the configuration of and admission webhook that accept or reject and object without changing it. 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/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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" description: "Standard object metadata; More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata." webhooks: description: Webhooks is a list of webhooks and the affected resources and operations. items: $ref: "#/definitions/io.k8s.api.admissionregistration.v1beta1.Webhook" type: array x-kubernetes-patch-merge-key: name x-kubernetes-patch-strategy: merge x-kubernetes-group-version-kind: - group: admissionregistration.k8s.io kind: ValidatingWebhookConfiguration version: v1beta1 io.k8s.api.admissionregistration.v1beta1.ValidatingWebhookConfigurationList: description: ValidatingWebhookConfigurationList is a list of ValidatingWebhookConfiguration. 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/api-conventions.md#resources" type: string items: description: List of ValidatingWebhookConfiguration. items: $ref: "#/definitions/io.k8s.api.admissionregistration.v1beta1.ValidatingWebhookConfiguration" type: array 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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" description: "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds" required: - items x-kubernetes-group-version-kind: - group: admissionregistration.k8s.io kind: ValidatingWebhookConfigurationList version: v1beta1 io.k8s.api.admissionregistration.v1beta1.Webhook: description: Webhook describes an admission webhook and the resources and operations it applies to. properties: clientConfig: $ref: "#/definitions/io.k8s.api.admissionregistration.v1beta1.WebhookClientConfig" description: ClientConfig defines how to communicate with the hook. Required failurePolicy: description: FailurePolicy defines how unrecognized errors from the admission endpoint are handled - allowed values are Ignore or Fail. Defaults to Ignore. type: string name: description: The name of the admission webhook. Name should be fully qualified, e.g., imagepolicy.kubernetes.io, where "imagepolicy" is the name of the webhook, and kubernetes.io is the name of the organization. Required. type: string namespaceSelector: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector" description: |- NamespaceSelector decides whether to run the webhook on an object based on whether the namespace for that object matches the selector. If the object itself is a namespace, the matching is performed on object.metadata.labels. If the object is another cluster scoped resource, it never skips the webhook. For example, to run the webhook on any objects whose namespace is not associated with "runlevel" of "0" or "1"; you will set the selector as follows: "namespaceSelector": { "matchExpressions": [ { "key": "runlevel", "operator": "NotIn", "values": [ "0", "1" ] } ] } If instead you want to only run the webhook on any objects whose namespace is associated with the "environment" of "prod" or "staging"; you will set the selector as follows: "namespaceSelector": { "matchExpressions": [ { "key": "environment", "operator": "In", "values": [ "prod", "staging" ] } ] } See https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/ for more examples of label selectors. Default to the empty LabelSelector, which matches everything. rules: description: Rules describes what operations on what resources/subresources the webhook cares about. The webhook cares about an operation if it matches _any_ Rule. However, in order to prevent ValidatingAdmissionWebhooks and MutatingAdmissionWebhooks from putting the cluster in a state which cannot be recovered from without completely disabling the plugin, ValidatingAdmissionWebhooks and MutatingAdmissionWebhooks are never called on admission requests for ValidatingWebhookConfiguration and MutatingWebhookConfiguration objects. items: $ref: "#/definitions/io.k8s.api.admissionregistration.v1beta1.RuleWithOperations" type: array required: - name - clientConfig io.k8s.api.admissionregistration.v1beta1.WebhookClientConfig: description: WebhookClientConfig contains the information to make a TLS connection with the webhook properties: caBundle: description: "`caBundle` is a PEM encoded CA bundle which will be used to validate the webhook's server certificate. Required." format: byte type: string service: $ref: "#/definitions/io.k8s.api.admissionregistration.v1beta1.ServiceReference" description: |- `service` is a reference to the service for this webhook. Either `service` or `url` must be specified. If the webhook is running within the cluster, then you should use `service`. If there is only one port open for the service, that port will be used. If there are multiple ports open, port 443 will be used if it is open, otherwise it is an error. url: description: |- `url` gives the location of the webhook, in standard URL form (`[scheme://]host:port/path`). Exactly one of `url` or `service` must be specified. The `host` should not refer to a service running in the cluster; use the `service` field instead. The host might be resolved via external DNS in some apiservers (e.g., `kube-apiserver` cannot resolve in-cluster DNS as that would be a layering violation). `host` may also be an IP address. Please note that using `localhost` or `127.0.0.1` as a `host` is risky unless you take great care to run this webhook on all hosts which run an apiserver which might need to make calls to this webhook. Such installs are likely to be non-portable, i.e., not easy to turn up in a new cluster. The scheme must be "https"; the URL must begin with "https://". A path is optional, and if present may be any string permissible in a URL. You may use the path to pass an arbitrary string to the webhook, for example, a cluster identifier. Attempting to use a user or basic auth e.g. "user:password@" is not allowed. Fragments ("#...") and query parameters ("?...") are not allowed, either. type: string required: - caBundle io.k8s.api.apps.v1.ControllerRevision: description: ControllerRevision implements an immutable snapshot of state data. Clients are responsible for serializing and deserializing the objects that contain their internal state. Once a ControllerRevision has been successfully created, it can not be updated. The API Server will fail validation of all requests that attempt to mutate the Data field. ControllerRevisions may, however, be deleted. Note that, due to its use by both the DaemonSet and StatefulSet controllers for update and rollback, this object is beta. However, it may be subject to name and representation changes in future releases, and clients should not depend on its stability. It is primarily for internal use by controllers. 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/api-conventions.md#resources" type: string data: $ref: "#/definitions/io.k8s.apimachinery.pkg.runtime.RawExtension" description: Data is the serialized representation of the state. 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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" description: "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata" revision: description: Revision indicates the revision of the state represented by Data. format: int64 type: integer required: - revision x-kubernetes-group-version-kind: - group: apps kind: ControllerRevision version: v1 io.k8s.api.apps.v1.ControllerRevisionList: description: ControllerRevisionList is a resource containing a list of ControllerRevision objects. 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/api-conventions.md#resources" type: string items: description: Items is the list of ControllerRevisions items: $ref: "#/definitions/io.k8s.api.apps.v1.ControllerRevision" type: array 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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" description: "More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata" required: - items x-kubernetes-group-version-kind: - group: apps kind: ControllerRevisionList version: v1 io.k8s.api.apps.v1.DaemonSet: description: DaemonSet represents the configuration of a daemon set. 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/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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" description: "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata" spec: $ref: "#/definitions/io.k8s.api.apps.v1.DaemonSetSpec" description: "The desired behavior of this daemon set. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status" status: $ref: "#/definitions/io.k8s.api.apps.v1.DaemonSetStatus" description: "The current status of this daemon set. This data may be out of date by some window of time. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status" x-kubernetes-group-version-kind: - group: apps kind: DaemonSet version: v1 io.k8s.api.apps.v1.DaemonSetCondition: description: DaemonSetCondition describes the state of a DaemonSet at a certain point. properties: lastTransitionTime: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time" description: Last time the condition transitioned from one status to another. message: description: A human readable message indicating details about the transition. type: string reason: description: The reason for the condition's last transition. type: string status: description: Status of the condition, one of True, False, Unknown. type: string type: description: Type of DaemonSet condition. type: string required: - type - status io.k8s.api.apps.v1.DaemonSetList: description: DaemonSetList is a collection of daemon sets. 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/api-conventions.md#resources" type: string items: description: A list of daemon sets. items: $ref: "#/definitions/io.k8s.api.apps.v1.DaemonSet" type: array 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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" description: "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata" required: - items x-kubernetes-group-version-kind: - group: apps kind: DaemonSetList version: v1 io.k8s.api.apps.v1.DaemonSetSpec: description: DaemonSetSpec is the specification of a daemon set. properties: minReadySeconds: description: The minimum number of seconds for which a newly created DaemonSet pod should be ready without any of its container crashing, for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready). format: int32 type: integer revisionHistoryLimit: description: The number of old history to retain to allow rollback. This is a pointer to distinguish between explicit zero and not specified. Defaults to 10. format: int32 type: integer selector: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector" description: "A label query over pods that are managed by the daemon set. Must match in order to be controlled. It must match the pod template's labels. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors" template: $ref: "#/definitions/io.k8s.api.core.v1.PodTemplateSpec" description: "An object that describes the pod that will be created. The DaemonSet will create exactly one copy of this pod on every node that matches the template's node selector (or on every node if no node selector is specified). More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller#pod-template" updateStrategy: $ref: "#/definitions/io.k8s.api.apps.v1.DaemonSetUpdateStrategy" description: An update strategy to replace existing DaemonSet pods with new pods. required: - selector - template io.k8s.api.apps.v1.DaemonSetStatus: description: DaemonSetStatus represents the current status of a daemon set. properties: collisionCount: description: Count of hash collisions for the DaemonSet. The DaemonSet controller uses this field as a collision avoidance mechanism when it needs to create the name for the newest ControllerRevision. format: int32 type: integer conditions: description: Represents the latest available observations of a DaemonSet's current state. items: $ref: "#/definitions/io.k8s.api.apps.v1.DaemonSetCondition" type: array x-kubernetes-patch-merge-key: type x-kubernetes-patch-strategy: merge currentNumberScheduled: description: "The number of nodes that are running at least 1 daemon pod and are supposed to run the daemon pod. More info: https://kubernetes.io/docs/concepts/workloads/controllers/daemonset/" format: int32 type: integer desiredNumberScheduled: description: "The total number of nodes that should be running the daemon pod (including nodes correctly running the daemon pod). More info: https://kubernetes.io/docs/concepts/workloads/controllers/daemonset/" format: int32 type: integer numberAvailable: description: The number of nodes that should be running the daemon pod and have one or more of the daemon pod running and available (ready for at least spec.minReadySeconds) format: int32 type: integer numberMisscheduled: description: "The number of nodes that are running the daemon pod, but are not supposed to run the daemon pod. More info: https://kubernetes.io/docs/concepts/workloads/controllers/daemonset/" format: int32 type: integer numberReady: description: The number of nodes that should be running the daemon pod and have one or more of the daemon pod running and ready. format: int32 type: integer numberUnavailable: description: The number of nodes that should be running the daemon pod and have none of the daemon pod running and available (ready for at least spec.minReadySeconds) format: int32 type: integer observedGeneration: description: The most recent generation observed by the daemon set controller. format: int64 type: integer updatedNumberScheduled: description: The total number of nodes that are running updated daemon pod format: int32 type: integer required: - currentNumberScheduled - numberMisscheduled - desiredNumberScheduled - numberReady io.k8s.api.apps.v1.DaemonSetUpdateStrategy: description: DaemonSetUpdateStrategy is a struct used to control the update strategy for a DaemonSet. properties: rollingUpdate: $ref: "#/definitions/io.k8s.api.apps.v1.RollingUpdateDaemonSet" description: Rolling update config params. Present only if type = "RollingUpdate". type: description: Type of daemon set update. Can be "RollingUpdate" or "OnDelete". Default is RollingUpdate. type: string io.k8s.api.apps.v1.Deployment: description: Deployment enables declarative updates for Pods and ReplicaSets. 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/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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" description: Standard object metadata. spec: $ref: "#/definitions/io.k8s.api.apps.v1.DeploymentSpec" description: Specification of the desired behavior of the Deployment. status: $ref: "#/definitions/io.k8s.api.apps.v1.DeploymentStatus" description: Most recently observed status of the Deployment. x-kubernetes-group-version-kind: - group: apps kind: Deployment version: v1 io.k8s.api.apps.v1.DeploymentCondition: description: DeploymentCondition describes the state of a deployment at a certain point. properties: lastTransitionTime: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time" description: Last time the condition transitioned from one status to another. lastUpdateTime: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time" description: The last time this condition was updated. message: description: A human readable message indicating details about the transition. type: string reason: description: The reason for the condition's last transition. type: string status: description: Status of the condition, one of True, False, Unknown. type: string type: description: Type of deployment condition. type: string required: - type - status io.k8s.api.apps.v1.DeploymentList: description: DeploymentList is a list of Deployments. 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/api-conventions.md#resources" type: string items: description: Items is the list of Deployments. items: $ref: "#/definitions/io.k8s.api.apps.v1.Deployment" type: array 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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" description: Standard list metadata. required: - items x-kubernetes-group-version-kind: - group: apps kind: DeploymentList version: v1 io.k8s.api.apps.v1.DeploymentSpec: description: DeploymentSpec is the specification of the desired behavior of the Deployment. properties: minReadySeconds: description: Minimum number of seconds for which a newly created pod should be ready without any of its container crashing, for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready) format: int32 type: integer paused: description: Indicates that the deployment is paused. type: boolean progressDeadlineSeconds: description: The maximum time in seconds for a deployment to make progress before it is considered to be failed. The deployment controller will continue to process failed deployments and a condition with a ProgressDeadlineExceeded reason will be surfaced in the deployment status. Note that progress will not be estimated during the time a deployment is paused. Defaults to 600s. format: int32 type: integer replicas: description: Number of desired pods. This is a pointer to distinguish between explicit zero and not specified. Defaults to 1. format: int32 type: integer revisionHistoryLimit: description: The number of old ReplicaSets to retain to allow rollback. This is a pointer to distinguish between explicit zero and not specified. Defaults to 10. format: int32 type: integer selector: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector" description: Label selector for pods. Existing ReplicaSets whose pods are selected by this will be the ones affected by this deployment. It must match the pod template's labels. strategy: $ref: "#/definitions/io.k8s.api.apps.v1.DeploymentStrategy" description: The deployment strategy to use to replace existing pods with new ones. template: $ref: "#/definitions/io.k8s.api.core.v1.PodTemplateSpec" description: Template describes the pods that will be created. required: - selector - template io.k8s.api.apps.v1.DeploymentStatus: description: DeploymentStatus is the most recently observed status of the Deployment. properties: availableReplicas: description: Total number of available pods (ready for at least minReadySeconds) targeted by this deployment. format: int32 type: integer collisionCount: description: Count of hash collisions for the Deployment. The Deployment controller uses this field as a collision avoidance mechanism when it needs to create the name for the newest ReplicaSet. format: int32 type: integer conditions: description: Represents the latest available observations of a deployment's current state. items: $ref: "#/definitions/io.k8s.api.apps.v1.DeploymentCondition" type: array x-kubernetes-patch-merge-key: type x-kubernetes-patch-strategy: merge observedGeneration: description: The generation observed by the deployment controller. format: int64 type: integer readyReplicas: description: Total number of ready pods targeted by this deployment. format: int32 type: integer replicas: description: Total number of non-terminated pods targeted by this deployment (their labels match the selector). format: int32 type: integer unavailableReplicas: description: Total number of unavailable pods targeted by this deployment. This is the total number of pods that are still required for the deployment to have 100% available capacity. They may either be pods that are running but not yet available or pods that still have not been created. format: int32 type: integer updatedReplicas: description: Total number of non-terminated pods targeted by this deployment that have the desired template spec. format: int32 type: integer io.k8s.api.apps.v1.DeploymentStrategy: description: DeploymentStrategy describes how to replace existing pods with new ones. properties: rollingUpdate: $ref: "#/definitions/io.k8s.api.apps.v1.RollingUpdateDeployment" description: Rolling update config params. Present only if DeploymentStrategyType = RollingUpdate. type: description: Type of deployment. Can be "Recreate" or "RollingUpdate". Default is RollingUpdate. type: string io.k8s.api.apps.v1.ReplicaSet: description: ReplicaSet ensures that a specified number of pod replicas are running at any given time. 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/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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" description: "If the Labels of a ReplicaSet are empty, they are defaulted to be the same as the Pod(s) that the ReplicaSet manages. Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata" spec: $ref: "#/definitions/io.k8s.api.apps.v1.ReplicaSetSpec" description: "Spec defines the specification of the desired behavior of the ReplicaSet. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status" status: $ref: "#/definitions/io.k8s.api.apps.v1.ReplicaSetStatus" description: "Status is the most recently observed status of the ReplicaSet. This data may be out of date by some window of time. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status" x-kubernetes-group-version-kind: - group: apps kind: ReplicaSet version: v1 io.k8s.api.apps.v1.ReplicaSetCondition: description: ReplicaSetCondition describes the state of a replica set at a certain point. properties: lastTransitionTime: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time" description: The last time the condition transitioned from one status to another. message: description: A human readable message indicating details about the transition. type: string reason: description: The reason for the condition's last transition. type: string status: description: Status of the condition, one of True, False, Unknown. type: string type: description: Type of replica set condition. type: string required: - type - status io.k8s.api.apps.v1.ReplicaSetList: description: ReplicaSetList is a collection of ReplicaSets. 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/api-conventions.md#resources" type: string items: description: "List of ReplicaSets. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller" items: $ref: "#/definitions/io.k8s.api.apps.v1.ReplicaSet" type: array 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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" description: "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds" required: - items x-kubernetes-group-version-kind: - group: apps kind: ReplicaSetList version: v1 io.k8s.api.apps.v1.ReplicaSetSpec: description: ReplicaSetSpec is the specification of a ReplicaSet. properties: minReadySeconds: description: Minimum number of seconds for which a newly created pod should be ready without any of its container crashing, for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready) format: int32 type: integer replicas: description: "Replicas is the number of desired replicas. This is a pointer to distinguish between explicit zero and unspecified. Defaults to 1. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller/#what-is-a-replicationcontroller" format: int32 type: integer selector: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector" description: "Selector is a label query over pods that should match the replica count. Label keys and values that must match in order to be controlled by this replica set. It must match the pod template's labels. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors" template: $ref: "#/definitions/io.k8s.api.core.v1.PodTemplateSpec" description: "Template is the object that describes the pod that will be created if insufficient replicas are detected. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller#pod-template" required: - selector io.k8s.api.apps.v1.ReplicaSetStatus: description: ReplicaSetStatus represents the current status of a ReplicaSet. properties: availableReplicas: description: The number of available replicas (ready for at least minReadySeconds) for this replica set. format: int32 type: integer conditions: description: Represents the latest available observations of a replica set's current state. items: $ref: "#/definitions/io.k8s.api.apps.v1.ReplicaSetCondition" type: array x-kubernetes-patch-merge-key: type x-kubernetes-patch-strategy: merge fullyLabeledReplicas: description: The number of pods that have labels matching the labels of the pod template of the replicaset. format: int32 type: integer observedGeneration: description: ObservedGeneration reflects the generation of the most recently observed ReplicaSet. format: int64 type: integer readyReplicas: description: The number of ready replicas for this replica set. format: int32 type: integer replicas: description: "Replicas is the most recently oberved number of replicas. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller/#what-is-a-replicationcontroller" format: int32 type: integer required: - replicas io.k8s.api.apps.v1.RollingUpdateDaemonSet: description: Spec to control the desired behavior of daemon set rolling update. properties: maxUnavailable: $ref: "#/definitions/io.k8s.apimachinery.pkg.util.intstr.IntOrString" description: "The maximum number of DaemonSet pods that can be unavailable during the update. Value can be an absolute number (ex: 5) or a percentage of total number of DaemonSet pods at the start of the update (ex: 10%). Absolute number is calculated from percentage by rounding up. This cannot be 0. Default value is 1. Example: when this is set to 30%, at most 30% of the total number of nodes that should be running the daemon pod (i.e. status.desiredNumberScheduled) can have their pods stopped for an update at any given time. The update starts by stopping at most 30% of those DaemonSet pods and then brings up new DaemonSet pods in their place. Once the new pods are available, it then proceeds onto other DaemonSet pods, thus ensuring that at least 70% of original number of DaemonSet pods are available at all times during the update." io.k8s.api.apps.v1.RollingUpdateDeployment: description: Spec to control the desired behavior of rolling update. properties: maxSurge: $ref: "#/definitions/io.k8s.apimachinery.pkg.util.intstr.IntOrString" description: "The maximum number of pods that can be scheduled above the desired number of pods. Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). This can not be 0 if MaxUnavailable is 0. Absolute number is calculated from percentage by rounding up. Defaults to 25%. Example: when this is set to 30%, the new RC can be scaled up immediately when the rolling update starts, such that the total number of old and new pods do not exceed 130% of desired pods. Once old pods have been killed, new RC can be scaled up further, ensuring that total number of pods running at any time during the update is at most 130% of desired pods." maxUnavailable: $ref: "#/definitions/io.k8s.apimachinery.pkg.util.intstr.IntOrString" description: "The maximum number of pods that can be unavailable during the update. Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). Absolute number is calculated from percentage by rounding down. This can not be 0 if MaxSurge is 0. Defaults to 25%. Example: when this is set to 30%, the old RC can be scaled down to 70% of desired pods immediately when the rolling update starts. Once new pods are ready, old RC can be scaled down further, followed by scaling up the new RC, ensuring that the total number of pods available at all times during the update is at least 70% of desired pods." io.k8s.api.apps.v1.RollingUpdateStatefulSetStrategy: description: RollingUpdateStatefulSetStrategy is used to communicate parameter for RollingUpdateStatefulSetStrategyType. properties: partition: description: Partition indicates the ordinal at which the StatefulSet should be partitioned. Default value is 0. format: int32 type: integer io.k8s.api.apps.v1.StatefulSet: description: |- StatefulSet represents a set of pods with consistent identities. Identities are defined as: - Network: A single stable DNS and hostname. - Storage: As many VolumeClaims as requested. The StatefulSet guarantees that a given network identity will always map to the same storage identity. 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/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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" spec: $ref: "#/definitions/io.k8s.api.apps.v1.StatefulSetSpec" description: Spec defines the desired identities of pods in this set. status: $ref: "#/definitions/io.k8s.api.apps.v1.StatefulSetStatus" description: Status is the current status of Pods in this StatefulSet. This data may be out of date by some window of time. x-kubernetes-group-version-kind: - group: apps kind: StatefulSet version: v1 io.k8s.api.apps.v1.StatefulSetCondition: description: StatefulSetCondition describes the state of a statefulset at a certain point. properties: lastTransitionTime: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time" description: Last time the condition transitioned from one status to another. message: description: A human readable message indicating details about the transition. type: string reason: description: The reason for the condition's last transition. type: string status: description: Status of the condition, one of True, False, Unknown. type: string type: description: Type of statefulset condition. type: string required: - type - status io.k8s.api.apps.v1.StatefulSetList: description: StatefulSetList is a collection of StatefulSets. 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/api-conventions.md#resources" type: string items: items: $ref: "#/definitions/io.k8s.api.apps.v1.StatefulSet" type: array 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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" required: - items x-kubernetes-group-version-kind: - group: apps kind: StatefulSetList version: v1 io.k8s.api.apps.v1.StatefulSetSpec: description: A StatefulSetSpec is the specification of a StatefulSet. properties: podManagementPolicy: description: podManagementPolicy controls how pods are created during initial scale up, when replacing pods on nodes, or when scaling down. The default policy is `OrderedReady`, where pods are created in increasing order (pod-0, then pod-1, etc) and the controller will wait until each pod is ready before continuing. When scaling down, the pods are removed in the opposite order. The alternative policy is `Parallel` which will create pods in parallel to match the desired scale without waiting, and on scale down will delete all pods at once. type: string replicas: description: replicas is the desired number of replicas of the given Template. These are replicas in the sense that they are instantiations of the same Template, but individual replicas also have a consistent identity. If unspecified, defaults to 1. format: int32 type: integer revisionHistoryLimit: description: revisionHistoryLimit is the maximum number of revisions that will be maintained in the StatefulSet's revision history. The revision history consists of all revisions not represented by a currently applied StatefulSetSpec version. The default value is 10. format: int32 type: integer selector: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector" description: "selector is a label query over pods that should match the replica count. It must match the pod template's labels. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors" serviceName: description: 'serviceName is the name of the service that governs this StatefulSet. This service must exist before the StatefulSet, and is responsible for the network identity of the set. Pods get DNS/hostnames that follow the pattern: pod-specific-string.serviceName.default.svc.cluster.local where "pod-specific-string" is managed by the StatefulSet controller.' type: string template: $ref: "#/definitions/io.k8s.api.core.v1.PodTemplateSpec" description: template is the object that describes the pod that will be created if insufficient replicas are detected. Each pod stamped out by the StatefulSet will fulfill this Template, but have a unique identity from the rest of the StatefulSet. updateStrategy: $ref: "#/definitions/io.k8s.api.apps.v1.StatefulSetUpdateStrategy" description: updateStrategy indicates the StatefulSetUpdateStrategy that will be employed to update Pods in the StatefulSet when a revision is made to Template. volumeClaimTemplates: description: volumeClaimTemplates is a list of claims that pods are allowed to reference. The StatefulSet controller is responsible for mapping network identities to claims in a way that maintains the identity of a pod. Every claim in this list must have at least one matching (by name) volumeMount in one container in the template. A claim in this list takes precedence over any volumes in the template, with the same name. items: $ref: "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaim" type: array required: - selector - template - serviceName io.k8s.api.apps.v1.StatefulSetStatus: description: StatefulSetStatus represents the current state of a StatefulSet. properties: collisionCount: description: collisionCount is the count of hash collisions for the StatefulSet. The StatefulSet controller uses this field as a collision avoidance mechanism when it needs to create the name for the newest ControllerRevision. format: int32 type: integer conditions: description: Represents the latest available observations of a statefulset's current state. items: $ref: "#/definitions/io.k8s.api.apps.v1.StatefulSetCondition" type: array x-kubernetes-patch-merge-key: type x-kubernetes-patch-strategy: merge currentReplicas: description: currentReplicas is the number of Pods created by the StatefulSet controller from the StatefulSet version indicated by currentRevision. format: int32 type: integer currentRevision: description: currentRevision, if not empty, indicates the version of the StatefulSet used to generate Pods in the sequence [0,currentReplicas). type: string observedGeneration: description: observedGeneration is the most recent generation observed for this StatefulSet. It corresponds to the StatefulSet's generation, which is updated on mutation by the API Server. format: int64 type: integer readyReplicas: description: readyReplicas is the number of Pods created by the StatefulSet controller that have a Ready Condition. format: int32 type: integer replicas: description: replicas is the number of Pods created by the StatefulSet controller. format: int32 type: integer updateRevision: description: updateRevision, if not empty, indicates the version of the StatefulSet used to generate Pods in the sequence [replicas-updatedReplicas,replicas) type: string updatedReplicas: description: updatedReplicas is the number of Pods created by the StatefulSet controller from the StatefulSet version indicated by updateRevision. format: int32 type: integer required: - replicas io.k8s.api.apps.v1.StatefulSetUpdateStrategy: description: StatefulSetUpdateStrategy indicates the strategy that the StatefulSet controller will use to perform updates. It includes any additional parameters necessary to perform the update for the indicated strategy. properties: rollingUpdate: $ref: "#/definitions/io.k8s.api.apps.v1.RollingUpdateStatefulSetStrategy" description: RollingUpdate is used to communicate parameters when Type is RollingUpdateStatefulSetStrategyType. type: description: Type indicates the type of the StatefulSetUpdateStrategy. Default is RollingUpdate. type: string io.k8s.api.apps.v1beta1.ControllerRevision: description: DEPRECATED - This group version of ControllerRevision is deprecated by apps/v1beta2/ControllerRevision. See the release notes for more information. ControllerRevision implements an immutable snapshot of state data. Clients are responsible for serializing and deserializing the objects that contain their internal state. Once a ControllerRevision has been successfully created, it can not be updated. The API Server will fail validation of all requests that attempt to mutate the Data field. ControllerRevisions may, however, be deleted. Note that, due to its use by both the DaemonSet and StatefulSet controllers for update and rollback, this object is beta. However, it may be subject to name and representation changes in future releases, and clients should not depend on its stability. It is primarily for internal use by controllers. 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/api-conventions.md#resources" type: string data: $ref: "#/definitions/io.k8s.apimachinery.pkg.runtime.RawExtension" description: Data is the serialized representation of the state. 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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" description: "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata" revision: description: Revision indicates the revision of the state represented by Data. format: int64 type: integer required: - revision x-kubernetes-group-version-kind: - group: apps kind: ControllerRevision version: v1beta1 io.k8s.api.apps.v1beta1.ControllerRevisionList: description: ControllerRevisionList is a resource containing a list of ControllerRevision objects. 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/api-conventions.md#resources" type: string items: description: Items is the list of ControllerRevisions items: $ref: "#/definitions/io.k8s.api.apps.v1beta1.ControllerRevision" type: array 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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" description: "More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata" required: - items x-kubernetes-group-version-kind: - group: apps kind: ControllerRevisionList version: v1beta1 io.k8s.api.apps.v1beta1.Deployment: description: DEPRECATED - This group version of Deployment is deprecated by apps/v1beta2/Deployment. See the release notes for more information. Deployment enables declarative updates for Pods and ReplicaSets. 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/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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" description: Standard object metadata. spec: $ref: "#/definitions/io.k8s.api.apps.v1beta1.DeploymentSpec" description: Specification of the desired behavior of the Deployment. status: $ref: "#/definitions/io.k8s.api.apps.v1beta1.DeploymentStatus" description: Most recently observed status of the Deployment. x-kubernetes-group-version-kind: - group: apps kind: Deployment version: v1beta1 io.k8s.api.apps.v1beta1.DeploymentCondition: description: DeploymentCondition describes the state of a deployment at a certain point. properties: lastTransitionTime: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time" description: Last time the condition transitioned from one status to another. lastUpdateTime: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time" description: The last time this condition was updated. message: description: A human readable message indicating details about the transition. type: string reason: description: The reason for the condition's last transition. type: string status: description: Status of the condition, one of True, False, Unknown. type: string type: description: Type of deployment condition. type: string required: - type - status io.k8s.api.apps.v1beta1.DeploymentList: description: DeploymentList is a list of Deployments. 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/api-conventions.md#resources" type: string items: description: Items is the list of Deployments. items: $ref: "#/definitions/io.k8s.api.apps.v1beta1.Deployment" type: array 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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" description: Standard list metadata. required: - items x-kubernetes-group-version-kind: - group: apps kind: DeploymentList version: v1beta1 io.k8s.api.apps.v1beta1.DeploymentRollback: description: DEPRECATED. DeploymentRollback stores the information required to rollback a deployment. 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/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/api-conventions.md#types-kinds" type: string name: description: "Required: This must match the Name of a deployment." type: string rollbackTo: $ref: "#/definitions/io.k8s.api.apps.v1beta1.RollbackConfig" description: The config of this deployment rollback. updatedAnnotations: additionalProperties: type: string description: The annotations to be updated to a deployment type: object required: - name - rollbackTo x-kubernetes-group-version-kind: - group: apps kind: DeploymentRollback version: v1beta1 io.k8s.api.apps.v1beta1.DeploymentSpec: description: DeploymentSpec is the specification of the desired behavior of the Deployment. properties: minReadySeconds: description: Minimum number of seconds for which a newly created pod should be ready without any of its container crashing, for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready) format: int32 type: integer paused: description: Indicates that the deployment is paused. type: boolean progressDeadlineSeconds: description: The maximum time in seconds for a deployment to make progress before it is considered to be failed. The deployment controller will continue to process failed deployments and a condition with a ProgressDeadlineExceeded reason will be surfaced in the deployment status. Note that progress will not be estimated during the time a deployment is paused. Defaults to 600s. format: int32 type: integer replicas: description: Number of desired pods. This is a pointer to distinguish between explicit zero and not specified. Defaults to 1. format: int32 type: integer revisionHistoryLimit: description: The number of old ReplicaSets to retain to allow rollback. This is a pointer to distinguish between explicit zero and not specified. Defaults to 2. format: int32 type: integer rollbackTo: $ref: "#/definitions/io.k8s.api.apps.v1beta1.RollbackConfig" description: DEPRECATED. The config this deployment is rolling back to. Will be cleared after rollback is done. selector: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector" description: Label selector for pods. Existing ReplicaSets whose pods are selected by this will be the ones affected by this deployment. strategy: $ref: "#/definitions/io.k8s.api.apps.v1beta1.DeploymentStrategy" description: The deployment strategy to use to replace existing pods with new ones. template: $ref: "#/definitions/io.k8s.api.core.v1.PodTemplateSpec" description: Template describes the pods that will be created. required: - template io.k8s.api.apps.v1beta1.DeploymentStatus: description: DeploymentStatus is the most recently observed status of the Deployment. properties: availableReplicas: description: Total number of available pods (ready for at least minReadySeconds) targeted by this deployment. format: int32 type: integer collisionCount: description: Count of hash collisions for the Deployment. The Deployment controller uses this field as a collision avoidance mechanism when it needs to create the name for the newest ReplicaSet. format: int32 type: integer conditions: description: Represents the latest available observations of a deployment's current state. items: $ref: "#/definitions/io.k8s.api.apps.v1beta1.DeploymentCondition" type: array x-kubernetes-patch-merge-key: type x-kubernetes-patch-strategy: merge observedGeneration: description: The generation observed by the deployment controller. format: int64 type: integer readyReplicas: description: Total number of ready pods targeted by this deployment. format: int32 type: integer replicas: description: Total number of non-terminated pods targeted by this deployment (their labels match the selector). format: int32 type: integer unavailableReplicas: description: Total number of unavailable pods targeted by this deployment. This is the total number of pods that are still required for the deployment to have 100% available capacity. They may either be pods that are running but not yet available or pods that still have not been created. format: int32 type: integer updatedReplicas: description: Total number of non-terminated pods targeted by this deployment that have the desired template spec. format: int32 type: integer io.k8s.api.apps.v1beta1.DeploymentStrategy: description: DeploymentStrategy describes how to replace existing pods with new ones. properties: rollingUpdate: $ref: "#/definitions/io.k8s.api.apps.v1beta1.RollingUpdateDeployment" description: Rolling update config params. Present only if DeploymentStrategyType = RollingUpdate. type: description: Type of deployment. Can be "Recreate" or "RollingUpdate". Default is RollingUpdate. type: string io.k8s.api.apps.v1beta1.RollbackConfig: description: DEPRECATED. properties: revision: description: The revision to rollback to. If set to 0, rollback to the last revision. format: int64 type: integer io.k8s.api.apps.v1beta1.RollingUpdateDeployment: description: Spec to control the desired behavior of rolling update. properties: maxSurge: $ref: "#/definitions/io.k8s.apimachinery.pkg.util.intstr.IntOrString" description: "The maximum number of pods that can be scheduled above the desired number of pods. Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). This can not be 0 if MaxUnavailable is 0. Absolute number is calculated from percentage by rounding up. Defaults to 25%. Example: when this is set to 30%, the new RC can be scaled up immediately when the rolling update starts, such that the total number of old and new pods do not exceed 130% of desired pods. Once old pods have been killed, new RC can be scaled up further, ensuring that total number of pods running at any time during the update is atmost 130% of desired pods." maxUnavailable: $ref: "#/definitions/io.k8s.apimachinery.pkg.util.intstr.IntOrString" description: "The maximum number of pods that can be unavailable during the update. Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). Absolute number is calculated from percentage by rounding down. This can not be 0 if MaxSurge is 0. Defaults to 25%. Example: when this is set to 30%, the old RC can be scaled down to 70% of desired pods immediately when the rolling update starts. Once new pods are ready, old RC can be scaled down further, followed by scaling up the new RC, ensuring that the total number of pods available at all times during the update is at least 70% of desired pods." io.k8s.api.apps.v1beta1.RollingUpdateStatefulSetStrategy: description: RollingUpdateStatefulSetStrategy is used to communicate parameter for RollingUpdateStatefulSetStrategyType. properties: partition: description: Partition indicates the ordinal at which the StatefulSet should be partitioned. format: int32 type: integer io.k8s.api.apps.v1beta1.Scale: description: Scale represents a scaling request for a resource. 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/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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" description: "Standard object metadata; More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata." spec: $ref: "#/definitions/io.k8s.api.apps.v1beta1.ScaleSpec" description: "defines the behavior of the scale. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status." status: $ref: "#/definitions/io.k8s.api.apps.v1beta1.ScaleStatus" description: "current status of the scale. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status. Read-only." x-kubernetes-group-version-kind: - group: apps kind: Scale version: v1beta1 io.k8s.api.apps.v1beta1.ScaleSpec: description: ScaleSpec describes the attributes of a scale subresource properties: replicas: description: desired number of instances for the scaled object. format: int32 type: integer io.k8s.api.apps.v1beta1.ScaleStatus: description: ScaleStatus represents the current status of a scale subresource. properties: replicas: description: actual number of observed instances of the scaled object. format: int32 type: integer selector: additionalProperties: type: string description: "label query over pods that should match the replicas count. More info: http://kubernetes.io/docs/user-guide/labels#label-selectors" type: object targetSelector: description: "label selector for pods that should match the replicas count. This is a serializated version of both map-based and more expressive set-based selectors. This is done to avoid introspection in the clients. The string will be in the same format as the query-param syntax. If the target type only supports map-based selectors, both this field and map-based selector field are populated. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors" type: string required: - replicas io.k8s.api.apps.v1beta1.StatefulSet: description: |- DEPRECATED - This group version of StatefulSet is deprecated by apps/v1beta2/StatefulSet. See the release notes for more information. StatefulSet represents a set of pods with consistent identities. Identities are defined as: - Network: A single stable DNS and hostname. - Storage: As many VolumeClaims as requested. The StatefulSet guarantees that a given network identity will always map to the same storage identity. 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/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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" spec: $ref: "#/definitions/io.k8s.api.apps.v1beta1.StatefulSetSpec" description: Spec defines the desired identities of pods in this set. status: $ref: "#/definitions/io.k8s.api.apps.v1beta1.StatefulSetStatus" description: Status is the current status of Pods in this StatefulSet. This data may be out of date by some window of time. x-kubernetes-group-version-kind: - group: apps kind: StatefulSet version: v1beta1 io.k8s.api.apps.v1beta1.StatefulSetCondition: description: StatefulSetCondition describes the state of a statefulset at a certain point. properties: lastTransitionTime: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time" description: Last time the condition transitioned from one status to another. message: description: A human readable message indicating details about the transition. type: string reason: description: The reason for the condition's last transition. type: string status: description: Status of the condition, one of True, False, Unknown. type: string type: description: Type of statefulset condition. type: string required: - type - status io.k8s.api.apps.v1beta1.StatefulSetList: description: StatefulSetList is a collection of StatefulSets. 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/api-conventions.md#resources" type: string items: items: $ref: "#/definitions/io.k8s.api.apps.v1beta1.StatefulSet" type: array 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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" required: - items x-kubernetes-group-version-kind: - group: apps kind: StatefulSetList version: v1beta1 io.k8s.api.apps.v1beta1.StatefulSetSpec: description: A StatefulSetSpec is the specification of a StatefulSet. properties: podManagementPolicy: description: podManagementPolicy controls how pods are created during initial scale up, when replacing pods on nodes, or when scaling down. The default policy is `OrderedReady`, where pods are created in increasing order (pod-0, then pod-1, etc) and the controller will wait until each pod is ready before continuing. When scaling down, the pods are removed in the opposite order. The alternative policy is `Parallel` which will create pods in parallel to match the desired scale without waiting, and on scale down will delete all pods at once. type: string replicas: description: replicas is the desired number of replicas of the given Template. These are replicas in the sense that they are instantiations of the same Template, but individual replicas also have a consistent identity. If unspecified, defaults to 1. format: int32 type: integer revisionHistoryLimit: description: revisionHistoryLimit is the maximum number of revisions that will be maintained in the StatefulSet's revision history. The revision history consists of all revisions not represented by a currently applied StatefulSetSpec version. The default value is 10. format: int32 type: integer selector: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector" description: "selector is a label query over pods that should match the replica count. If empty, defaulted to labels on the pod template. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors" serviceName: description: 'serviceName is the name of the service that governs this StatefulSet. This service must exist before the StatefulSet, and is responsible for the network identity of the set. Pods get DNS/hostnames that follow the pattern: pod-specific-string.serviceName.default.svc.cluster.local where "pod-specific-string" is managed by the StatefulSet controller.' type: string template: $ref: "#/definitions/io.k8s.api.core.v1.PodTemplateSpec" description: template is the object that describes the pod that will be created if insufficient replicas are detected. Each pod stamped out by the StatefulSet will fulfill this Template, but have a unique identity from the rest of the StatefulSet. updateStrategy: $ref: "#/definitions/io.k8s.api.apps.v1beta1.StatefulSetUpdateStrategy" description: updateStrategy indicates the StatefulSetUpdateStrategy that will be employed to update Pods in the StatefulSet when a revision is made to Template. volumeClaimTemplates: description: volumeClaimTemplates is a list of claims that pods are allowed to reference. The StatefulSet controller is responsible for mapping network identities to claims in a way that maintains the identity of a pod. Every claim in this list must have at least one matching (by name) volumeMount in one container in the template. A claim in this list takes precedence over any volumes in the template, with the same name. items: $ref: "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaim" type: array required: - template - serviceName io.k8s.api.apps.v1beta1.StatefulSetStatus: description: StatefulSetStatus represents the current state of a StatefulSet. properties: collisionCount: description: collisionCount is the count of hash collisions for the StatefulSet. The StatefulSet controller uses this field as a collision avoidance mechanism when it needs to create the name for the newest ControllerRevision. format: int32 type: integer conditions: description: Represents the latest available observations of a statefulset's current state. items: $ref: "#/definitions/io.k8s.api.apps.v1beta1.StatefulSetCondition" type: array x-kubernetes-patch-merge-key: type x-kubernetes-patch-strategy: merge currentReplicas: description: currentReplicas is the number of Pods created by the StatefulSet controller from the StatefulSet version indicated by currentRevision. format: int32 type: integer currentRevision: description: currentRevision, if not empty, indicates the version of the StatefulSet used to generate Pods in the sequence [0,currentReplicas). type: string observedGeneration: description: observedGeneration is the most recent generation observed for this StatefulSet. It corresponds to the StatefulSet's generation, which is updated on mutation by the API Server. format: int64 type: integer readyReplicas: description: readyReplicas is the number of Pods created by the StatefulSet controller that have a Ready Condition. format: int32 type: integer replicas: description: replicas is the number of Pods created by the StatefulSet controller. format: int32 type: integer updateRevision: description: updateRevision, if not empty, indicates the version of the StatefulSet used to generate Pods in the sequence [replicas-updatedReplicas,replicas) type: string updatedReplicas: description: updatedReplicas is the number of Pods created by the StatefulSet controller from the StatefulSet version indicated by updateRevision. format: int32 type: integer required: - replicas io.k8s.api.apps.v1beta1.StatefulSetUpdateStrategy: description: StatefulSetUpdateStrategy indicates the strategy that the StatefulSet controller will use to perform updates. It includes any additional parameters necessary to perform the update for the indicated strategy. properties: rollingUpdate: $ref: "#/definitions/io.k8s.api.apps.v1beta1.RollingUpdateStatefulSetStrategy" description: RollingUpdate is used to communicate parameters when Type is RollingUpdateStatefulSetStrategyType. type: description: Type indicates the type of the StatefulSetUpdateStrategy. type: string io.k8s.api.apps.v1beta2.ControllerRevision: description: DEPRECATED - This group version of ControllerRevision is deprecated by apps/v1/ControllerRevision. See the release notes for more information. ControllerRevision implements an immutable snapshot of state data. Clients are responsible for serializing and deserializing the objects that contain their internal state. Once a ControllerRevision has been successfully created, it can not be updated. The API Server will fail validation of all requests that attempt to mutate the Data field. ControllerRevisions may, however, be deleted. Note that, due to its use by both the DaemonSet and StatefulSet controllers for update and rollback, this object is beta. However, it may be subject to name and representation changes in future releases, and clients should not depend on its stability. It is primarily for internal use by controllers. 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/api-conventions.md#resources" type: string data: $ref: "#/definitions/io.k8s.apimachinery.pkg.runtime.RawExtension" description: Data is the serialized representation of the state. 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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" description: "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata" revision: description: Revision indicates the revision of the state represented by Data. format: int64 type: integer required: - revision x-kubernetes-group-version-kind: - group: apps kind: ControllerRevision version: v1beta2 io.k8s.api.apps.v1beta2.ControllerRevisionList: description: ControllerRevisionList is a resource containing a list of ControllerRevision objects. 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/api-conventions.md#resources" type: string items: description: Items is the list of ControllerRevisions items: $ref: "#/definitions/io.k8s.api.apps.v1beta2.ControllerRevision" type: array 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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" description: "More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata" required: - items x-kubernetes-group-version-kind: - group: apps kind: ControllerRevisionList version: v1beta2 io.k8s.api.apps.v1beta2.DaemonSet: description: DEPRECATED - This group version of DaemonSet is deprecated by apps/v1/DaemonSet. See the release notes for more information. DaemonSet represents the configuration of a daemon set. 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/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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" description: "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata" spec: $ref: "#/definitions/io.k8s.api.apps.v1beta2.DaemonSetSpec" description: "The desired behavior of this daemon set. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status" status: $ref: "#/definitions/io.k8s.api.apps.v1beta2.DaemonSetStatus" description: "The current status of this daemon set. This data may be out of date by some window of time. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status" x-kubernetes-group-version-kind: - group: apps kind: DaemonSet version: v1beta2 io.k8s.api.apps.v1beta2.DaemonSetCondition: description: DaemonSetCondition describes the state of a DaemonSet at a certain point. properties: lastTransitionTime: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time" description: Last time the condition transitioned from one status to another. message: description: A human readable message indicating details about the transition. type: string reason: description: The reason for the condition's last transition. type: string status: description: Status of the condition, one of True, False, Unknown. type: string type: description: Type of DaemonSet condition. type: string required: - type - status io.k8s.api.apps.v1beta2.DaemonSetList: description: DaemonSetList is a collection of daemon sets. 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/api-conventions.md#resources" type: string items: description: A list of daemon sets. items: $ref: "#/definitions/io.k8s.api.apps.v1beta2.DaemonSet" type: array 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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" description: "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata" required: - items x-kubernetes-group-version-kind: - group: apps kind: DaemonSetList version: v1beta2 io.k8s.api.apps.v1beta2.DaemonSetSpec: description: DaemonSetSpec is the specification of a daemon set. properties: minReadySeconds: description: The minimum number of seconds for which a newly created DaemonSet pod should be ready without any of its container crashing, for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready). format: int32 type: integer revisionHistoryLimit: description: The number of old history to retain to allow rollback. This is a pointer to distinguish between explicit zero and not specified. Defaults to 10. format: int32 type: integer selector: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector" description: "A label query over pods that are managed by the daemon set. Must match in order to be controlled. It must match the pod template's labels. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors" template: $ref: "#/definitions/io.k8s.api.core.v1.PodTemplateSpec" description: "An object that describes the pod that will be created. The DaemonSet will create exactly one copy of this pod on every node that matches the template's node selector (or on every node if no node selector is specified). More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller#pod-template" updateStrategy: $ref: "#/definitions/io.k8s.api.apps.v1beta2.DaemonSetUpdateStrategy" description: An update strategy to replace existing DaemonSet pods with new pods. required: - selector - template io.k8s.api.apps.v1beta2.DaemonSetStatus: description: DaemonSetStatus represents the current status of a daemon set. properties: collisionCount: description: Count of hash collisions for the DaemonSet. The DaemonSet controller uses this field as a collision avoidance mechanism when it needs to create the name for the newest ControllerRevision. format: int32 type: integer conditions: description: Represents the latest available observations of a DaemonSet's current state. items: $ref: "#/definitions/io.k8s.api.apps.v1beta2.DaemonSetCondition" type: array x-kubernetes-patch-merge-key: type x-kubernetes-patch-strategy: merge currentNumberScheduled: description: "The number of nodes that are running at least 1 daemon pod and are supposed to run the daemon pod. More info: https://kubernetes.io/docs/concepts/workloads/controllers/daemonset/" format: int32 type: integer desiredNumberScheduled: description: "The total number of nodes that should be running the daemon pod (including nodes correctly running the daemon pod). More info: https://kubernetes.io/docs/concepts/workloads/controllers/daemonset/" format: int32 type: integer numberAvailable: description: The number of nodes that should be running the daemon pod and have one or more of the daemon pod running and available (ready for at least spec.minReadySeconds) format: int32 type: integer numberMisscheduled: description: "The number of nodes that are running the daemon pod, but are not supposed to run the daemon pod. More info: https://kubernetes.io/docs/concepts/workloads/controllers/daemonset/" format: int32 type: integer numberReady: description: The number of nodes that should be running the daemon pod and have one or more of the daemon pod running and ready. format: int32 type: integer numberUnavailable: description: The number of nodes that should be running the daemon pod and have none of the daemon pod running and available (ready for at least spec.minReadySeconds) format: int32 type: integer observedGeneration: description: The most recent generation observed by the daemon set controller. format: int64 type: integer updatedNumberScheduled: description: The total number of nodes that are running updated daemon pod format: int32 type: integer required: - currentNumberScheduled - numberMisscheduled - desiredNumberScheduled - numberReady io.k8s.api.apps.v1beta2.DaemonSetUpdateStrategy: description: DaemonSetUpdateStrategy is a struct used to control the update strategy for a DaemonSet. properties: rollingUpdate: $ref: "#/definitions/io.k8s.api.apps.v1beta2.RollingUpdateDaemonSet" description: Rolling update config params. Present only if type = "RollingUpdate". type: description: Type of daemon set update. Can be "RollingUpdate" or "OnDelete". Default is RollingUpdate. type: string io.k8s.api.apps.v1beta2.Deployment: description: DEPRECATED - This group version of Deployment is deprecated by apps/v1/Deployment. See the release notes for more information. Deployment enables declarative updates for Pods and ReplicaSets. 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/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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" description: Standard object metadata. spec: $ref: "#/definitions/io.k8s.api.apps.v1beta2.DeploymentSpec" description: Specification of the desired behavior of the Deployment. status: $ref: "#/definitions/io.k8s.api.apps.v1beta2.DeploymentStatus" description: Most recently observed status of the Deployment. x-kubernetes-group-version-kind: - group: apps kind: Deployment version: v1beta2 io.k8s.api.apps.v1beta2.DeploymentCondition: description: DeploymentCondition describes the state of a deployment at a certain point. properties: lastTransitionTime: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time" description: Last time the condition transitioned from one status to another. lastUpdateTime: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time" description: The last time this condition was updated. message: description: A human readable message indicating details about the transition. type: string reason: description: The reason for the condition's last transition. type: string status: description: Status of the condition, one of True, False, Unknown. type: string type: description: Type of deployment condition. type: string required: - type - status io.k8s.api.apps.v1beta2.DeploymentList: description: DeploymentList is a list of Deployments. 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/api-conventions.md#resources" type: string items: description: Items is the list of Deployments. items: $ref: "#/definitions/io.k8s.api.apps.v1beta2.Deployment" type: array 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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" description: Standard list metadata. required: - items x-kubernetes-group-version-kind: - group: apps kind: DeploymentList version: v1beta2 io.k8s.api.apps.v1beta2.DeploymentSpec: description: DeploymentSpec is the specification of the desired behavior of the Deployment. properties: minReadySeconds: description: Minimum number of seconds for which a newly created pod should be ready without any of its container crashing, for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready) format: int32 type: integer paused: description: Indicates that the deployment is paused. type: boolean progressDeadlineSeconds: description: The maximum time in seconds for a deployment to make progress before it is considered to be failed. The deployment controller will continue to process failed deployments and a condition with a ProgressDeadlineExceeded reason will be surfaced in the deployment status. Note that progress will not be estimated during the time a deployment is paused. Defaults to 600s. format: int32 type: integer replicas: description: Number of desired pods. This is a pointer to distinguish between explicit zero and not specified. Defaults to 1. format: int32 type: integer revisionHistoryLimit: description: The number of old ReplicaSets to retain to allow rollback. This is a pointer to distinguish between explicit zero and not specified. Defaults to 10. format: int32 type: integer selector: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector" description: Label selector for pods. Existing ReplicaSets whose pods are selected by this will be the ones affected by this deployment. It must match the pod template's labels. strategy: $ref: "#/definitions/io.k8s.api.apps.v1beta2.DeploymentStrategy" description: The deployment strategy to use to replace existing pods with new ones. template: $ref: "#/definitions/io.k8s.api.core.v1.PodTemplateSpec" description: Template describes the pods that will be created. required: - selector - template io.k8s.api.apps.v1beta2.DeploymentStatus: description: DeploymentStatus is the most recently observed status of the Deployment. properties: availableReplicas: description: Total number of available pods (ready for at least minReadySeconds) targeted by this deployment. format: int32 type: integer collisionCount: description: Count of hash collisions for the Deployment. The Deployment controller uses this field as a collision avoidance mechanism when it needs to create the name for the newest ReplicaSet. format: int32 type: integer conditions: description: Represents the latest available observations of a deployment's current state. items: $ref: "#/definitions/io.k8s.api.apps.v1beta2.DeploymentCondition" type: array x-kubernetes-patch-merge-key: type x-kubernetes-patch-strategy: merge observedGeneration: description: The generation observed by the deployment controller. format: int64 type: integer readyReplicas: description: Total number of ready pods targeted by this deployment. format: int32 type: integer replicas: description: Total number of non-terminated pods targeted by this deployment (their labels match the selector). format: int32 type: integer unavailableReplicas: description: Total number of unavailable pods targeted by this deployment. This is the total number of pods that are still required for the deployment to have 100% available capacity. They may either be pods that are running but not yet available or pods that still have not been created. format: int32 type: integer updatedReplicas: description: Total number of non-terminated pods targeted by this deployment that have the desired template spec. format: int32 type: integer io.k8s.api.apps.v1beta2.DeploymentStrategy: description: DeploymentStrategy describes how to replace existing pods with new ones. properties: rollingUpdate: $ref: "#/definitions/io.k8s.api.apps.v1beta2.RollingUpdateDeployment" description: Rolling update config params. Present only if DeploymentStrategyType = RollingUpdate. type: description: Type of deployment. Can be "Recreate" or "RollingUpdate". Default is RollingUpdate. type: string io.k8s.api.apps.v1beta2.ReplicaSet: description: DEPRECATED - This group version of ReplicaSet is deprecated by apps/v1/ReplicaSet. See the release notes for more information. ReplicaSet ensures that a specified number of pod replicas are running at any given time. 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/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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" description: "If the Labels of a ReplicaSet are empty, they are defaulted to be the same as the Pod(s) that the ReplicaSet manages. Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata" spec: $ref: "#/definitions/io.k8s.api.apps.v1beta2.ReplicaSetSpec" description: "Spec defines the specification of the desired behavior of the ReplicaSet. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status" status: $ref: "#/definitions/io.k8s.api.apps.v1beta2.ReplicaSetStatus" description: "Status is the most recently observed status of the ReplicaSet. This data may be out of date by some window of time. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status" x-kubernetes-group-version-kind: - group: apps kind: ReplicaSet version: v1beta2 io.k8s.api.apps.v1beta2.ReplicaSetCondition: description: ReplicaSetCondition describes the state of a replica set at a certain point. properties: lastTransitionTime: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time" description: The last time the condition transitioned from one status to another. message: description: A human readable message indicating details about the transition. type: string reason: description: The reason for the condition's last transition. type: string status: description: Status of the condition, one of True, False, Unknown. type: string type: description: Type of replica set condition. type: string required: - type - status io.k8s.api.apps.v1beta2.ReplicaSetList: description: ReplicaSetList is a collection of ReplicaSets. 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/api-conventions.md#resources" type: string items: description: "List of ReplicaSets. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller" items: $ref: "#/definitions/io.k8s.api.apps.v1beta2.ReplicaSet" type: array 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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" description: "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds" required: - items x-kubernetes-group-version-kind: - group: apps kind: ReplicaSetList version: v1beta2 io.k8s.api.apps.v1beta2.ReplicaSetSpec: description: ReplicaSetSpec is the specification of a ReplicaSet. properties: minReadySeconds: description: Minimum number of seconds for which a newly created pod should be ready without any of its container crashing, for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready) format: int32 type: integer replicas: description: "Replicas is the number of desired replicas. This is a pointer to distinguish between explicit zero and unspecified. Defaults to 1. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller/#what-is-a-replicationcontroller" format: int32 type: integer selector: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector" description: "Selector is a label query over pods that should match the replica count. Label keys and values that must match in order to be controlled by this replica set. It must match the pod template's labels. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors" template: $ref: "#/definitions/io.k8s.api.core.v1.PodTemplateSpec" description: "Template is the object that describes the pod that will be created if insufficient replicas are detected. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller#pod-template" required: - selector io.k8s.api.apps.v1beta2.ReplicaSetStatus: description: ReplicaSetStatus represents the current status of a ReplicaSet. properties: availableReplicas: description: The number of available replicas (ready for at least minReadySeconds) for this replica set. format: int32 type: integer conditions: description: Represents the latest available observations of a replica set's current state. items: $ref: "#/definitions/io.k8s.api.apps.v1beta2.ReplicaSetCondition" type: array x-kubernetes-patch-merge-key: type x-kubernetes-patch-strategy: merge fullyLabeledReplicas: description: The number of pods that have labels matching the labels of the pod template of the replicaset. format: int32 type: integer observedGeneration: description: ObservedGeneration reflects the generation of the most recently observed ReplicaSet. format: int64 type: integer readyReplicas: description: The number of ready replicas for this replica set. format: int32 type: integer replicas: description: "Replicas is the most recently oberved number of replicas. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller/#what-is-a-replicationcontroller" format: int32 type: integer required: - replicas io.k8s.api.apps.v1beta2.RollingUpdateDaemonSet: description: Spec to control the desired behavior of daemon set rolling update. properties: maxUnavailable: $ref: "#/definitions/io.k8s.apimachinery.pkg.util.intstr.IntOrString" description: "The maximum number of DaemonSet pods that can be unavailable during the update. Value can be an absolute number (ex: 5) or a percentage of total number of DaemonSet pods at the start of the update (ex: 10%). Absolute number is calculated from percentage by rounding up. This cannot be 0. Default value is 1. Example: when this is set to 30%, at most 30% of the total number of nodes that should be running the daemon pod (i.e. status.desiredNumberScheduled) can have their pods stopped for an update at any given time. The update starts by stopping at most 30% of those DaemonSet pods and then brings up new DaemonSet pods in their place. Once the new pods are available, it then proceeds onto other DaemonSet pods, thus ensuring that at least 70% of original number of DaemonSet pods are available at all times during the update." io.k8s.api.apps.v1beta2.RollingUpdateDeployment: description: Spec to control the desired behavior of rolling update. properties: maxSurge: $ref: "#/definitions/io.k8s.apimachinery.pkg.util.intstr.IntOrString" description: "The maximum number of pods that can be scheduled above the desired number of pods. Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). This can not be 0 if MaxUnavailable is 0. Absolute number is calculated from percentage by rounding up. Defaults to 25%. Example: when this is set to 30%, the new RC can be scaled up immediately when the rolling update starts, such that the total number of old and new pods do not exceed 130% of desired pods. Once old pods have been killed, new RC can be scaled up further, ensuring that total number of pods running at any time during the update is atmost 130% of desired pods." maxUnavailable: $ref: "#/definitions/io.k8s.apimachinery.pkg.util.intstr.IntOrString" description: "The maximum number of pods that can be unavailable during the update. Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). Absolute number is calculated from percentage by rounding down. This can not be 0 if MaxSurge is 0. Defaults to 25%. Example: when this is set to 30%, the old RC can be scaled down to 70% of desired pods immediately when the rolling update starts. Once new pods are ready, old RC can be scaled down further, followed by scaling up the new RC, ensuring that the total number of pods available at all times during the update is at least 70% of desired pods." io.k8s.api.apps.v1beta2.RollingUpdateStatefulSetStrategy: description: RollingUpdateStatefulSetStrategy is used to communicate parameter for RollingUpdateStatefulSetStrategyType. properties: partition: description: Partition indicates the ordinal at which the StatefulSet should be partitioned. Default value is 0. format: int32 type: integer io.k8s.api.apps.v1beta2.Scale: description: Scale represents a scaling request for a resource. 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/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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" description: "Standard object metadata; More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata." spec: $ref: "#/definitions/io.k8s.api.apps.v1beta2.ScaleSpec" description: "defines the behavior of the scale. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status." status: $ref: "#/definitions/io.k8s.api.apps.v1beta2.ScaleStatus" description: "current status of the scale. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status. Read-only." x-kubernetes-group-version-kind: - group: apps kind: Scale version: v1beta2 io.k8s.api.apps.v1beta2.ScaleSpec: description: ScaleSpec describes the attributes of a scale subresource properties: replicas: description: desired number of instances for the scaled object. format: int32 type: integer io.k8s.api.apps.v1beta2.ScaleStatus: description: ScaleStatus represents the current status of a scale subresource. properties: replicas: description: actual number of observed instances of the scaled object. format: int32 type: integer selector: additionalProperties: type: string description: "label query over pods that should match the replicas count. More info: http://kubernetes.io/docs/user-guide/labels#label-selectors" type: object targetSelector: description: "label selector for pods that should match the replicas count. This is a serializated version of both map-based and more expressive set-based selectors. This is done to avoid introspection in the clients. The string will be in the same format as the query-param syntax. If the target type only supports map-based selectors, both this field and map-based selector field are populated. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors" type: string required: - replicas io.k8s.api.apps.v1beta2.StatefulSet: description: |- DEPRECATED - This group version of StatefulSet is deprecated by apps/v1/StatefulSet. See the release notes for more information. StatefulSet represents a set of pods with consistent identities. Identities are defined as: - Network: A single stable DNS and hostname. - Storage: As many VolumeClaims as requested. The StatefulSet guarantees that a given network identity will always map to the same storage identity. 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/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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" spec: $ref: "#/definitions/io.k8s.api.apps.v1beta2.StatefulSetSpec" description: Spec defines the desired identities of pods in this set. status: $ref: "#/definitions/io.k8s.api.apps.v1beta2.StatefulSetStatus" description: Status is the current status of Pods in this StatefulSet. This data may be out of date by some window of time. x-kubernetes-group-version-kind: - group: apps kind: StatefulSet version: v1beta2 io.k8s.api.apps.v1beta2.StatefulSetCondition: description: StatefulSetCondition describes the state of a statefulset at a certain point. properties: lastTransitionTime: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time" description: Last time the condition transitioned from one status to another. message: description: A human readable message indicating details about the transition. type: string reason: description: The reason for the condition's last transition. type: string status: description: Status of the condition, one of True, False, Unknown. type: string type: description: Type of statefulset condition. type: string required: - type - status io.k8s.api.apps.v1beta2.StatefulSetList: description: StatefulSetList is a collection of StatefulSets. 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/api-conventions.md#resources" type: string items: items: $ref: "#/definitions/io.k8s.api.apps.v1beta2.StatefulSet" type: array 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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" required: - items x-kubernetes-group-version-kind: - group: apps kind: StatefulSetList version: v1beta2 io.k8s.api.apps.v1beta2.StatefulSetSpec: description: A StatefulSetSpec is the specification of a StatefulSet. properties: podManagementPolicy: description: podManagementPolicy controls how pods are created during initial scale up, when replacing pods on nodes, or when scaling down. The default policy is `OrderedReady`, where pods are created in increasing order (pod-0, then pod-1, etc) and the controller will wait until each pod is ready before continuing. When scaling down, the pods are removed in the opposite order. The alternative policy is `Parallel` which will create pods in parallel to match the desired scale without waiting, and on scale down will delete all pods at once. type: string replicas: description: replicas is the desired number of replicas of the given Template. These are replicas in the sense that they are instantiations of the same Template, but individual replicas also have a consistent identity. If unspecified, defaults to 1. format: int32 type: integer revisionHistoryLimit: description: revisionHistoryLimit is the maximum number of revisions that will be maintained in the StatefulSet's revision history. The revision history consists of all revisions not represented by a currently applied StatefulSetSpec version. The default value is 10. format: int32 type: integer selector: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector" description: "selector is a label query over pods that should match the replica count. It must match the pod template's labels. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors" serviceName: description: 'serviceName is the name of the service that governs this StatefulSet. This service must exist before the StatefulSet, and is responsible for the network identity of the set. Pods get DNS/hostnames that follow the pattern: pod-specific-string.serviceName.default.svc.cluster.local where "pod-specific-string" is managed by the StatefulSet controller.' type: string template: $ref: "#/definitions/io.k8s.api.core.v1.PodTemplateSpec" description: template is the object that describes the pod that will be created if insufficient replicas are detected. Each pod stamped out by the StatefulSet will fulfill this Template, but have a unique identity from the rest of the StatefulSet. updateStrategy: $ref: "#/definitions/io.k8s.api.apps.v1beta2.StatefulSetUpdateStrategy" description: updateStrategy indicates the StatefulSetUpdateStrategy that will be employed to update Pods in the StatefulSet when a revision is made to Template. volumeClaimTemplates: description: volumeClaimTemplates is a list of claims that pods are allowed to reference. The StatefulSet controller is responsible for mapping network identities to claims in a way that maintains the identity of a pod. Every claim in this list must have at least one matching (by name) volumeMount in one container in the template. A claim in this list takes precedence over any volumes in the template, with the same name. items: $ref: "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaim" type: array required: - selector - template - serviceName io.k8s.api.apps.v1beta2.StatefulSetStatus: description: StatefulSetStatus represents the current state of a StatefulSet. properties: collisionCount: description: collisionCount is the count of hash collisions for the StatefulSet. The StatefulSet controller uses this field as a collision avoidance mechanism when it needs to create the name for the newest ControllerRevision. format: int32 type: integer conditions: description: Represents the latest available observations of a statefulset's current state. items: $ref: "#/definitions/io.k8s.api.apps.v1beta2.StatefulSetCondition" type: array x-kubernetes-patch-merge-key: type x-kubernetes-patch-strategy: merge currentReplicas: description: currentReplicas is the number of Pods created by the StatefulSet controller from the StatefulSet version indicated by currentRevision. format: int32 type: integer currentRevision: description: currentRevision, if not empty, indicates the version of the StatefulSet used to generate Pods in the sequence [0,currentReplicas). type: string observedGeneration: description: observedGeneration is the most recent generation observed for this StatefulSet. It corresponds to the StatefulSet's generation, which is updated on mutation by the API Server. format: int64 type: integer readyReplicas: description: readyReplicas is the number of Pods created by the StatefulSet controller that have a Ready Condition. format: int32 type: integer replicas: description: replicas is the number of Pods created by the StatefulSet controller. format: int32 type: integer updateRevision: description: updateRevision, if not empty, indicates the version of the StatefulSet used to generate Pods in the sequence [replicas-updatedReplicas,replicas) type: string updatedReplicas: description: updatedReplicas is the number of Pods created by the StatefulSet controller from the StatefulSet version indicated by updateRevision. format: int32 type: integer required: - replicas io.k8s.api.apps.v1beta2.StatefulSetUpdateStrategy: description: StatefulSetUpdateStrategy indicates the strategy that the StatefulSet controller will use to perform updates. It includes any additional parameters necessary to perform the update for the indicated strategy. properties: rollingUpdate: $ref: "#/definitions/io.k8s.api.apps.v1beta2.RollingUpdateStatefulSetStrategy" description: RollingUpdate is used to communicate parameters when Type is RollingUpdateStatefulSetStrategyType. type: description: Type indicates the type of the StatefulSetUpdateStrategy. Default is RollingUpdate. type: string io.k8s.api.authentication.v1.TokenReview: description: "TokenReview attempts to authenticate a token to a known user. Note: TokenReview requests may be cached by the webhook token authenticator plugin in the kube-apiserver." 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/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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" spec: $ref: "#/definitions/io.k8s.api.authentication.v1.TokenReviewSpec" description: Spec holds information about the request being evaluated status: $ref: "#/definitions/io.k8s.api.authentication.v1.TokenReviewStatus" description: Status is filled in by the server and indicates whether the request can be authenticated. required: - spec x-kubernetes-group-version-kind: - group: authentication.k8s.io kind: TokenReview version: v1 io.k8s.api.authentication.v1.TokenReviewSpec: description: TokenReviewSpec is a description of the token authentication request. properties: token: description: Token is the opaque bearer token. type: string io.k8s.api.authentication.v1.TokenReviewStatus: description: TokenReviewStatus is the result of the token authentication request. properties: authenticated: description: Authenticated indicates that the token was associated with a known user. type: boolean error: description: Error indicates that the token couldn't be checked type: string user: $ref: "#/definitions/io.k8s.api.authentication.v1.UserInfo" description: User is the UserInfo associated with the provided token. io.k8s.api.authentication.v1.UserInfo: description: UserInfo holds the information about the user needed to implement the user.Info interface. properties: extra: additionalProperties: items: type: string type: array description: Any additional information provided by the authenticator. type: object groups: description: The names of groups this user is a part of. items: type: string type: array uid: description: A unique value that identifies this user across time. If this user is deleted and another user by the same name is added, they will have different UIDs. type: string username: description: The name that uniquely identifies this user among all active users. type: string io.k8s.api.authentication.v1beta1.TokenReview: description: "TokenReview attempts to authenticate a token to a known user. Note: TokenReview requests may be cached by the webhook token authenticator plugin in the kube-apiserver." 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/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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" spec: $ref: "#/definitions/io.k8s.api.authentication.v1beta1.TokenReviewSpec" description: Spec holds information about the request being evaluated status: $ref: "#/definitions/io.k8s.api.authentication.v1beta1.TokenReviewStatus" description: Status is filled in by the server and indicates whether the request can be authenticated. required: - spec x-kubernetes-group-version-kind: - group: authentication.k8s.io kind: TokenReview version: v1beta1 io.k8s.api.authentication.v1beta1.TokenReviewSpec: description: TokenReviewSpec is a description of the token authentication request. properties: token: description: Token is the opaque bearer token. type: string io.k8s.api.authentication.v1beta1.TokenReviewStatus: description: TokenReviewStatus is the result of the token authentication request. properties: authenticated: description: Authenticated indicates that the token was associated with a known user. type: boolean error: description: Error indicates that the token couldn't be checked type: string user: $ref: "#/definitions/io.k8s.api.authentication.v1beta1.UserInfo" description: User is the UserInfo associated with the provided token. io.k8s.api.authentication.v1beta1.UserInfo: description: UserInfo holds the information about the user needed to implement the user.Info interface. properties: extra: additionalProperties: items: type: string type: array description: Any additional information provided by the authenticator. type: object groups: description: The names of groups this user is a part of. items: type: string type: array uid: description: A unique value that identifies this user across time. If this user is deleted and another user by the same name is added, they will have different UIDs. type: string username: description: The name that uniquely identifies this user among all active users. type: string io.k8s.api.authorization.v1.LocalSubjectAccessReview: description: LocalSubjectAccessReview checks whether or not a user or group can perform an action in a given namespace. Having a namespace scoped resource makes it much easier to grant namespace scoped policy that includes permissions checking. 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/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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" spec: $ref: "#/definitions/io.k8s.api.authorization.v1.SubjectAccessReviewSpec" description: Spec holds information about the request being evaluated. spec.namespace must be equal to the namespace you made the request against. If empty, it is defaulted. status: $ref: "#/definitions/io.k8s.api.authorization.v1.SubjectAccessReviewStatus" description: Status is filled in by the server and indicates whether the request is allowed or not required: - spec x-kubernetes-group-version-kind: - group: authorization.k8s.io kind: LocalSubjectAccessReview version: v1 io.k8s.api.authorization.v1.NonResourceAttributes: description: NonResourceAttributes includes the authorization attributes available for non-resource requests to the Authorizer interface properties: path: description: Path is the URL path of the request type: string verb: description: Verb is the standard HTTP verb type: string io.k8s.api.authorization.v1.NonResourceRule: description: NonResourceRule holds information that describes a rule for the non-resource properties: nonResourceURLs: description: NonResourceURLs is a set of partial urls that a user should have access to. *s are allowed, but only as the full, final step in the path. "*" means all. items: type: string type: array verbs: description: 'Verb is a list of kubernetes non-resource API verbs, like: get, post, put, delete, patch, head, options. "*" means all.' items: type: string type: array required: - verbs io.k8s.api.authorization.v1.ResourceAttributes: description: ResourceAttributes includes the authorization attributes available for resource requests to the Authorizer interface properties: group: description: Group is the API Group of the Resource. "*" means all. type: string name: description: Name is the name of the resource being requested for a "get" or deleted for a "delete". "" (empty) means all. type: string namespace: description: Namespace is the namespace of the action being requested. Currently, there is no distinction between no namespace and all namespaces "" (empty) is defaulted for LocalSubjectAccessReviews "" (empty) is empty for cluster-scoped resources "" (empty) means "all" for namespace scoped resources from a SubjectAccessReview or SelfSubjectAccessReview type: string resource: description: Resource is one of the existing resource types. "*" means all. type: string subresource: description: Subresource is one of the existing resource types. "" means none. type: string verb: description: 'Verb is a kubernetes resource API verb, like: get, list, watch, create, update, delete, proxy. "*" means all.' type: string version: description: Version is the API Version of the Resource. "*" means all. type: string io.k8s.api.authorization.v1.ResourceRule: description: ResourceRule is the list of actions the subject is allowed to perform on resources. The list ordering isn't significant, may contain duplicates, and possibly be incomplete. properties: apiGroups: description: APIGroups is the name of the APIGroup that contains the resources. If multiple API groups are specified, any action requested against one of the enumerated resources in any API group will be allowed. "*" means all. items: type: string type: array resourceNames: description: ResourceNames is an optional white list of names that the rule applies to. An empty set means that everything is allowed. "*" means all. items: type: string type: array resources: description: |- Resources is a list of resources this rule applies to. "*" means all in the specified apiGroups. "*/foo" represents the subresource 'foo' for all resources in the specified apiGroups. items: type: string type: array verbs: description: 'Verb is a list of kubernetes resource API verbs, like: get, list, watch, create, update, delete, proxy. "*" means all.' items: type: string type: array required: - verbs io.k8s.api.authorization.v1.SelfSubjectAccessReview: description: SelfSubjectAccessReview checks whether or the current user can perform an action. Not filling in a spec.namespace means "in all namespaces". Self is a special case, because users should always be able to check whether they can perform an action 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/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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" spec: $ref: "#/definitions/io.k8s.api.authorization.v1.SelfSubjectAccessReviewSpec" description: Spec holds information about the request being evaluated. user and groups must be empty status: $ref: "#/definitions/io.k8s.api.authorization.v1.SubjectAccessReviewStatus" description: Status is filled in by the server and indicates whether the request is allowed or not required: - spec x-kubernetes-group-version-kind: - group: authorization.k8s.io kind: SelfSubjectAccessReview version: v1 io.k8s.api.authorization.v1.SelfSubjectAccessReviewSpec: description: SelfSubjectAccessReviewSpec is a description of the access request. Exactly one of ResourceAuthorizationAttributes and NonResourceAuthorizationAttributes must be set properties: nonResourceAttributes: $ref: "#/definitions/io.k8s.api.authorization.v1.NonResourceAttributes" description: NonResourceAttributes describes information for a non-resource access request resourceAttributes: $ref: "#/definitions/io.k8s.api.authorization.v1.ResourceAttributes" description: ResourceAuthorizationAttributes describes information for a resource access request io.k8s.api.authorization.v1.SelfSubjectRulesReview: description: SelfSubjectRulesReview enumerates the set of actions the current user can perform within a namespace. The returned list of actions may be incomplete depending on the server's authorization mode, and any errors experienced during the evaluation. SelfSubjectRulesReview should be used by UIs to show/hide actions, or to quickly let an end user reason about their permissions. It should NOT Be used by external systems to drive authorization decisions as this raises confused deputy, cache lifetime/revocation, and correctness concerns. SubjectAccessReview, and LocalAccessReview are the correct way to defer authorization decisions to the API server. 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/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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" spec: $ref: "#/definitions/io.k8s.api.authorization.v1.SelfSubjectRulesReviewSpec" description: Spec holds information about the request being evaluated. status: $ref: "#/definitions/io.k8s.api.authorization.v1.SubjectRulesReviewStatus" description: Status is filled in by the server and indicates the set of actions a user can perform. required: - spec x-kubernetes-group-version-kind: - group: authorization.k8s.io kind: SelfSubjectRulesReview version: v1 io.k8s.api.authorization.v1.SelfSubjectRulesReviewSpec: properties: namespace: description: Namespace to evaluate rules for. Required. type: string io.k8s.api.authorization.v1.SubjectAccessReview: description: SubjectAccessReview checks whether or not a user or group can perform an action. 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/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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" spec: $ref: "#/definitions/io.k8s.api.authorization.v1.SubjectAccessReviewSpec" description: Spec holds information about the request being evaluated status: $ref: "#/definitions/io.k8s.api.authorization.v1.SubjectAccessReviewStatus" description: Status is filled in by the server and indicates whether the request is allowed or not required: - spec x-kubernetes-group-version-kind: - group: authorization.k8s.io kind: SubjectAccessReview version: v1 io.k8s.api.authorization.v1.SubjectAccessReviewSpec: description: SubjectAccessReviewSpec is a description of the access request. Exactly one of ResourceAuthorizationAttributes and NonResourceAuthorizationAttributes must be set properties: extra: additionalProperties: items: type: string type: array description: Extra corresponds to the user.Info.GetExtra() method from the authenticator. Since that is input to the authorizer it needs a reflection here. type: object groups: description: Groups is the groups you're testing for. items: type: string type: array nonResourceAttributes: $ref: "#/definitions/io.k8s.api.authorization.v1.NonResourceAttributes" description: NonResourceAttributes describes information for a non-resource access request resourceAttributes: $ref: "#/definitions/io.k8s.api.authorization.v1.ResourceAttributes" description: ResourceAuthorizationAttributes describes information for a resource access request uid: description: UID information about the requesting user. type: string user: description: User is the user you're testing for. If you specify "User" but not "Groups", then is it interpreted as "What if User were not a member of any groups type: string io.k8s.api.authorization.v1.SubjectAccessReviewStatus: description: SubjectAccessReviewStatus properties: allowed: description: Allowed is required. True if the action would be allowed, false otherwise. type: boolean denied: description: Denied is optional. True if the action would be denied, otherwise false. If both allowed is false and denied is false, then the authorizer has no opinion on whether to authorize the action. Denied may not be true if Allowed is true. type: boolean evaluationError: description: EvaluationError is an indication that some error occurred during the authorization check. It is entirely possible to get an error and be able to continue determine authorization status in spite of it. For instance, RBAC can be missing a role, but enough roles are still present and bound to reason about the request. type: string reason: description: Reason is optional. It indicates why a request was allowed or denied. type: string required: - allowed io.k8s.api.authorization.v1.SubjectRulesReviewStatus: description: SubjectRulesReviewStatus contains the result of a rules check. This check can be incomplete depending on the set of authorizers the server is configured with and any errors experienced during evaluation. Because authorization rules are additive, if a rule appears in a list it's safe to assume the subject has that permission, even if that list is incomplete. properties: evaluationError: description: EvaluationError can appear in combination with Rules. It indicates an error occurred during rule evaluation, such as an authorizer that doesn't support rule evaluation, and that ResourceRules and/or NonResourceRules may be incomplete. type: string incomplete: description: Incomplete is true when the rules returned by this call are incomplete. This is most commonly encountered when an authorizer, such as an external authorizer, doesn't support rules evaluation. type: boolean nonResourceRules: description: NonResourceRules is the list of actions the subject is allowed to perform on non-resources. The list ordering isn't significant, may contain duplicates, and possibly be incomplete. items: $ref: "#/definitions/io.k8s.api.authorization.v1.NonResourceRule" type: array resourceRules: description: ResourceRules is the list of actions the subject is allowed to perform on resources. The list ordering isn't significant, may contain duplicates, and possibly be incomplete. items: $ref: "#/definitions/io.k8s.api.authorization.v1.ResourceRule" type: array required: - resourceRules - nonResourceRules - incomplete io.k8s.api.authorization.v1beta1.LocalSubjectAccessReview: description: LocalSubjectAccessReview checks whether or not a user or group can perform an action in a given namespace. Having a namespace scoped resource makes it much easier to grant namespace scoped policy that includes permissions checking. 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/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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" spec: $ref: "#/definitions/io.k8s.api.authorization.v1beta1.SubjectAccessReviewSpec" description: Spec holds information about the request being evaluated. spec.namespace must be equal to the namespace you made the request against. If empty, it is defaulted. status: $ref: "#/definitions/io.k8s.api.authorization.v1beta1.SubjectAccessReviewStatus" description: Status is filled in by the server and indicates whether the request is allowed or not required: - spec x-kubernetes-group-version-kind: - group: authorization.k8s.io kind: LocalSubjectAccessReview version: v1beta1 io.k8s.api.authorization.v1beta1.NonResourceAttributes: description: NonResourceAttributes includes the authorization attributes available for non-resource requests to the Authorizer interface properties: path: description: Path is the URL path of the request type: string verb: description: Verb is the standard HTTP verb type: string io.k8s.api.authorization.v1beta1.NonResourceRule: description: NonResourceRule holds information that describes a rule for the non-resource properties: nonResourceURLs: description: NonResourceURLs is a set of partial urls that a user should have access to. *s are allowed, but only as the full, final step in the path. "*" means all. items: type: string type: array verbs: description: 'Verb is a list of kubernetes non-resource API verbs, like: get, post, put, delete, patch, head, options. "*" means all.' items: type: string type: array required: - verbs io.k8s.api.authorization.v1beta1.ResourceAttributes: description: ResourceAttributes includes the authorization attributes available for resource requests to the Authorizer interface properties: group: description: Group is the API Group of the Resource. "*" means all. type: string name: description: Name is the name of the resource being requested for a "get" or deleted for a "delete". "" (empty) means all. type: string namespace: description: Namespace is the namespace of the action being requested. Currently, there is no distinction between no namespace and all namespaces "" (empty) is defaulted for LocalSubjectAccessReviews "" (empty) is empty for cluster-scoped resources "" (empty) means "all" for namespace scoped resources from a SubjectAccessReview or SelfSubjectAccessReview type: string resource: description: Resource is one of the existing resource types. "*" means all. type: string subresource: description: Subresource is one of the existing resource types. "" means none. type: string verb: description: 'Verb is a kubernetes resource API verb, like: get, list, watch, create, update, delete, proxy. "*" means all.' type: string version: description: Version is the API Version of the Resource. "*" means all. type: string io.k8s.api.authorization.v1beta1.ResourceRule: description: ResourceRule is the list of actions the subject is allowed to perform on resources. The list ordering isn't significant, may contain duplicates, and possibly be incomplete. properties: apiGroups: description: APIGroups is the name of the APIGroup that contains the resources. If multiple API groups are specified, any action requested against one of the enumerated resources in any API group will be allowed. "*" means all. items: type: string type: array resourceNames: description: ResourceNames is an optional white list of names that the rule applies to. An empty set means that everything is allowed. "*" means all. items: type: string type: array resources: description: |- Resources is a list of resources this rule applies to. "*" means all in the specified apiGroups. "*/foo" represents the subresource 'foo' for all resources in the specified apiGroups. items: type: string type: array verbs: description: 'Verb is a list of kubernetes resource API verbs, like: get, list, watch, create, update, delete, proxy. "*" means all.' items: type: string type: array required: - verbs io.k8s.api.authorization.v1beta1.SelfSubjectAccessReview: description: SelfSubjectAccessReview checks whether or the current user can perform an action. Not filling in a spec.namespace means "in all namespaces". Self is a special case, because users should always be able to check whether they can perform an action 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/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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" spec: $ref: "#/definitions/io.k8s.api.authorization.v1beta1.SelfSubjectAccessReviewSpec" description: Spec holds information about the request being evaluated. user and groups must be empty status: $ref: "#/definitions/io.k8s.api.authorization.v1beta1.SubjectAccessReviewStatus" description: Status is filled in by the server and indicates whether the request is allowed or not required: - spec x-kubernetes-group-version-kind: - group: authorization.k8s.io kind: SelfSubjectAccessReview version: v1beta1 io.k8s.api.authorization.v1beta1.SelfSubjectAccessReviewSpec: description: SelfSubjectAccessReviewSpec is a description of the access request. Exactly one of ResourceAuthorizationAttributes and NonResourceAuthorizationAttributes must be set properties: nonResourceAttributes: $ref: "#/definitions/io.k8s.api.authorization.v1beta1.NonResourceAttributes" description: NonResourceAttributes describes information for a non-resource access request resourceAttributes: $ref: "#/definitions/io.k8s.api.authorization.v1beta1.ResourceAttributes" description: ResourceAuthorizationAttributes describes information for a resource access request io.k8s.api.authorization.v1beta1.SelfSubjectRulesReview: description: SelfSubjectRulesReview enumerates the set of actions the current user can perform within a namespace. The returned list of actions may be incomplete depending on the server's authorization mode, and any errors experienced during the evaluation. SelfSubjectRulesReview should be used by UIs to show/hide actions, or to quickly let an end user reason about their permissions. It should NOT Be used by external systems to drive authorization decisions as this raises confused deputy, cache lifetime/revocation, and correctness concerns. SubjectAccessReview, and LocalAccessReview are the correct way to defer authorization decisions to the API server. 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/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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" spec: $ref: "#/definitions/io.k8s.api.authorization.v1beta1.SelfSubjectRulesReviewSpec" description: Spec holds information about the request being evaluated. status: $ref: "#/definitions/io.k8s.api.authorization.v1beta1.SubjectRulesReviewStatus" description: Status is filled in by the server and indicates the set of actions a user can perform. required: - spec x-kubernetes-group-version-kind: - group: authorization.k8s.io kind: SelfSubjectRulesReview version: v1beta1 io.k8s.api.authorization.v1beta1.SelfSubjectRulesReviewSpec: properties: namespace: description: Namespace to evaluate rules for. Required. type: string io.k8s.api.authorization.v1beta1.SubjectAccessReview: description: SubjectAccessReview checks whether or not a user or group can perform an action. 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/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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" spec: $ref: "#/definitions/io.k8s.api.authorization.v1beta1.SubjectAccessReviewSpec" description: Spec holds information about the request being evaluated status: $ref: "#/definitions/io.k8s.api.authorization.v1beta1.SubjectAccessReviewStatus" description: Status is filled in by the server and indicates whether the request is allowed or not required: - spec x-kubernetes-group-version-kind: - group: authorization.k8s.io kind: SubjectAccessReview version: v1beta1 io.k8s.api.authorization.v1beta1.SubjectAccessReviewSpec: description: SubjectAccessReviewSpec is a description of the access request. Exactly one of ResourceAuthorizationAttributes and NonResourceAuthorizationAttributes must be set properties: extra: additionalProperties: items: type: string type: array description: Extra corresponds to the user.Info.GetExtra() method from the authenticator. Since that is input to the authorizer it needs a reflection here. type: object group: description: Groups is the groups you're testing for. items: type: string type: array nonResourceAttributes: $ref: "#/definitions/io.k8s.api.authorization.v1beta1.NonResourceAttributes" description: NonResourceAttributes describes information for a non-resource access request resourceAttributes: $ref: "#/definitions/io.k8s.api.authorization.v1beta1.ResourceAttributes" description: ResourceAuthorizationAttributes describes information for a resource access request uid: description: UID information about the requesting user. type: string user: description: User is the user you're testing for. If you specify "User" but not "Group", then is it interpreted as "What if User were not a member of any groups type: string io.k8s.api.authorization.v1beta1.SubjectAccessReviewStatus: description: SubjectAccessReviewStatus properties: allowed: description: Allowed is required. True if the action would be allowed, false otherwise. type: boolean denied: description: Denied is optional. True if the action would be denied, otherwise false. If both allowed is false and denied is false, then the authorizer has no opinion on whether to authorize the action. Denied may not be true if Allowed is true. type: boolean evaluationError: description: EvaluationError is an indication that some error occurred during the authorization check. It is entirely possible to get an error and be able to continue determine authorization status in spite of it. For instance, RBAC can be missing a role, but enough roles are still present and bound to reason about the request. type: string reason: description: Reason is optional. It indicates why a request was allowed or denied. type: string required: - allowed io.k8s.api.authorization.v1beta1.SubjectRulesReviewStatus: description: SubjectRulesReviewStatus contains the result of a rules check. This check can be incomplete depending on the set of authorizers the server is configured with and any errors experienced during evaluation. Because authorization rules are additive, if a rule appears in a list it's safe to assume the subject has that permission, even if that list is incomplete. properties: evaluationError: description: EvaluationError can appear in combination with Rules. It indicates an error occurred during rule evaluation, such as an authorizer that doesn't support rule evaluation, and that ResourceRules and/or NonResourceRules may be incomplete. type: string incomplete: description: Incomplete is true when the rules returned by this call are incomplete. This is most commonly encountered when an authorizer, such as an external authorizer, doesn't support rules evaluation. type: boolean nonResourceRules: description: NonResourceRules is the list of actions the subject is allowed to perform on non-resources. The list ordering isn't significant, may contain duplicates, and possibly be incomplete. items: $ref: "#/definitions/io.k8s.api.authorization.v1beta1.NonResourceRule" type: array resourceRules: description: ResourceRules is the list of actions the subject is allowed to perform on resources. The list ordering isn't significant, may contain duplicates, and possibly be incomplete. items: $ref: "#/definitions/io.k8s.api.authorization.v1beta1.ResourceRule" type: array required: - resourceRules - nonResourceRules - incomplete io.k8s.api.autoscaling.v1.CrossVersionObjectReference: description: CrossVersionObjectReference contains enough information to let you identify the referred resource. properties: apiVersion: description: API version of the referent type: string kind: description: 'Kind of the referent; More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds"' type: string name: description: "Name of the referent; More info: http://kubernetes.io/docs/user-guide/identifiers#names" type: string required: - kind - name io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler: description: configuration of a horizontal pod autoscaler. 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/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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" description: "Standard object metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata" spec: $ref: "#/definitions/io.k8s.api.autoscaling.v1.HorizontalPodAutoscalerSpec" description: "behaviour of autoscaler. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status." status: $ref: "#/definitions/io.k8s.api.autoscaling.v1.HorizontalPodAutoscalerStatus" description: current information about the autoscaler. x-kubernetes-group-version-kind: - group: autoscaling kind: HorizontalPodAutoscaler version: v1 io.k8s.api.autoscaling.v1.HorizontalPodAutoscalerList: description: list of horizontal pod autoscaler objects. 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/api-conventions.md#resources" type: string items: description: list of horizontal pod autoscaler objects. items: $ref: "#/definitions/io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler" type: array 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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" description: Standard list metadata. required: - items x-kubernetes-group-version-kind: - group: autoscaling kind: HorizontalPodAutoscalerList version: v1 io.k8s.api.autoscaling.v1.HorizontalPodAutoscalerSpec: description: specification of a horizontal pod autoscaler. properties: maxReplicas: description: upper limit for the number of pods that can be set by the autoscaler; cannot be smaller than MinReplicas. format: int32 type: integer minReplicas: description: lower limit for the number of pods that can be set by the autoscaler, default 1. format: int32 type: integer scaleTargetRef: $ref: "#/definitions/io.k8s.api.autoscaling.v1.CrossVersionObjectReference" description: reference to scaled resource; horizontal pod autoscaler will learn the current resource consumption and will set the desired number of pods by using its Scale subresource. targetCPUUtilizationPercentage: description: target average CPU utilization (represented as a percentage of requested CPU) over all the pods; if not specified the default autoscaling policy will be used. format: int32 type: integer required: - scaleTargetRef - maxReplicas io.k8s.api.autoscaling.v1.HorizontalPodAutoscalerStatus: description: current status of a horizontal pod autoscaler properties: currentCPUUtilizationPercentage: description: current average CPU utilization over all pods, represented as a percentage of requested CPU, e.g. 70 means that an average pod is using now 70% of its requested CPU. format: int32 type: integer currentReplicas: description: current number of replicas of pods managed by this autoscaler. format: int32 type: integer desiredReplicas: description: desired number of replicas of pods managed by this autoscaler. format: int32 type: integer lastScaleTime: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time" description: last time the HorizontalPodAutoscaler scaled the number of pods; used by the autoscaler to control how often the number of pods is changed. observedGeneration: description: most recent generation observed by this autoscaler. format: int64 type: integer required: - currentReplicas - desiredReplicas io.k8s.api.autoscaling.v1.Scale: description: Scale represents a scaling request for a resource. 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/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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" description: "Standard object metadata; More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata." spec: $ref: "#/definitions/io.k8s.api.autoscaling.v1.ScaleSpec" description: "defines the behavior of the scale. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status." status: $ref: "#/definitions/io.k8s.api.autoscaling.v1.ScaleStatus" description: "current status of the scale. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status. Read-only." x-kubernetes-group-version-kind: - group: autoscaling kind: Scale version: v1 io.k8s.api.autoscaling.v1.ScaleSpec: description: ScaleSpec describes the attributes of a scale subresource. properties: replicas: description: desired number of instances for the scaled object. format: int32 type: integer io.k8s.api.autoscaling.v1.ScaleStatus: description: ScaleStatus represents the current status of a scale subresource. properties: replicas: description: actual number of observed instances of the scaled object. format: int32 type: integer selector: description: "label query over pods that should match the replicas count. This is same as the label selector but in the string format to avoid introspection by clients. The string will be in the same format as the query-param syntax. More info about label selectors: http://kubernetes.io/docs/user-guide/labels#label-selectors" type: string required: - replicas io.k8s.api.autoscaling.v2beta1.CrossVersionObjectReference: description: CrossVersionObjectReference contains enough information to let you identify the referred resource. properties: apiVersion: description: API version of the referent type: string kind: description: 'Kind of the referent; More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds"' type: string name: description: "Name of the referent; More info: http://kubernetes.io/docs/user-guide/identifiers#names" type: string required: - kind - name io.k8s.api.autoscaling.v2beta1.ExternalMetricSource: description: ExternalMetricSource indicates how to scale on a metric not associated with any Kubernetes object (for example length of queue in cloud messaging service, or QPS from loadbalancer running outside of cluster). Exactly one "target" type should be set. properties: metricName: description: metricName is the name of the metric in question. type: string metricSelector: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector" description: metricSelector is used to identify a specific time series within a given metric. targetAverageValue: $ref: "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity" description: targetAverageValue is the target per-pod value of global metric (as a quantity). Mutually exclusive with TargetValue. targetValue: $ref: "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity" description: targetValue is the target value of the metric (as a quantity). Mutually exclusive with TargetAverageValue. required: - metricName io.k8s.api.autoscaling.v2beta1.ExternalMetricStatus: description: ExternalMetricStatus indicates the current value of a global metric not associated with any Kubernetes object. properties: currentAverageValue: $ref: "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity" description: currentAverageValue is the current value of metric averaged over autoscaled pods. currentValue: $ref: "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity" description: currentValue is the current value of the metric (as a quantity) metricName: description: metricName is the name of a metric used for autoscaling in metric system. type: string metricSelector: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector" description: metricSelector is used to identify a specific time series within a given metric. required: - metricName - currentValue io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscaler: description: HorizontalPodAutoscaler is the configuration for a horizontal pod autoscaler, which automatically manages the replica count of any resource implementing the scale subresource based on the metrics specified. 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/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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" description: "metadata is the standard object metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata" spec: $ref: "#/definitions/io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscalerSpec" description: "spec is the specification for the behaviour of the autoscaler. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status." status: $ref: "#/definitions/io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscalerStatus" description: status is the current information about the autoscaler. x-kubernetes-group-version-kind: - group: autoscaling kind: HorizontalPodAutoscaler version: v2beta1 io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscalerCondition: description: HorizontalPodAutoscalerCondition describes the state of a HorizontalPodAutoscaler at a certain point. properties: lastTransitionTime: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time" description: lastTransitionTime is the last time the condition transitioned from one status to another message: description: message is a human-readable explanation containing details about the transition type: string reason: description: reason is the reason for the condition's last transition. type: string status: description: status is the status of the condition (True, False, Unknown) type: string type: description: type describes the current condition type: string required: - type - status io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscalerList: description: HorizontalPodAutoscaler is a list of horizontal pod autoscaler objects. 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/api-conventions.md#resources" type: string items: description: items is the list of horizontal pod autoscaler objects. items: $ref: "#/definitions/io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscaler" type: array 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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" description: metadata is the standard list metadata. required: - items x-kubernetes-group-version-kind: - group: autoscaling kind: HorizontalPodAutoscalerList version: v2beta1 io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscalerSpec: description: HorizontalPodAutoscalerSpec describes the desired functionality of the HorizontalPodAutoscaler. properties: maxReplicas: description: maxReplicas is the upper limit for the number of replicas to which the autoscaler can scale up. It cannot be less that minReplicas. format: int32 type: integer metrics: description: metrics contains the specifications for which to use to calculate the desired replica count (the maximum replica count across all metrics will be used). The desired replica count is calculated multiplying the ratio between the target value and the current value by the current number of pods. Ergo, metrics used must decrease as the pod count is increased, and vice-versa. See the individual metric source types for more information about how each type of metric must respond. items: $ref: "#/definitions/io.k8s.api.autoscaling.v2beta1.MetricSpec" type: array minReplicas: description: minReplicas is the lower limit for the number of replicas to which the autoscaler can scale down. It defaults to 1 pod. format: int32 type: integer scaleTargetRef: $ref: "#/definitions/io.k8s.api.autoscaling.v2beta1.CrossVersionObjectReference" description: scaleTargetRef points to the target resource to scale, and is used to the pods for which metrics should be collected, as well as to actually change the replica count. required: - scaleTargetRef - maxReplicas io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscalerStatus: description: HorizontalPodAutoscalerStatus describes the current status of a horizontal pod autoscaler. properties: conditions: description: conditions is the set of conditions required for this autoscaler to scale its target, and indicates whether or not those conditions are met. items: $ref: "#/definitions/io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscalerCondition" type: array currentMetrics: description: currentMetrics is the last read state of the metrics used by this autoscaler. items: $ref: "#/definitions/io.k8s.api.autoscaling.v2beta1.MetricStatus" type: array currentReplicas: description: currentReplicas is current number of replicas of pods managed by this autoscaler, as last seen by the autoscaler. format: int32 type: integer desiredReplicas: description: desiredReplicas is the desired number of replicas of pods managed by this autoscaler, as last calculated by the autoscaler. format: int32 type: integer lastScaleTime: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time" description: lastScaleTime is the last time the HorizontalPodAutoscaler scaled the number of pods, used by the autoscaler to control how often the number of pods is changed. observedGeneration: description: observedGeneration is the most recent generation observed by this autoscaler. format: int64 type: integer required: - currentReplicas - desiredReplicas - currentMetrics - conditions io.k8s.api.autoscaling.v2beta1.MetricSpec: description: MetricSpec specifies how to scale based on a single metric (only `type` and one other matching field should be set at once). properties: external: $ref: "#/definitions/io.k8s.api.autoscaling.v2beta1.ExternalMetricSource" description: external refers to a global metric that is not associated with any Kubernetes object. It allows autoscaling based on information coming from components running outside of cluster (for example length of queue in cloud messaging service, or QPS from loadbalancer running outside of cluster). object: $ref: "#/definitions/io.k8s.api.autoscaling.v2beta1.ObjectMetricSource" description: object refers to a metric describing a single kubernetes object (for example, hits-per-second on an Ingress object). pods: $ref: "#/definitions/io.k8s.api.autoscaling.v2beta1.PodsMetricSource" description: pods refers to a metric describing each pod in the current scale target (for example, transactions-processed-per-second). The values will be averaged together before being compared to the target value. resource: $ref: "#/definitions/io.k8s.api.autoscaling.v2beta1.ResourceMetricSource" description: resource refers to a resource metric (such as those specified in requests and limits) known to Kubernetes describing each pod in the current scale target (e.g. CPU or memory). Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the "pods" source. type: description: type is the type of metric source. It should be one of "Object", "Pods" or "Resource", each mapping to a matching field in the object. type: string required: - type io.k8s.api.autoscaling.v2beta1.MetricStatus: description: MetricStatus describes the last-read state of a single metric. properties: external: $ref: "#/definitions/io.k8s.api.autoscaling.v2beta1.ExternalMetricStatus" description: external refers to a global metric that is not associated with any Kubernetes object. It allows autoscaling based on information coming from components running outside of cluster (for example length of queue in cloud messaging service, or QPS from loadbalancer running outside of cluster). object: $ref: "#/definitions/io.k8s.api.autoscaling.v2beta1.ObjectMetricStatus" description: object refers to a metric describing a single kubernetes object (for example, hits-per-second on an Ingress object). pods: $ref: "#/definitions/io.k8s.api.autoscaling.v2beta1.PodsMetricStatus" description: pods refers to a metric describing each pod in the current scale target (for example, transactions-processed-per-second). The values will be averaged together before being compared to the target value. resource: $ref: "#/definitions/io.k8s.api.autoscaling.v2beta1.ResourceMetricStatus" description: resource refers to a resource metric (such as those specified in requests and limits) known to Kubernetes describing each pod in the current scale target (e.g. CPU or memory). Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the "pods" source. type: description: type is the type of metric source. It will be one of "Object", "Pods" or "Resource", each corresponds to a matching field in the object. type: string required: - type io.k8s.api.autoscaling.v2beta1.ObjectMetricSource: description: ObjectMetricSource indicates how to scale on a metric describing a kubernetes object (for example, hits-per-second on an Ingress object). properties: metricName: description: metricName is the name of the metric in question. type: string target: $ref: "#/definitions/io.k8s.api.autoscaling.v2beta1.CrossVersionObjectReference" description: target is the described Kubernetes object. targetValue: $ref: "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity" description: targetValue is the target value of the metric (as a quantity). required: - target - metricName - targetValue io.k8s.api.autoscaling.v2beta1.ObjectMetricStatus: description: ObjectMetricStatus indicates the current value of a metric describing a kubernetes object (for example, hits-per-second on an Ingress object). properties: currentValue: $ref: "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity" description: currentValue is the current value of the metric (as a quantity). metricName: description: metricName is the name of the metric in question. type: string target: $ref: "#/definitions/io.k8s.api.autoscaling.v2beta1.CrossVersionObjectReference" description: target is the described Kubernetes object. required: - target - metricName - currentValue io.k8s.api.autoscaling.v2beta1.PodsMetricSource: description: PodsMetricSource indicates how to scale on a metric describing each pod in the current scale target (for example, transactions-processed-per-second). The values will be averaged together before being compared to the target value. properties: metricName: description: metricName is the name of the metric in question type: string targetAverageValue: $ref: "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity" description: targetAverageValue is the target value of the average of the metric across all relevant pods (as a quantity) required: - metricName - targetAverageValue io.k8s.api.autoscaling.v2beta1.PodsMetricStatus: description: PodsMetricStatus indicates the current value of a metric describing each pod in the current scale target (for example, transactions-processed-per-second). properties: currentAverageValue: $ref: "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity" description: currentAverageValue is the current value of the average of the metric across all relevant pods (as a quantity) metricName: description: metricName is the name of the metric in question type: string required: - metricName - currentAverageValue io.k8s.api.autoscaling.v2beta1.ResourceMetricSource: description: ResourceMetricSource indicates how to scale on a resource metric known to Kubernetes, as specified in requests and limits, describing each pod in the current scale target (e.g. CPU or memory). The values will be averaged together before being compared to the target. Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the "pods" source. Only one "target" type should be set. properties: name: description: name is the name of the resource in question. type: string targetAverageUtilization: description: targetAverageUtilization is the target value of the average of the resource metric across all relevant pods, represented as a percentage of the requested value of the resource for the pods. format: int32 type: integer targetAverageValue: $ref: "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity" description: targetAverageValue is the target value of the average of the resource metric across all relevant pods, as a raw value (instead of as a percentage of the request), similar to the "pods" metric source type. required: - name io.k8s.api.autoscaling.v2beta1.ResourceMetricStatus: description: ResourceMetricStatus indicates the current value of a resource metric known to Kubernetes, as specified in requests and limits, describing each pod in the current scale target (e.g. CPU or memory). Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the "pods" source. properties: currentAverageUtilization: description: currentAverageUtilization is the current value of the average of the resource metric across all relevant pods, represented as a percentage of the requested value of the resource for the pods. It will only be present if `targetAverageValue` was set in the corresponding metric specification. format: int32 type: integer currentAverageValue: $ref: "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity" description: currentAverageValue is the current value of the average of the resource metric across all relevant pods, as a raw value (instead of as a percentage of the request), similar to the "pods" metric source type. It will always be set, regardless of the corresponding metric specification. name: description: name is the name of the resource in question. type: string required: - name - currentAverageValue io.k8s.api.batch.v1.Job: description: Job represents the configuration of a single job. 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/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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" description: "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata" spec: $ref: "#/definitions/io.k8s.api.batch.v1.JobSpec" description: "Specification of the desired behavior of a job. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status" status: $ref: "#/definitions/io.k8s.api.batch.v1.JobStatus" description: "Current status of a job. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status" x-kubernetes-group-version-kind: - group: batch kind: Job version: v1 io.k8s.api.batch.v1.JobCondition: description: JobCondition describes current state of a job. properties: lastProbeTime: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time" description: Last time the condition was checked. lastTransitionTime: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time" description: Last time the condition transit from one status to another. message: description: Human readable message indicating details about last transition. type: string reason: description: (brief) reason for the condition's last transition. type: string status: description: Status of the condition, one of True, False, Unknown. type: string type: description: Type of job condition, Complete or Failed. type: string required: - type - status io.k8s.api.batch.v1.JobList: description: JobList is a collection of jobs. 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/api-conventions.md#resources" type: string items: description: items is the list of Jobs. items: $ref: "#/definitions/io.k8s.api.batch.v1.Job" type: array 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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" description: "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata" required: - items x-kubernetes-group-version-kind: - group: batch kind: JobList version: v1 io.k8s.api.batch.v1.JobSpec: description: JobSpec describes how the job execution will look like. properties: activeDeadlineSeconds: description: Specifies the duration in seconds relative to the startTime that the job may be active before the system tries to terminate it; value must be positive integer format: int64 type: integer backoffLimit: description: Specifies the number of retries before marking this job failed. Defaults to 6 format: int32 type: integer completions: description: "Specifies the desired number of successfully finished pods the job should be run with. Setting to nil means that the success of any pod signals the success of all pods, and allows parallelism to have any positive value. Setting to 1 means that parallelism is limited to 1 and the success of that pod signals the success of the job. More info: https://kubernetes.io/docs/concepts/workloads/controllers/jobs-run-to-completion/" format: int32 type: integer manualSelector: description: "manualSelector controls generation of pod labels and pod selectors. Leave `manualSelector` unset unless you are certain what you are doing. When false or unset, the system pick labels unique to this job and appends those labels to the pod template. When true, the user is responsible for picking unique labels and specifying the selector. Failure to pick a unique label may cause this and other jobs to not function correctly. However, You may see `manualSelector=true` in jobs that were created with the old `extensions/v1beta1` API. More info: https://kubernetes.io/docs/concepts/workloads/controllers/jobs-run-to-completion/#specifying-your-own-pod-selector" type: boolean parallelism: description: "Specifies the maximum desired number of pods the job should run at any given time. The actual number of pods running in steady state will be less than this number when ((.spec.completions - .status.successful) < .spec.parallelism), i.e. when the work left to do is less than max parallelism. More info: https://kubernetes.io/docs/concepts/workloads/controllers/jobs-run-to-completion/" format: int32 type: integer selector: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector" description: "A label query over pods that should match the pod count. Normally, the system sets this field for you. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors" template: $ref: "#/definitions/io.k8s.api.core.v1.PodTemplateSpec" description: "Describes the pod that will be created when executing a job. More info: https://kubernetes.io/docs/concepts/workloads/controllers/jobs-run-to-completion/" required: - template io.k8s.api.batch.v1.JobStatus: description: JobStatus represents the current state of a Job. properties: active: description: The number of actively running pods. format: int32 type: integer completionTime: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time" description: Represents time when the job was completed. It is not guaranteed to be set in happens-before order across separate operations. It is represented in RFC3339 form and is in UTC. conditions: description: "The latest available observations of an object's current state. More info: https://kubernetes.io/docs/concepts/workloads/controllers/jobs-run-to-completion/" items: $ref: "#/definitions/io.k8s.api.batch.v1.JobCondition" type: array x-kubernetes-patch-merge-key: type x-kubernetes-patch-strategy: merge failed: description: The number of pods which reached phase Failed. format: int32 type: integer startTime: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time" description: Represents time when the job was acknowledged by the job controller. It is not guaranteed to be set in happens-before order across separate operations. It is represented in RFC3339 form and is in UTC. succeeded: description: The number of pods which reached phase Succeeded. format: int32 type: integer io.k8s.api.batch.v1beta1.CronJob: description: CronJob represents the configuration of a single cron job. 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/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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" description: "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata" spec: $ref: "#/definitions/io.k8s.api.batch.v1beta1.CronJobSpec" description: "Specification of the desired behavior of a cron job, including the schedule. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status" status: $ref: "#/definitions/io.k8s.api.batch.v1beta1.CronJobStatus" description: "Current status of a cron job. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status" x-kubernetes-group-version-kind: - group: batch kind: CronJob version: v1beta1 io.k8s.api.batch.v1beta1.CronJobList: description: CronJobList is a collection of cron jobs. 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/api-conventions.md#resources" type: string items: description: items is the list of CronJobs. items: $ref: "#/definitions/io.k8s.api.batch.v1beta1.CronJob" type: array 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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" description: "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata" required: - items x-kubernetes-group-version-kind: - group: batch kind: CronJobList version: v1beta1 io.k8s.api.batch.v1beta1.CronJobSpec: description: CronJobSpec describes how the job execution will look like and when it will actually run. properties: concurrencyPolicy: description: "Specifies how to treat concurrent executions of a Job. Valid values are: - \"Allow\" (default): allows CronJobs to run concurrently; - \"Forbid\": forbids concurrent runs, skipping next run if previous run hasn't finished yet; - \"Replace\": cancels currently running job and replaces it with a new one" type: string failedJobsHistoryLimit: description: The number of failed finished jobs to retain. This is a pointer to distinguish between explicit zero and not specified. Defaults to 1. format: int32 type: integer jobTemplate: $ref: "#/definitions/io.k8s.api.batch.v1beta1.JobTemplateSpec" description: Specifies the job that will be created when executing a CronJob. schedule: description: The schedule in Cron format, see https://en.wikipedia.org/wiki/Cron. type: string startingDeadlineSeconds: description: Optional deadline in seconds for starting the job if it misses scheduled time for any reason. Missed jobs executions will be counted as failed ones. format: int64 type: integer successfulJobsHistoryLimit: description: The number of successful finished jobs to retain. This is a pointer to distinguish between explicit zero and not specified. Defaults to 3. format: int32 type: integer suspend: description: This flag tells the controller to suspend subsequent executions, it does not apply to already started executions. Defaults to false. type: boolean required: - schedule - jobTemplate io.k8s.api.batch.v1beta1.CronJobStatus: description: CronJobStatus represents the current state of a cron job. properties: active: description: A list of pointers to currently running jobs. items: $ref: "#/definitions/io.k8s.api.core.v1.ObjectReference" type: array lastScheduleTime: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time" description: Information when was the last time the job was successfully scheduled. io.k8s.api.batch.v1beta1.JobTemplateSpec: description: JobTemplateSpec describes the data a Job should have when created from a template properties: metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" description: "Standard object's metadata of the jobs created from this template. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata" spec: $ref: "#/definitions/io.k8s.api.batch.v1.JobSpec" description: "Specification of the desired behavior of the job. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status" io.k8s.api.batch.v2alpha1.CronJob: description: CronJob represents the configuration of a single cron job. 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/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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" description: "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata" spec: $ref: "#/definitions/io.k8s.api.batch.v2alpha1.CronJobSpec" description: "Specification of the desired behavior of a cron job, including the schedule. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status" status: $ref: "#/definitions/io.k8s.api.batch.v2alpha1.CronJobStatus" description: "Current status of a cron job. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status" x-kubernetes-group-version-kind: - group: batch kind: CronJob version: v2alpha1 io.k8s.api.batch.v2alpha1.CronJobList: description: CronJobList is a collection of cron jobs. 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/api-conventions.md#resources" type: string items: description: items is the list of CronJobs. items: $ref: "#/definitions/io.k8s.api.batch.v2alpha1.CronJob" type: array 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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" description: "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata" required: - items x-kubernetes-group-version-kind: - group: batch kind: CronJobList version: v2alpha1 io.k8s.api.batch.v2alpha1.CronJobSpec: description: CronJobSpec describes how the job execution will look like and when it will actually run. properties: concurrencyPolicy: description: "Specifies how to treat concurrent executions of a Job. Valid values are: - \"Allow\" (default): allows CronJobs to run concurrently; - \"Forbid\": forbids concurrent runs, skipping next run if previous run hasn't finished yet; - \"Replace\": cancels currently running job and replaces it with a new one" type: string failedJobsHistoryLimit: description: The number of failed finished jobs to retain. This is a pointer to distinguish between explicit zero and not specified. format: int32 type: integer jobTemplate: $ref: "#/definitions/io.k8s.api.batch.v2alpha1.JobTemplateSpec" description: Specifies the job that will be created when executing a CronJob. schedule: description: The schedule in Cron format, see https://en.wikipedia.org/wiki/Cron. type: string startingDeadlineSeconds: description: Optional deadline in seconds for starting the job if it misses scheduled time for any reason. Missed jobs executions will be counted as failed ones. format: int64 type: integer successfulJobsHistoryLimit: description: The number of successful finished jobs to retain. This is a pointer to distinguish between explicit zero and not specified. format: int32 type: integer suspend: description: This flag tells the controller to suspend subsequent executions, it does not apply to already started executions. Defaults to false. type: boolean required: - schedule - jobTemplate io.k8s.api.batch.v2alpha1.CronJobStatus: description: CronJobStatus represents the current state of a cron job. properties: active: description: A list of pointers to currently running jobs. items: $ref: "#/definitions/io.k8s.api.core.v1.ObjectReference" type: array lastScheduleTime: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time" description: Information when was the last time the job was successfully scheduled. io.k8s.api.batch.v2alpha1.JobTemplateSpec: description: JobTemplateSpec describes the data a Job should have when created from a template properties: metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" description: "Standard object's metadata of the jobs created from this template. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata" spec: $ref: "#/definitions/io.k8s.api.batch.v1.JobSpec" description: "Specification of the desired behavior of the job. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status" io.k8s.api.certificates.v1beta1.CertificateSigningRequest: description: Describes a certificate signing request 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/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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" spec: $ref: "#/definitions/io.k8s.api.certificates.v1beta1.CertificateSigningRequestSpec" description: The certificate request itself and any additional information. status: $ref: "#/definitions/io.k8s.api.certificates.v1beta1.CertificateSigningRequestStatus" description: Derived information about the request. x-kubernetes-group-version-kind: - group: certificates.k8s.io kind: CertificateSigningRequest version: v1beta1 io.k8s.api.certificates.v1beta1.CertificateSigningRequestCondition: properties: lastUpdateTime: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time" description: timestamp for the last update to this condition message: description: human readable message with details about the request state type: string reason: description: brief reason for the request state type: string type: description: request approval state, currently Approved or Denied. type: string required: - type io.k8s.api.certificates.v1beta1.CertificateSigningRequestList: 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/api-conventions.md#resources" type: string items: items: $ref: "#/definitions/io.k8s.api.certificates.v1beta1.CertificateSigningRequest" type: array 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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" required: - items x-kubernetes-group-version-kind: - group: certificates.k8s.io kind: CertificateSigningRequestList version: v1beta1 io.k8s.api.certificates.v1beta1.CertificateSigningRequestSpec: description: This information is immutable after the request is created. Only the Request and Usages fields can be set on creation, other fields are derived by Kubernetes and cannot be modified by users. properties: extra: additionalProperties: items: type: string type: array description: Extra information about the requesting user. See user.Info interface for details. type: object groups: description: Group information about the requesting user. See user.Info interface for details. items: type: string type: array request: description: Base64-encoded PKCS#10 CSR data format: byte type: string uid: description: UID information about the requesting user. See user.Info interface for details. type: string usages: description: |- allowedUsages specifies a set of usage contexts the key will be valid for. See: https://tools.ietf.org/html/rfc5280#section-4.2.1.3 https://tools.ietf.org/html/rfc5280#section-4.2.1.12 items: type: string type: array username: description: Information about the requesting user. See user.Info interface for details. type: string required: - request io.k8s.api.certificates.v1beta1.CertificateSigningRequestStatus: properties: certificate: description: If request was approved, the controller will place the issued certificate here. format: byte type: string conditions: description: Conditions applied to the request, such as approval or denial. items: $ref: "#/definitions/io.k8s.api.certificates.v1beta1.CertificateSigningRequestCondition" type: array io.k8s.api.core.v1.AWSElasticBlockStoreVolumeSource: description: |- Represents a Persistent Disk resource in AWS. An AWS EBS disk must exist before mounting to a container. The disk must also be in the same AWS zone as the kubelet. An AWS EBS disk can only be mounted as read/write once. AWS EBS volumes support ownership management and SELinux relabeling. properties: fsType: description: 'Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore' type: string partition: description: 'The partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as "1". Similarly, the volume partition for /dev/sda is "0" (or you can leave the property empty).' format: int32 type: integer readOnly: description: 'Specify "true" to force and set the ReadOnly property in VolumeMounts to "true". If omitted, the default is "false". More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore' type: boolean volumeID: description: "Unique ID of the persistent disk resource in AWS (Amazon EBS volume). More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore" type: string required: - volumeID io.k8s.api.core.v1.Affinity: description: Affinity is a group of affinity scheduling rules. properties: nodeAffinity: $ref: "#/definitions/io.k8s.api.core.v1.NodeAffinity" description: Describes node affinity scheduling rules for the pod. podAffinity: $ref: "#/definitions/io.k8s.api.core.v1.PodAffinity" description: Describes pod affinity scheduling rules (e.g. co-locate this pod in the same node, zone, etc. as some other pod(s)). podAntiAffinity: $ref: "#/definitions/io.k8s.api.core.v1.PodAntiAffinity" description: Describes pod anti-affinity scheduling rules (e.g. avoid putting this pod in the same node, zone, etc. as some other pod(s)). io.k8s.api.core.v1.AttachedVolume: description: AttachedVolume describes a volume attached to a node properties: devicePath: description: DevicePath represents the device path where the volume should be available type: string name: description: Name of the attached volume type: string required: - name - devicePath io.k8s.api.core.v1.AzureDiskVolumeSource: description: AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod. properties: cachingMode: description: "Host Caching mode: None, Read Only, Read Write." type: string diskName: description: The Name of the data disk in the blob storage type: string diskURI: description: The URI the data disk in the blob storage type: string fsType: description: Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. type: string kind: description: "Expected values Shared: multiple blob disks per storage account Dedicated: single blob disk per storage account Managed: azure managed data disk (only in managed availability set). defaults to shared" type: string readOnly: description: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. type: boolean required: - diskName - diskURI io.k8s.api.core.v1.AzureFilePersistentVolumeSource: description: AzureFile represents an Azure File Service mount on the host and bind mount to the pod. properties: readOnly: description: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. type: boolean secretName: description: the name of secret that contains Azure Storage Account Name and Key type: string secretNamespace: description: the namespace of the secret that contains Azure Storage Account Name and Key default is the same as the Pod type: string shareName: description: Share Name type: string required: - secretName - shareName io.k8s.api.core.v1.AzureFileVolumeSource: description: AzureFile represents an Azure File Service mount on the host and bind mount to the pod. properties: readOnly: description: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. type: boolean secretName: description: the name of secret that contains Azure Storage Account Name and Key type: string shareName: description: Share Name type: string required: - secretName - shareName io.k8s.api.core.v1.Binding: description: Binding ties one object to another; for example, a pod is bound to a node by a scheduler. Deprecated in 1.7, please use the bindings subresource of pods instead. 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/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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" description: "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata" target: $ref: "#/definitions/io.k8s.api.core.v1.ObjectReference" description: The target object that you want to bind to the standard object. required: - target x-kubernetes-group-version-kind: - group: "" kind: Binding version: v1 io.k8s.api.core.v1.CSIPersistentVolumeSource: description: Represents storage that is managed by an external CSI volume driver (Beta feature) properties: controllerPublishSecretRef: $ref: "#/definitions/io.k8s.api.core.v1.SecretReference" description: ControllerPublishSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI ControllerPublishVolume and ControllerUnpublishVolume calls. This field is optional, and may be empty if no secret is required. If the secret object contains more than one secret, all secrets are passed. driver: description: Driver is the name of the driver to use for this volume. Required. type: string fsType: description: Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. type: string nodePublishSecretRef: $ref: "#/definitions/io.k8s.api.core.v1.SecretReference" description: NodePublishSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodePublishVolume and NodeUnpublishVolume calls. This field is optional, and may be empty if no secret is required. If the secret object contains more than one secret, all secrets are passed. nodeStageSecretRef: $ref: "#/definitions/io.k8s.api.core.v1.SecretReference" description: NodeStageSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodeStageVolume and NodeStageVolume and NodeUnstageVolume calls. This field is optional, and may be empty if no secret is required. If the secret object contains more than one secret, all secrets are passed. readOnly: description: "Optional: The value to pass to ControllerPublishVolumeRequest. Defaults to false (read/write)." type: boolean volumeAttributes: additionalProperties: type: string description: Attributes of the volume to publish. type: object volumeHandle: description: VolumeHandle is the unique volume name returned by the CSI volume plugin’s CreateVolume to refer to the volume on all subsequent calls. Required. type: string required: - driver - volumeHandle io.k8s.api.core.v1.Capabilities: description: Adds and removes POSIX capabilities from running containers. properties: add: description: Added capabilities items: type: string type: array drop: description: Removed capabilities items: type: string type: array io.k8s.api.core.v1.CephFSPersistentVolumeSource: description: Represents a Ceph Filesystem mount that lasts the lifetime of a pod Cephfs volumes do not support ownership management or SELinux relabeling. properties: monitors: description: "Required: Monitors is a collection of Ceph monitors More info: https://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it" items: type: string type: array path: description: "Optional: Used as the mounted root, rather than the full Ceph tree, default is /" type: string readOnly: description: "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it" type: boolean secretFile: description: "Optional: SecretFile is the path to key ring for User, default is /etc/ceph/user.secret More info: https://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it" type: string secretRef: $ref: "#/definitions/io.k8s.api.core.v1.SecretReference" description: "Optional: SecretRef is reference to the authentication secret for User, default is empty. More info: https://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it" user: description: "Optional: User is the rados user name, default is admin More info: https://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it" type: string required: - monitors io.k8s.api.core.v1.CephFSVolumeSource: description: Represents a Ceph Filesystem mount that lasts the lifetime of a pod Cephfs volumes do not support ownership management or SELinux relabeling. properties: monitors: description: "Required: Monitors is a collection of Ceph monitors More info: https://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it" items: type: string type: array path: description: "Optional: Used as the mounted root, rather than the full Ceph tree, default is /" type: string readOnly: description: "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it" type: boolean secretFile: description: "Optional: SecretFile is the path to key ring for User, default is /etc/ceph/user.secret More info: https://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it" type: string secretRef: $ref: "#/definitions/io.k8s.api.core.v1.LocalObjectReference" description: "Optional: SecretRef is reference to the authentication secret for User, default is empty. More info: https://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it" user: description: "Optional: User is the rados user name, default is admin More info: https://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it" type: string required: - monitors io.k8s.api.core.v1.CinderVolumeSource: description: Represents a cinder volume resource in Openstack. A Cinder volume must exist before mounting to a container. The volume must also be in the same region as the kubelet. Cinder volumes support ownership management and SELinux relabeling. properties: fsType: description: 'Filesystem type to mount. Must be a filesystem type supported by the host operating system. Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. More info: https://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md' type: string readOnly: description: "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md" type: boolean volumeID: description: "volume id used to identify the volume in cinder More info: https://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md" type: string required: - volumeID io.k8s.api.core.v1.ClientIPConfig: description: ClientIPConfig represents the configurations of Client IP based session affinity. properties: timeoutSeconds: description: timeoutSeconds specifies the seconds of ClientIP type session sticky time. The value must be >0 && <=86400(for 1 day) if ServiceAffinity == "ClientIP". Default value is 10800(for 3 hours). format: int32 type: integer io.k8s.api.core.v1.ComponentCondition: description: Information about the condition of a component. properties: error: description: Condition error code for a component. For example, a health check error code. type: string message: description: Message about the condition for a component. For example, information about a health check. type: string status: description: 'Status of the condition for a component. Valid values for "Healthy": "True", "False", or "Unknown".' type: string type: description: 'Type of condition for a component. Valid value: "Healthy"' type: string required: - type - status io.k8s.api.core.v1.ComponentStatus: description: ComponentStatus (and ComponentStatusList) holds the cluster validation info. 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/api-conventions.md#resources" type: string conditions: description: List of component conditions observed items: $ref: "#/definitions/io.k8s.api.core.v1.ComponentCondition" type: array x-kubernetes-patch-merge-key: type x-kubernetes-patch-strategy: merge 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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" description: "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata" x-kubernetes-group-version-kind: - group: "" kind: ComponentStatus version: v1 io.k8s.api.core.v1.ComponentStatusList: description: Status of all the conditions for the component as a list of ComponentStatus objects. 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/api-conventions.md#resources" type: string items: description: List of ComponentStatus objects. items: $ref: "#/definitions/io.k8s.api.core.v1.ComponentStatus" type: array 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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" description: "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds" required: - items x-kubernetes-group-version-kind: - group: "" kind: ComponentStatusList version: v1 io.k8s.api.core.v1.ConfigMap: description: ConfigMap holds configuration data for pods to consume. 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/api-conventions.md#resources" type: string binaryData: additionalProperties: format: byte type: string description: BinaryData contains the binary data. Each key must consist of alphanumeric characters, '-', '_' or '.'. BinaryData can contain byte sequences that are not in the UTF-8 range. The keys stored in BinaryData must not overlap with the ones in the Data field, this is enforced during validation process. Using this field will require 1.10+ apiserver and kubelet. type: object data: additionalProperties: type: string description: Data contains the configuration data. Each key must consist of alphanumeric characters, '-', '_' or '.'. Values with non-UTF-8 byte sequences must use the BinaryData field. The keys stored in Data must not overlap with the keys in the BinaryData field, this is enforced during validation process. type: object 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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" description: "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata" x-kubernetes-group-version-kind: - group: "" kind: ConfigMap version: v1 io.k8s.api.core.v1.ConfigMapEnvSource: description: |- ConfigMapEnvSource selects a ConfigMap to populate the environment variables with. The contents of the target ConfigMap's Data field will represent the key-value pairs as environment variables. properties: name: description: "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names" type: string optional: description: Specify whether the ConfigMap must be defined type: boolean io.k8s.api.core.v1.ConfigMapKeySelector: description: Selects a key from a ConfigMap. properties: key: description: The key to select. type: string name: description: "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names" type: string optional: description: Specify whether the ConfigMap or it's key must be defined type: boolean required: - key io.k8s.api.core.v1.ConfigMapList: description: ConfigMapList is a resource containing a list of ConfigMap objects. 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/api-conventions.md#resources" type: string items: description: Items is the list of ConfigMaps. items: $ref: "#/definitions/io.k8s.api.core.v1.ConfigMap" type: array 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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" description: "More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata" required: - items x-kubernetes-group-version-kind: - group: "" kind: ConfigMapList version: v1 io.k8s.api.core.v1.ConfigMapProjection: description: |- Adapts a ConfigMap into a projected volume. The contents of the target ConfigMap's Data field will be presented in a projected volume as files using the keys in the Data field as the file names, unless the items element is populated with specific mappings of keys to paths. Note that this is identical to a configmap volume source without the default mode. properties: items: description: If unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'. items: $ref: "#/definitions/io.k8s.api.core.v1.KeyToPath" type: array name: description: "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names" type: string optional: description: Specify whether the ConfigMap or it's keys must be defined type: boolean io.k8s.api.core.v1.ConfigMapVolumeSource: description: |- Adapts a ConfigMap into a volume. The contents of the target ConfigMap's Data field will be presented in a volume as files using the keys in the Data field as the file names, unless the items element is populated with specific mappings of keys to paths. ConfigMap volumes support ownership management and SELinux relabeling. properties: defaultMode: description: "Optional: mode bits to use on created files by default. Must be a value between 0 and 0777. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set." format: int32 type: integer items: description: If unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'. items: $ref: "#/definitions/io.k8s.api.core.v1.KeyToPath" type: array name: description: "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names" type: string optional: description: Specify whether the ConfigMap or it's keys must be defined type: boolean io.k8s.api.core.v1.Container: description: A single application container that you want to run within a pod. properties: args: description: "Arguments to the entrypoint. The docker image's CMD is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell" items: type: string type: array command: description: "Entrypoint array. Not executed within a shell. The docker image's ENTRYPOINT is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell" items: type: string type: array env: description: List of environment variables to set in the container. Cannot be updated. items: $ref: "#/definitions/io.k8s.api.core.v1.EnvVar" type: array x-kubernetes-patch-merge-key: name x-kubernetes-patch-strategy: merge envFrom: description: List of sources to populate environment variables in the container. The keys defined within a source must be a C_IDENTIFIER. All invalid keys will be reported as an event when the container is starting. When a key exists in multiple sources, the value associated with the last source will take precedence. Values defined by an Env with a duplicate key will take precedence. Cannot be updated. items: $ref: "#/definitions/io.k8s.api.core.v1.EnvFromSource" type: array image: description: "Docker image name. More info: https://kubernetes.io/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and StatefulSets." type: string imagePullPolicy: description: "Image pull policy. One of Always, Never, IfNotPresent. Defaults to Always if :latest tag is specified, or IfNotPresent otherwise. Cannot be updated. More info: https://kubernetes.io/docs/concepts/containers/images#updating-images" type: string lifecycle: $ref: "#/definitions/io.k8s.api.core.v1.Lifecycle" description: Actions that the management system should take in response to container lifecycle events. Cannot be updated. livenessProbe: $ref: "#/definitions/io.k8s.api.core.v1.Probe" description: "Periodic probe of container liveness. Container will be restarted if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes" name: description: Name of the container specified as a DNS_LABEL. Each container in a pod must have a unique name (DNS_LABEL). Cannot be updated. type: string ports: description: List of ports to expose from the container. Exposing a port here gives the system additional information about the network connections a container uses, but is primarily informational. Not specifying a port here DOES NOT prevent that port from being exposed. Any port which is listening on the default "0.0.0.0" address inside a container will be accessible from the network. Cannot be updated. items: $ref: "#/definitions/io.k8s.api.core.v1.ContainerPort" type: array x-kubernetes-patch-merge-key: containerPort x-kubernetes-patch-strategy: merge readinessProbe: $ref: "#/definitions/io.k8s.api.core.v1.Probe" description: "Periodic probe of container service readiness. Container will be removed from service endpoints if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes" resources: $ref: "#/definitions/io.k8s.api.core.v1.ResourceRequirements" description: "Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources" securityContext: $ref: "#/definitions/io.k8s.api.core.v1.SecurityContext" description: "Security options the pod should run with. More info: https://kubernetes.io/docs/concepts/policy/security-context/ More info: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/" stdin: description: Whether this container should allocate a buffer for stdin in the container runtime. If this is not set, reads from stdin in the container will always result in EOF. Default is false. type: boolean stdinOnce: description: Whether the container runtime should close the stdin channel after it has been opened by a single attach. When stdin is true the stdin stream will remain open across multiple attach sessions. If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted. If this flag is false, a container processes that reads from stdin will never receive an EOF. Default is false type: boolean terminationMessagePath: description: "Optional: Path at which the file to which the container's termination message will be written is mounted into the container's filesystem. Message written is intended to be brief final status, such as an assertion failure message. Will be truncated by the node if greater than 4096 bytes. The total message length across all containers will be limited to 12kb. Defaults to /dev/termination-log. Cannot be updated." type: string terminationMessagePolicy: description: Indicate how the termination message should be populated. File will use the contents of terminationMessagePath to populate the container status message on both success and failure. FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error. The log output is limited to 2048 bytes or 80 lines, whichever is smaller. Defaults to File. Cannot be updated. type: string tty: description: Whether this container should allocate a TTY for itself, also requires 'stdin' to be true. Default is false. type: boolean volumeDevices: description: volumeDevices is the list of block devices to be used by the container. This is an alpha feature and may change in the future. items: $ref: "#/definitions/io.k8s.api.core.v1.VolumeDevice" type: array x-kubernetes-patch-merge-key: devicePath x-kubernetes-patch-strategy: merge volumeMounts: description: Pod volumes to mount into the container's filesystem. Cannot be updated. items: $ref: "#/definitions/io.k8s.api.core.v1.VolumeMount" type: array x-kubernetes-patch-merge-key: mountPath x-kubernetes-patch-strategy: merge workingDir: description: Container's working directory. If not specified, the container runtime's default will be used, which might be configured in the container image. Cannot be updated. type: string required: - name io.k8s.api.core.v1.ContainerImage: description: Describe a container image properties: names: description: Names by which this image is known. e.g. ["k8s.gcr.io/hyperkube:v1.0.7", "dockerhub.io/google_containers/hyperkube:v1.0.7"] items: type: string type: array sizeBytes: description: The size of the image in bytes. format: int64 type: integer required: - names io.k8s.api.core.v1.ContainerPort: description: ContainerPort represents a network port in a single container. properties: containerPort: description: Number of port to expose on the pod's IP address. This must be a valid port number, 0 < x < 65536. format: int32 type: integer hostIP: description: What host IP to bind the external port to. type: string hostPort: description: Number of port to expose on the host. If specified, this must be a valid port number, 0 < x < 65536. If HostNetwork is specified, this must match ContainerPort. Most containers do not need this. format: int32 type: integer name: description: If specified, this must be an IANA_SVC_NAME and unique within the pod. Each named port in a pod must have a unique name. Name for the port that can be referred to by services. type: string protocol: description: Protocol for port. Must be UDP or TCP. Defaults to "TCP". type: string required: - containerPort io.k8s.api.core.v1.ContainerState: description: ContainerState holds a possible state of container. Only one of its members may be specified. If none of them is specified, the default one is ContainerStateWaiting. properties: running: $ref: "#/definitions/io.k8s.api.core.v1.ContainerStateRunning" description: Details about a running container terminated: $ref: "#/definitions/io.k8s.api.core.v1.ContainerStateTerminated" description: Details about a terminated container waiting: $ref: "#/definitions/io.k8s.api.core.v1.ContainerStateWaiting" description: Details about a waiting container io.k8s.api.core.v1.ContainerStateRunning: description: ContainerStateRunning is a running state of a container. properties: startedAt: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time" description: Time at which the container was last (re-)started io.k8s.api.core.v1.ContainerStateTerminated: description: ContainerStateTerminated is a terminated state of a container. properties: containerID: description: Container's ID in the format 'docker://' type: string exitCode: description: Exit status from the last termination of the container format: int32 type: integer finishedAt: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time" description: Time at which the container last terminated message: description: Message regarding the last termination of the container type: string reason: description: (brief) reason from the last termination of the container type: string signal: description: Signal from the last termination of the container format: int32 type: integer startedAt: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time" description: Time at which previous execution of the container started required: - exitCode io.k8s.api.core.v1.ContainerStateWaiting: description: ContainerStateWaiting is a waiting state of a container. properties: message: description: Message regarding why the container is not yet running. type: string reason: description: (brief) reason the container is not yet running. type: string io.k8s.api.core.v1.ContainerStatus: description: ContainerStatus contains details for the current status of this container. properties: containerID: description: Container's ID in the format 'docker://'. type: string image: description: "The image the container is running. More info: https://kubernetes.io/docs/concepts/containers/images" type: string imageID: description: ImageID of the container's image. type: string lastState: $ref: "#/definitions/io.k8s.api.core.v1.ContainerState" description: Details about the container's last termination condition. name: description: This must be a DNS_LABEL. Each container in a pod must have a unique name. Cannot be updated. type: string ready: description: Specifies whether the container has passed its readiness probe. type: boolean restartCount: description: The number of times the container has been restarted, currently based on the number of dead containers that have not yet been removed. Note that this is calculated from dead containers. But those containers are subject to garbage collection. This value will get capped at 5 by GC. format: int32 type: integer state: $ref: "#/definitions/io.k8s.api.core.v1.ContainerState" description: Details about the container's current condition. required: - name - ready - restartCount - image - imageID io.k8s.api.core.v1.DaemonEndpoint: description: DaemonEndpoint contains information about a single Daemon endpoint. properties: Port: description: Port number of the given endpoint. format: int32 type: integer required: - Port io.k8s.api.core.v1.DownwardAPIProjection: description: Represents downward API info for projecting into a projected volume. Note that this is identical to a downwardAPI volume source without the default mode. properties: items: description: Items is a list of DownwardAPIVolume file items: $ref: "#/definitions/io.k8s.api.core.v1.DownwardAPIVolumeFile" type: array io.k8s.api.core.v1.DownwardAPIVolumeFile: description: DownwardAPIVolumeFile represents information to create the file containing the pod field properties: fieldRef: $ref: "#/definitions/io.k8s.api.core.v1.ObjectFieldSelector" description: "Required: Selects a field of the pod: only annotations, labels, name and namespace are supported." mode: description: "Optional: mode bits to use on this file, must be a value between 0 and 0777. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set." format: int32 type: integer path: description: "Required: Path is the relative path name of the file to be created. Must not be absolute or contain the '..' path. Must be utf-8 encoded. The first item of the relative path must not start with '..'" type: string resourceFieldRef: $ref: "#/definitions/io.k8s.api.core.v1.ResourceFieldSelector" description: "Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported." required: - path io.k8s.api.core.v1.DownwardAPIVolumeSource: description: DownwardAPIVolumeSource represents a volume containing downward API info. Downward API volumes support ownership management and SELinux relabeling. properties: defaultMode: description: "Optional: mode bits to use on created files by default. Must be a value between 0 and 0777. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set." format: int32 type: integer items: description: Items is a list of downward API volume file items: $ref: "#/definitions/io.k8s.api.core.v1.DownwardAPIVolumeFile" type: array io.k8s.api.core.v1.EmptyDirVolumeSource: description: Represents an empty directory for a pod. Empty directory volumes support ownership management and SELinux relabeling. properties: medium: description: "What type of storage medium should back this directory. The default is \"\" which means to use the node's default medium. Must be an empty string (default) or Memory. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir" type: string sizeLimit: $ref: "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity" description: "Total amount of local storage required for this EmptyDir volume. The size limit is also applicable for memory medium. The maximum usage on memory medium EmptyDir would be the minimum value between the SizeLimit specified here and the sum of memory limits of all containers in a pod. The default is nil which means that the limit is undefined. More info: http://kubernetes.io/docs/user-guide/volumes#emptydir" io.k8s.api.core.v1.EndpointAddress: description: EndpointAddress is a tuple that describes single IP address. properties: hostname: description: The Hostname of this endpoint type: string ip: description: The IP of this endpoint. May not be loopback (127.0.0.0/8), link-local (169.254.0.0/16), or link-local multicast ((224.0.0.0/24). IPv6 is also accepted but not fully supported on all platforms. Also, certain kubernetes components, like kube-proxy, are not IPv6 ready. type: string nodeName: description: "Optional: Node hosting this endpoint. This can be used to determine endpoints local to a node." type: string targetRef: $ref: "#/definitions/io.k8s.api.core.v1.ObjectReference" description: Reference to object providing the endpoint. required: - ip io.k8s.api.core.v1.EndpointPort: description: EndpointPort is a tuple that describes a single port. properties: name: description: The name of this port (corresponds to ServicePort.Name). Must be a DNS_LABEL. Optional only if one port is defined. type: string port: description: The port number of the endpoint. format: int32 type: integer protocol: description: The IP protocol for this port. Must be UDP or TCP. Default is TCP. type: string required: - port io.k8s.api.core.v1.EndpointSubset: description: |- EndpointSubset is a group of addresses with a common set of ports. The expanded set of endpoints is the Cartesian product of Addresses x Ports. For example, given: { Addresses: [{"ip": "10.10.1.1"}, {"ip": "10.10.2.2"}], Ports: [{"name": "a", "port": 8675}, {"name": "b", "port": 309}] } The resulting set of endpoints can be viewed as: a: [ 10.10.1.1:8675, 10.10.2.2:8675 ], b: [ 10.10.1.1:309, 10.10.2.2:309 ] properties: addresses: description: IP addresses which offer the related ports that are marked as ready. These endpoints should be considered safe for load balancers and clients to utilize. items: $ref: "#/definitions/io.k8s.api.core.v1.EndpointAddress" type: array notReadyAddresses: description: IP addresses which offer the related ports but are not currently marked as ready because they have not yet finished starting, have recently failed a readiness check, or have recently failed a liveness check. items: $ref: "#/definitions/io.k8s.api.core.v1.EndpointAddress" type: array ports: description: Port numbers available on the related IP addresses. items: $ref: "#/definitions/io.k8s.api.core.v1.EndpointPort" type: array io.k8s.api.core.v1.Endpoints: description: |- Endpoints is a collection of endpoints that implement the actual service. Example: Name: "mysvc", Subsets: [ { Addresses: [{"ip": "10.10.1.1"}, {"ip": "10.10.2.2"}], Ports: [{"name": "a", "port": 8675}, {"name": "b", "port": 309}] }, { Addresses: [{"ip": "10.10.3.3"}], Ports: [{"name": "a", "port": 93}, {"name": "b", "port": 76}] }, ] 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/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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" description: "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata" subsets: description: The set of all endpoints is the union of all subsets. Addresses are placed into subsets according to the IPs they share. A single address with multiple ports, some of which are ready and some of which are not (because they come from different containers) will result in the address being displayed in different subsets for the different ports. No address will appear in both Addresses and NotReadyAddresses in the same subset. Sets of addresses and ports that comprise a service. items: $ref: "#/definitions/io.k8s.api.core.v1.EndpointSubset" type: array x-kubernetes-group-version-kind: - group: "" kind: Endpoints version: v1 io.k8s.api.core.v1.EndpointsList: description: EndpointsList is a list of endpoints. 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/api-conventions.md#resources" type: string items: description: List of endpoints. items: $ref: "#/definitions/io.k8s.api.core.v1.Endpoints" type: array 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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" description: "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds" required: - items x-kubernetes-group-version-kind: - group: "" kind: EndpointsList version: v1 io.k8s.api.core.v1.EnvFromSource: description: EnvFromSource represents the source of a set of ConfigMaps properties: configMapRef: $ref: "#/definitions/io.k8s.api.core.v1.ConfigMapEnvSource" description: The ConfigMap to select from prefix: description: An optional identifier to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER. type: string secretRef: $ref: "#/definitions/io.k8s.api.core.v1.SecretEnvSource" description: The Secret to select from io.k8s.api.core.v1.EnvVar: description: EnvVar represents an environment variable present in a Container. properties: name: description: Name of the environment variable. Must be a C_IDENTIFIER. type: string value: description: 'Variable references $(VAR_NAME) are expanded using the previous defined environment variables in the container and any service environment variables. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Defaults to "".' type: string valueFrom: $ref: "#/definitions/io.k8s.api.core.v1.EnvVarSource" description: Source for the environment variable's value. Cannot be used if value is not empty. required: - name io.k8s.api.core.v1.EnvVarSource: description: EnvVarSource represents a source for the value of an EnvVar. properties: configMapKeyRef: $ref: "#/definitions/io.k8s.api.core.v1.ConfigMapKeySelector" description: Selects a key of a ConfigMap. fieldRef: $ref: "#/definitions/io.k8s.api.core.v1.ObjectFieldSelector" description: "Selects a field of the pod: supports metadata.name, metadata.namespace, metadata.labels, metadata.annotations, spec.nodeName, spec.serviceAccountName, status.hostIP, status.podIP." resourceFieldRef: $ref: "#/definitions/io.k8s.api.core.v1.ResourceFieldSelector" description: "Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, limits.ephemeral-storage, requests.cpu, requests.memory and requests.ephemeral-storage) are currently supported." secretKeyRef: $ref: "#/definitions/io.k8s.api.core.v1.SecretKeySelector" description: Selects a key of a secret in the pod's namespace io.k8s.api.core.v1.Event: description: Event is a report of an event somewhere in the cluster. properties: action: description: What action was taken/failed regarding to the Regarding object. type: string 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/api-conventions.md#resources" type: string count: description: The number of times this event has occurred. format: int32 type: integer eventTime: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.MicroTime" description: Time when this Event was first observed. firstTimestamp: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time" description: The time at which the event was first recorded. (Time of server receipt is in TypeMeta.) involvedObject: $ref: "#/definitions/io.k8s.api.core.v1.ObjectReference" description: The object that this event is about. 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/api-conventions.md#types-kinds" type: string lastTimestamp: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time" description: The time at which the most recent occurrence of this event was recorded. message: description: A human-readable description of the status of this operation. type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" description: "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata" reason: description: This should be a short, machine understandable string that gives the reason for the transition into the object's current status. type: string related: $ref: "#/definitions/io.k8s.api.core.v1.ObjectReference" description: Optional secondary object for more complex actions. reportingComponent: description: Name of the controller that emitted this Event, e.g. `kubernetes.io/kubelet`. type: string reportingInstance: description: ID of the controller instance, e.g. `kubelet-xyzf`. type: string series: $ref: "#/definitions/io.k8s.api.core.v1.EventSeries" description: Data about the Event series this event represents or nil if it's a singleton Event. source: $ref: "#/definitions/io.k8s.api.core.v1.EventSource" description: The component reporting this event. Should be a short machine understandable string. type: description: Type of this event (Normal, Warning), new types could be added in the future type: string required: - metadata - involvedObject x-kubernetes-group-version-kind: - group: "" kind: Event version: v1 io.k8s.api.core.v1.EventList: description: EventList is a list of events. 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/api-conventions.md#resources" type: string items: description: List of events items: $ref: "#/definitions/io.k8s.api.core.v1.Event" type: array 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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" description: "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds" required: - items x-kubernetes-group-version-kind: - group: "" kind: EventList version: v1 io.k8s.api.core.v1.EventSeries: description: EventSeries contain information on series of events, i.e. thing that was/is happening continuously for some time. properties: count: description: Number of occurrences in this series up to the last heartbeat time format: int32 type: integer lastObservedTime: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.MicroTime" description: Time of the last occurrence observed state: description: "State of this Series: Ongoing or Finished" type: string io.k8s.api.core.v1.EventSource: description: EventSource contains information for an event. properties: component: description: Component from which the event is generated. type: string host: description: Node name on which the event is generated. type: string io.k8s.api.core.v1.ExecAction: description: ExecAction describes a "run in container" action. properties: command: description: Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy. items: type: string type: array io.k8s.api.core.v1.FCVolumeSource: description: Represents a Fibre Channel volume. Fibre Channel volumes can only be mounted as read/write once. Fibre Channel volumes support ownership management and SELinux relabeling. properties: fsType: description: Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. type: string lun: description: "Optional: FC target lun number" format: int32 type: integer readOnly: description: "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts." type: boolean targetWWNs: description: "Optional: FC target worldwide names (WWNs)" items: type: string type: array wwids: description: "Optional: FC volume world wide identifiers (wwids) Either wwids or combination of targetWWNs and lun must be set, but not both simultaneously." items: type: string type: array io.k8s.api.core.v1.FlexPersistentVolumeSource: description: FlexPersistentVolumeSource represents a generic persistent volume resource that is provisioned/attached using an exec based plugin. properties: driver: description: Driver is the name of the driver to use for this volume. type: string fsType: description: Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". The default filesystem depends on FlexVolume script. type: string options: additionalProperties: type: string description: "Optional: Extra command options if any." type: object readOnly: description: "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts." type: boolean secretRef: $ref: "#/definitions/io.k8s.api.core.v1.SecretReference" description: "Optional: SecretRef is reference to the secret object containing sensitive information to pass to the plugin scripts. This may be empty if no secret object is specified. If the secret object contains more than one secret, all secrets are passed to the plugin scripts." required: - driver io.k8s.api.core.v1.FlexVolumeSource: description: FlexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin. properties: driver: description: Driver is the name of the driver to use for this volume. type: string fsType: description: Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". The default filesystem depends on FlexVolume script. type: string options: additionalProperties: type: string description: "Optional: Extra command options if any." type: object readOnly: description: "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts." type: boolean secretRef: $ref: "#/definitions/io.k8s.api.core.v1.LocalObjectReference" description: "Optional: SecretRef is reference to the secret object containing sensitive information to pass to the plugin scripts. This may be empty if no secret object is specified. If the secret object contains more than one secret, all secrets are passed to the plugin scripts." required: - driver io.k8s.api.core.v1.FlockerVolumeSource: description: Represents a Flocker volume mounted by the Flocker agent. One and only one of datasetName and datasetUUID should be set. Flocker volumes do not support ownership management or SELinux relabeling. properties: datasetName: description: Name of the dataset stored as metadata -> name on the dataset for Flocker should be considered as deprecated type: string datasetUUID: description: UUID of the dataset. This is unique identifier of a Flocker dataset type: string io.k8s.api.core.v1.GCEPersistentDiskVolumeSource: description: |- Represents a Persistent Disk resource in Google Compute Engine. A GCE PD must exist before mounting to a container. The disk must also be in the same GCE project and zone as the kubelet. A GCE PD can only be mounted as read/write once or read-only many times. GCE PDs support ownership management and SELinux relabeling. properties: fsType: description: 'Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk' type: string partition: description: 'The partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as "1". Similarly, the volume partition for /dev/sda is "0" (or you can leave the property empty). More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk' format: int32 type: integer pdName: description: "Unique name of the PD resource in GCE. Used to identify the disk in GCE. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk" type: string readOnly: description: "ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk" type: boolean required: - pdName io.k8s.api.core.v1.GitRepoVolumeSource: description: Represents a volume that is populated with the contents of a git repository. Git repo volumes do not support ownership management. Git repo volumes support SELinux relabeling. properties: directory: description: Target directory name. Must not contain or start with '..'. If '.' is supplied, the volume directory will be the git repository. Otherwise, if specified, the volume will contain the git repository in the subdirectory with the given name. type: string repository: description: Repository URL type: string revision: description: Commit hash for the specified revision. type: string required: - repository io.k8s.api.core.v1.GlusterfsVolumeSource: description: Represents a Glusterfs mount that lasts the lifetime of a pod. Glusterfs volumes do not support ownership management or SELinux relabeling. properties: endpoints: description: "EndpointsName is the endpoint name that details Glusterfs topology. More info: https://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md#create-a-pod" type: string path: description: "Path is the Glusterfs volume path. More info: https://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md#create-a-pod" type: string readOnly: description: "ReadOnly here will force the Glusterfs volume to be mounted with read-only permissions. Defaults to false. More info: https://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md#create-a-pod" type: boolean required: - endpoints - path io.k8s.api.core.v1.HTTPGetAction: description: HTTPGetAction describes an action based on HTTP Get requests. properties: host: description: Host name to connect to, defaults to the pod IP. You probably want to set "Host" in httpHeaders instead. type: string httpHeaders: description: Custom headers to set in the request. HTTP allows repeated headers. items: $ref: "#/definitions/io.k8s.api.core.v1.HTTPHeader" type: array path: description: Path to access on the HTTP server. type: string port: $ref: "#/definitions/io.k8s.apimachinery.pkg.util.intstr.IntOrString" description: Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. scheme: description: Scheme to use for connecting to the host. Defaults to HTTP. type: string required: - port io.k8s.api.core.v1.HTTPHeader: description: HTTPHeader describes a custom header to be used in HTTP probes properties: name: description: The header field name type: string value: description: The header field value type: string required: - name - value io.k8s.api.core.v1.Handler: description: Handler defines a specific action that should be taken properties: exec: $ref: "#/definitions/io.k8s.api.core.v1.ExecAction" description: One and only one of the following should be specified. Exec specifies the action to take. httpGet: $ref: "#/definitions/io.k8s.api.core.v1.HTTPGetAction" description: HTTPGet specifies the http request to perform. tcpSocket: $ref: "#/definitions/io.k8s.api.core.v1.TCPSocketAction" description: TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported io.k8s.api.core.v1.HostAlias: description: HostAlias holds the mapping between IP and hostnames that will be injected as an entry in the pod's hosts file. properties: hostnames: description: Hostnames for the above IP address. items: type: string type: array ip: description: IP address of the host file entry. type: string io.k8s.api.core.v1.HostPathVolumeSource: description: Represents a host path mapped into a pod. Host path volumes do not support ownership management or SELinux relabeling. properties: path: description: "Path of the directory on the host. If the path is a symlink, it will follow the link to the real path. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath" type: string type: description: 'Type for HostPath Volume Defaults to "" More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath' type: string required: - path io.k8s.api.core.v1.ISCSIPersistentVolumeSource: description: ISCSIPersistentVolumeSource represents an ISCSI disk. ISCSI volumes can only be mounted as read/write once. ISCSI volumes support ownership management and SELinux relabeling. properties: chapAuthDiscovery: description: whether support iSCSI Discovery CHAP authentication type: boolean chapAuthSession: description: whether support iSCSI Session CHAP authentication type: boolean fsType: description: 'Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#iscsi' type: string initiatorName: description: Custom iSCSI Initiator Name. If initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface : will be created for the connection. type: string iqn: description: Target iSCSI Qualified Name. type: string iscsiInterface: description: iSCSI Interface Name that uses an iSCSI transport. Defaults to 'default' (tcp). type: string lun: description: iSCSI Target Lun number. format: int32 type: integer portals: description: iSCSI Target Portal List. The Portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260). items: type: string type: array readOnly: description: ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. type: boolean secretRef: $ref: "#/definitions/io.k8s.api.core.v1.SecretReference" description: CHAP Secret for iSCSI target and initiator authentication targetPortal: description: iSCSI Target Portal. The Portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260). type: string required: - targetPortal - iqn - lun io.k8s.api.core.v1.ISCSIVolumeSource: description: Represents an ISCSI disk. ISCSI volumes can only be mounted as read/write once. ISCSI volumes support ownership management and SELinux relabeling. properties: chapAuthDiscovery: description: whether support iSCSI Discovery CHAP authentication type: boolean chapAuthSession: description: whether support iSCSI Session CHAP authentication type: boolean fsType: description: 'Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#iscsi' type: string initiatorName: description: Custom iSCSI Initiator Name. If initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface : will be created for the connection. type: string iqn: description: Target iSCSI Qualified Name. type: string iscsiInterface: description: iSCSI Interface Name that uses an iSCSI transport. Defaults to 'default' (tcp). type: string lun: description: iSCSI Target Lun number. format: int32 type: integer portals: description: iSCSI Target Portal List. The portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260). items: type: string type: array readOnly: description: ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. type: boolean secretRef: $ref: "#/definitions/io.k8s.api.core.v1.LocalObjectReference" description: CHAP Secret for iSCSI target and initiator authentication targetPortal: description: iSCSI Target Portal. The Portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260). type: string required: - targetPortal - iqn - lun io.k8s.api.core.v1.KeyToPath: description: Maps a string key to a path within a volume. properties: key: description: The key to project. type: string mode: description: "Optional: mode bits to use on this file, must be a value between 0 and 0777. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set." format: int32 type: integer path: description: The relative path of the file to map the key to. May not be an absolute path. May not contain the path element '..'. May not start with the string '..'. type: string required: - key - path io.k8s.api.core.v1.Lifecycle: description: Lifecycle describes actions that the management system should take in response to container lifecycle events. For the PostStart and PreStop lifecycle handlers, management of the container blocks until the action is complete, unless the container process fails, in which case the handler is aborted. properties: postStart: $ref: "#/definitions/io.k8s.api.core.v1.Handler" description: "PostStart is called immediately after a container is created. If the handler fails, the container is terminated and restarted according to its restart policy. Other management of the container blocks until the hook completes. More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks" preStop: $ref: "#/definitions/io.k8s.api.core.v1.Handler" description: "PreStop is called immediately before a container is terminated. The container is terminated after the handler completes. The reason for termination is passed to the handler. Regardless of the outcome of the handler, the container is eventually terminated. Other management of the container blocks until the hook completes. More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks" io.k8s.api.core.v1.LimitRange: description: LimitRange sets resource usage limits for each kind of resource in a Namespace. 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/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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" description: "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata" spec: $ref: "#/definitions/io.k8s.api.core.v1.LimitRangeSpec" description: "Spec defines the limits enforced. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status" x-kubernetes-group-version-kind: - group: "" kind: LimitRange version: v1 io.k8s.api.core.v1.LimitRangeItem: description: LimitRangeItem defines a min/max usage limit for any resource that matches on kind. properties: default: additionalProperties: $ref: "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity" description: Default resource requirement limit value by resource name if resource limit is omitted. type: object defaultRequest: additionalProperties: $ref: "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity" description: DefaultRequest is the default resource requirement request value by resource name if resource request is omitted. type: object max: additionalProperties: $ref: "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity" description: Max usage constraints on this kind by resource name. type: object maxLimitRequestRatio: additionalProperties: $ref: "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity" description: MaxLimitRequestRatio if specified, the named resource must have a request and limit that are both non-zero where limit divided by request is less than or equal to the enumerated value; this represents the max burst for the named resource. type: object min: additionalProperties: $ref: "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity" description: Min usage constraints on this kind by resource name. type: object type: description: Type of resource that this limit applies to. type: string io.k8s.api.core.v1.LimitRangeList: description: LimitRangeList is a list of LimitRange 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/api-conventions.md#resources" type: string items: description: "Items is a list of LimitRange objects. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/" items: $ref: "#/definitions/io.k8s.api.core.v1.LimitRange" type: array 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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" description: "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds" required: - items x-kubernetes-group-version-kind: - group: "" kind: LimitRangeList version: v1 io.k8s.api.core.v1.LimitRangeSpec: description: LimitRangeSpec defines a min/max usage limit for resources that match on kind. properties: limits: description: Limits is the list of LimitRangeItem objects that are enforced. items: $ref: "#/definitions/io.k8s.api.core.v1.LimitRangeItem" type: array required: - limits io.k8s.api.core.v1.LoadBalancerIngress: description: "LoadBalancerIngress represents the status of a load-balancer ingress point: traffic intended for the service should be sent to an ingress point." properties: hostname: description: Hostname is set for load-balancer ingress points that are DNS based (typically AWS load-balancers) type: string ip: description: IP is set for load-balancer ingress points that are IP based (typically GCE or OpenStack load-balancers) type: string io.k8s.api.core.v1.LoadBalancerStatus: description: LoadBalancerStatus represents the status of a load-balancer. properties: ingress: description: Ingress is a list containing ingress points for the load-balancer. Traffic intended for the service should be sent to these ingress points. items: $ref: "#/definitions/io.k8s.api.core.v1.LoadBalancerIngress" type: array io.k8s.api.core.v1.LocalObjectReference: description: LocalObjectReference contains enough information to let you locate the referenced object inside the same namespace. properties: name: description: "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names" type: string io.k8s.api.core.v1.LocalVolumeSource: description: Local represents directly-attached storage with node affinity properties: path: description: The full path to the volume on the node For alpha, this path must be a directory Once block as a source is supported, then this path can point to a block device type: string required: - path io.k8s.api.core.v1.NFSVolumeSource: description: Represents an NFS mount that lasts the lifetime of a pod. NFS volumes do not support ownership management or SELinux relabeling. properties: path: description: "Path that is exported by the NFS server. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs" type: string readOnly: description: "ReadOnly here will force the NFS export to be mounted with read-only permissions. Defaults to false. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs" type: boolean server: description: "Server is the hostname or IP address of the NFS server. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs" type: string required: - server - path io.k8s.api.core.v1.Namespace: description: Namespace provides a scope for Names. Use of multiple namespaces is optional. 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/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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" description: "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata" spec: $ref: "#/definitions/io.k8s.api.core.v1.NamespaceSpec" description: "Spec defines the behavior of the Namespace. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status" status: $ref: "#/definitions/io.k8s.api.core.v1.NamespaceStatus" description: "Status describes the current status of a Namespace. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status" x-kubernetes-group-version-kind: - group: "" kind: Namespace version: v1 io.k8s.api.core.v1.NamespaceList: description: NamespaceList is a list of Namespaces. 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/api-conventions.md#resources" type: string items: description: "Items is the list of Namespace objects in the list. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/" items: $ref: "#/definitions/io.k8s.api.core.v1.Namespace" type: array 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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" description: "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds" required: - items x-kubernetes-group-version-kind: - group: "" kind: NamespaceList version: v1 io.k8s.api.core.v1.NamespaceSpec: description: NamespaceSpec describes the attributes on a Namespace. properties: finalizers: description: "Finalizers is an opaque list of values that must be empty to permanently remove object from storage. More info: https://kubernetes.io/docs/tasks/administer-cluster/namespaces/" items: type: string type: array io.k8s.api.core.v1.NamespaceStatus: description: NamespaceStatus is information about the current status of a Namespace. properties: phase: description: "Phase is the current lifecycle phase of the namespace. More info: https://kubernetes.io/docs/tasks/administer-cluster/namespaces/" type: string io.k8s.api.core.v1.Node: description: Node is a worker node in Kubernetes. Each node will have a unique identifier in the cache (i.e. in etcd). 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/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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" description: "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata" spec: $ref: "#/definitions/io.k8s.api.core.v1.NodeSpec" description: Spec defines the behavior of a node. https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status status: $ref: "#/definitions/io.k8s.api.core.v1.NodeStatus" description: "Most recently observed status of the node. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status" x-kubernetes-group-version-kind: - group: "" kind: Node version: v1 io.k8s.api.core.v1.NodeAddress: description: NodeAddress contains information for the node's address. properties: address: description: The node address. type: string type: description: Node address type, one of Hostname, ExternalIP or InternalIP. type: string required: - type - address io.k8s.api.core.v1.NodeAffinity: description: Node affinity is a group of node affinity scheduling rules. properties: preferredDuringSchedulingIgnoredDuringExecution: description: The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding "weight" to the sum if the node matches the corresponding matchExpressions; the node(s) with the highest sum are the most preferred. items: $ref: "#/definitions/io.k8s.api.core.v1.PreferredSchedulingTerm" type: array requiredDuringSchedulingIgnoredDuringExecution: $ref: "#/definitions/io.k8s.api.core.v1.NodeSelector" description: If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to an update), the system may or may not try to eventually evict the pod from its node. io.k8s.api.core.v1.NodeCondition: description: NodeCondition contains condition information for a node. properties: lastHeartbeatTime: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time" description: Last time we got an update on a given condition. lastTransitionTime: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time" description: Last time the condition transit from one status to another. message: description: Human readable message indicating details about last transition. type: string reason: description: (brief) reason for the condition's last transition. type: string status: description: Status of the condition, one of True, False, Unknown. type: string type: description: Type of node condition. type: string required: - type - status io.k8s.api.core.v1.NodeConfigSource: description: NodeConfigSource specifies a source of node configuration. Exactly one subfield (excluding metadata) must be non-nil. 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/api-conventions.md#resources" type: string configMapRef: $ref: "#/definitions/io.k8s.api.core.v1.ObjectReference" 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/api-conventions.md#types-kinds" type: string x-kubernetes-group-version-kind: - group: "" kind: NodeConfigSource version: v1 io.k8s.api.core.v1.NodeDaemonEndpoints: description: NodeDaemonEndpoints lists ports opened by daemons running on the Node. properties: kubeletEndpoint: $ref: "#/definitions/io.k8s.api.core.v1.DaemonEndpoint" description: Endpoint on which Kubelet is listening. io.k8s.api.core.v1.NodeList: description: NodeList is the whole list of all Nodes which have been registered with master. 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/api-conventions.md#resources" type: string items: description: List of nodes items: $ref: "#/definitions/io.k8s.api.core.v1.Node" type: array 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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" description: "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds" required: - items x-kubernetes-group-version-kind: - group: "" kind: NodeList version: v1 io.k8s.api.core.v1.NodeSelector: description: A node selector represents the union of the results of one or more label queries over a set of nodes; that is, it represents the OR of the selectors represented by the node selector terms. properties: nodeSelectorTerms: description: Required. A list of node selector terms. The terms are ORed. items: $ref: "#/definitions/io.k8s.api.core.v1.NodeSelectorTerm" type: array required: - nodeSelectorTerms io.k8s.api.core.v1.NodeSelectorRequirement: description: A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values. properties: key: description: The label key that the selector applies to. type: string operator: description: Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt. type: string values: description: 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. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch. items: type: string type: array required: - key - operator io.k8s.api.core.v1.NodeSelectorTerm: description: A null or empty node selector term matches no objects. properties: matchExpressions: description: Required. A list of node selector requirements. The requirements are ANDed. items: $ref: "#/definitions/io.k8s.api.core.v1.NodeSelectorRequirement" type: array required: - matchExpressions io.k8s.api.core.v1.NodeSpec: description: NodeSpec describes the attributes that a node is created with. properties: configSource: $ref: "#/definitions/io.k8s.api.core.v1.NodeConfigSource" description: If specified, the source to get node configuration from The DynamicKubeletConfig feature gate must be enabled for the Kubelet to use this field externalID: description: External ID of the node assigned by some machine database (e.g. a cloud provider). Deprecated. type: string podCIDR: description: PodCIDR represents the pod IP range assigned to the node. type: string providerID: description: "ID of the node assigned by the cloud provider in the format: ://" type: string taints: description: If specified, the node's taints. items: $ref: "#/definitions/io.k8s.api.core.v1.Taint" type: array unschedulable: description: "Unschedulable controls node schedulability of new pods. By default, node is schedulable. More info: https://kubernetes.io/docs/concepts/nodes/node/#manual-node-administration" type: boolean io.k8s.api.core.v1.NodeStatus: description: NodeStatus is information about the current status of a node. properties: addresses: description: "List of addresses reachable to the node. Queried from cloud provider, if available. More info: https://kubernetes.io/docs/concepts/nodes/node/#addresses" items: $ref: "#/definitions/io.k8s.api.core.v1.NodeAddress" type: array x-kubernetes-patch-merge-key: type x-kubernetes-patch-strategy: merge allocatable: additionalProperties: $ref: "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity" description: Allocatable represents the resources of a node that are available for scheduling. Defaults to Capacity. type: object capacity: additionalProperties: $ref: "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity" description: "Capacity represents the total resources of a node. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#capacity" type: object conditions: description: "Conditions is an array of current observed node conditions. More info: https://kubernetes.io/docs/concepts/nodes/node/#condition" items: $ref: "#/definitions/io.k8s.api.core.v1.NodeCondition" type: array x-kubernetes-patch-merge-key: type x-kubernetes-patch-strategy: merge daemonEndpoints: $ref: "#/definitions/io.k8s.api.core.v1.NodeDaemonEndpoints" description: Endpoints of daemons running on the Node. images: description: List of container images on this node items: $ref: "#/definitions/io.k8s.api.core.v1.ContainerImage" type: array nodeInfo: $ref: "#/definitions/io.k8s.api.core.v1.NodeSystemInfo" description: "Set of ids/uuids to uniquely identify the node. More info: https://kubernetes.io/docs/concepts/nodes/node/#info" phase: description: "NodePhase is the recently observed lifecycle phase of the node. More info: https://kubernetes.io/docs/concepts/nodes/node/#phase The field is never populated, and now is deprecated." type: string volumesAttached: description: List of volumes that are attached to the node. items: $ref: "#/definitions/io.k8s.api.core.v1.AttachedVolume" type: array volumesInUse: description: List of attachable volumes in use (mounted) by the node. items: type: string type: array io.k8s.api.core.v1.NodeSystemInfo: description: NodeSystemInfo is a set of ids/uuids to uniquely identify the node. properties: architecture: description: The Architecture reported by the node type: string bootID: description: Boot ID reported by the node. type: string containerRuntimeVersion: description: ContainerRuntime Version reported by the node through runtime remote API (e.g. docker://1.5.0). type: string kernelVersion: description: Kernel Version reported by the node from 'uname -r' (e.g. 3.16.0-0.bpo.4-amd64). type: string kubeProxyVersion: description: KubeProxy Version reported by the node. type: string kubeletVersion: description: Kubelet Version reported by the node. type: string machineID: description: "MachineID reported by the node. For unique machine identification in the cluster this field is preferred. Learn more from man(5) machine-id: http://man7.org/linux/man-pages/man5/machine-id.5.html" type: string operatingSystem: description: The Operating System reported by the node type: string osImage: description: OS Image reported by the node from /etc/os-release (e.g. Debian GNU/Linux 7 (wheezy)). type: string systemUUID: description: SystemUUID reported by the node. For unique machine identification MachineID is preferred. This field is specific to Red Hat hosts https://access.redhat.com/documentation/en-US/Red_Hat_Subscription_Management/1/html/RHSM/getting-system-uuid.html type: string required: - machineID - systemUUID - bootID - kernelVersion - osImage - containerRuntimeVersion - kubeletVersion - kubeProxyVersion - operatingSystem - architecture io.k8s.api.core.v1.ObjectFieldSelector: description: ObjectFieldSelector selects an APIVersioned field of an object. properties: apiVersion: description: Version of the schema the FieldPath is written in terms of, defaults to "v1". type: string fieldPath: description: Path of the field to select in the specified API version. type: string required: - fieldPath io.k8s.api.core.v1.ObjectReference: description: ObjectReference contains enough information to let you inspect or modify the referred object. properties: apiVersion: description: API version of the referent. type: string fieldPath: description: 'If referring to a piece of an object instead of an entire object, this string should contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2]. For example, if the object reference is to a container within a pod, this would take on a value like: "spec.containers{name}" (where "name" refers to the name of the container that triggered the event) or if no container name is specified "spec.containers[2]" (container with index 2 in this pod). This syntax is chosen only to have some well-defined way of referencing a part of an object.' type: string kind: description: "Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds" type: string name: description: "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names" type: string namespace: description: "Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/" type: string resourceVersion: description: "Specific resourceVersion to which this reference is made, if any. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#concurrency-control-and-consistency" type: string uid: description: "UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids" type: string io.k8s.api.core.v1.PersistentVolume: description: "PersistentVolume (PV) is a storage resource provisioned by an administrator. It is analogous to a node. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes" 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/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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" description: "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata" spec: $ref: "#/definitions/io.k8s.api.core.v1.PersistentVolumeSpec" description: "Spec defines a specification of a persistent volume owned by the cluster. Provisioned by an administrator. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistent-volumes" status: $ref: "#/definitions/io.k8s.api.core.v1.PersistentVolumeStatus" description: "Status represents the current information/status for the persistent volume. Populated by the system. Read-only. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistent-volumes" x-kubernetes-group-version-kind: - group: "" kind: PersistentVolume version: v1 io.k8s.api.core.v1.PersistentVolumeClaim: description: PersistentVolumeClaim is a user's request for and claim to a persistent volume 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/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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" description: "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata" spec: $ref: "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaimSpec" description: "Spec defines the desired characteristics of a volume requested by a pod author. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims" status: $ref: "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaimStatus" description: "Status represents the current information/status of a persistent volume claim. Read-only. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims" x-kubernetes-group-version-kind: - group: "" kind: PersistentVolumeClaim version: v1 io.k8s.api.core.v1.PersistentVolumeClaimCondition: description: PersistentVolumeClaimCondition contails details about state of pvc properties: lastProbeTime: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time" description: Last time we probed the condition. lastTransitionTime: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time" description: Last time the condition transitioned from one status to another. message: description: Human-readable message indicating details about last transition. type: string reason: description: Unique, this should be a short, machine understandable string that gives the reason for condition's last transition. If it reports "ResizeStarted" that means the underlying persistent volume is being resized. type: string status: type: string type: type: string required: - type - status io.k8s.api.core.v1.PersistentVolumeClaimList: description: PersistentVolumeClaimList is a list of PersistentVolumeClaim 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/api-conventions.md#resources" type: string items: description: "A list of persistent volume claims. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims" items: $ref: "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaim" type: array 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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" description: "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds" required: - items x-kubernetes-group-version-kind: - group: "" kind: PersistentVolumeClaimList version: v1 io.k8s.api.core.v1.PersistentVolumeClaimSpec: description: PersistentVolumeClaimSpec describes the common attributes of storage devices and allows a Source for provider-specific attributes properties: accessModes: description: "AccessModes contains the desired access modes the volume should have. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1" items: type: string type: array resources: $ref: "#/definitions/io.k8s.api.core.v1.ResourceRequirements" description: "Resources represents the minimum resources the volume should have. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources" selector: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector" description: A label query over volumes to consider for binding. storageClassName: description: "Name of the StorageClass required by the claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#class-1" type: string volumeMode: description: volumeMode defines what type of volume is required by the claim. Value of Filesystem is implied when not included in claim spec. This is an alpha feature and may change in the future. type: string volumeName: description: VolumeName is the binding reference to the PersistentVolume backing this claim. type: string io.k8s.api.core.v1.PersistentVolumeClaimStatus: description: PersistentVolumeClaimStatus is the current status of a persistent volume claim. properties: accessModes: description: "AccessModes contains the actual access modes the volume backing the PVC has. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1" items: type: string type: array capacity: additionalProperties: $ref: "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity" description: Represents the actual resources of the underlying volume. type: object conditions: description: Current Condition of persistent volume claim. If underlying persistent volume is being resized then the Condition will be set to 'ResizeStarted'. items: $ref: "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaimCondition" type: array x-kubernetes-patch-merge-key: type x-kubernetes-patch-strategy: merge phase: description: Phase represents the current phase of PersistentVolumeClaim. type: string io.k8s.api.core.v1.PersistentVolumeClaimVolumeSource: description: PersistentVolumeClaimVolumeSource references the user's PVC in the same namespace. This volume finds the bound PV and mounts that volume for the pod. A PersistentVolumeClaimVolumeSource is, essentially, a wrapper around another type of volume that is owned by someone else (the system). properties: claimName: description: "ClaimName is the name of a PersistentVolumeClaim in the same namespace as the pod using this volume. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims" type: string readOnly: description: Will force the ReadOnly setting in VolumeMounts. Default false. type: boolean required: - claimName io.k8s.api.core.v1.PersistentVolumeList: description: PersistentVolumeList is a list of PersistentVolume 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/api-conventions.md#resources" type: string items: description: "List of persistent volumes. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes" items: $ref: "#/definitions/io.k8s.api.core.v1.PersistentVolume" type: array 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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" description: "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds" required: - items x-kubernetes-group-version-kind: - group: "" kind: PersistentVolumeList version: v1 io.k8s.api.core.v1.PersistentVolumeSpec: description: PersistentVolumeSpec is the specification of a persistent volume. properties: accessModes: description: "AccessModes contains all ways the volume can be mounted. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes" items: type: string type: array awsElasticBlockStore: $ref: "#/definitions/io.k8s.api.core.v1.AWSElasticBlockStoreVolumeSource" description: "AWSElasticBlockStore represents an AWS Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore" azureDisk: $ref: "#/definitions/io.k8s.api.core.v1.AzureDiskVolumeSource" description: AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod. azureFile: $ref: "#/definitions/io.k8s.api.core.v1.AzureFilePersistentVolumeSource" description: AzureFile represents an Azure File Service mount on the host and bind mount to the pod. capacity: additionalProperties: $ref: "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity" description: "A description of the persistent volume's resources and capacity. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#capacity" type: object cephfs: $ref: "#/definitions/io.k8s.api.core.v1.CephFSPersistentVolumeSource" description: CephFS represents a Ceph FS mount on the host that shares a pod's lifetime cinder: $ref: "#/definitions/io.k8s.api.core.v1.CinderVolumeSource" description: "Cinder represents a cinder volume attached and mounted on kubelets host machine More info: https://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md" claimRef: $ref: "#/definitions/io.k8s.api.core.v1.ObjectReference" description: "ClaimRef is part of a bi-directional binding between PersistentVolume and PersistentVolumeClaim. Expected to be non-nil when bound. claim.VolumeName is the authoritative bind between PV and PVC. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#binding" csi: $ref: "#/definitions/io.k8s.api.core.v1.CSIPersistentVolumeSource" description: CSI represents storage that handled by an external CSI driver (Beta feature). fc: $ref: "#/definitions/io.k8s.api.core.v1.FCVolumeSource" description: FC represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod. flexVolume: $ref: "#/definitions/io.k8s.api.core.v1.FlexPersistentVolumeSource" description: FlexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin. flocker: $ref: "#/definitions/io.k8s.api.core.v1.FlockerVolumeSource" description: Flocker represents a Flocker volume attached to a kubelet's host machine and exposed to the pod for its usage. This depends on the Flocker control service being running gcePersistentDisk: $ref: "#/definitions/io.k8s.api.core.v1.GCEPersistentDiskVolumeSource" description: "GCEPersistentDisk represents a GCE Disk resource that is attached to a kubelet's host machine and then exposed to the pod. Provisioned by an admin. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk" glusterfs: $ref: "#/definitions/io.k8s.api.core.v1.GlusterfsVolumeSource" description: "Glusterfs represents a Glusterfs volume that is attached to a host and exposed to the pod. Provisioned by an admin. More info: https://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md" hostPath: $ref: "#/definitions/io.k8s.api.core.v1.HostPathVolumeSource" description: "HostPath represents a directory on the host. Provisioned by a developer or tester. This is useful for single-node development and testing only! On-host storage is not supported in any way and WILL NOT WORK in a multi-node cluster. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath" iscsi: $ref: "#/definitions/io.k8s.api.core.v1.ISCSIPersistentVolumeSource" description: ISCSI represents an ISCSI Disk resource that is attached to a kubelet's host machine and then exposed to the pod. Provisioned by an admin. local: $ref: "#/definitions/io.k8s.api.core.v1.LocalVolumeSource" description: Local represents directly-attached storage with node affinity mountOptions: description: 'A list of mount options, e.g. ["ro", "soft"]. Not validated - mount will simply fail if one is invalid. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes/#mount-options' items: type: string type: array nfs: $ref: "#/definitions/io.k8s.api.core.v1.NFSVolumeSource" description: "NFS represents an NFS mount on the host. Provisioned by an admin. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs" nodeAffinity: $ref: "#/definitions/io.k8s.api.core.v1.VolumeNodeAffinity" description: NodeAffinity defines constraints that limit what nodes this volume can be accessed from. This field influences the scheduling of pods that use this volume. persistentVolumeReclaimPolicy: description: "What happens to a persistent volume when released from its claim. Valid options are Retain (default for manually created PersistentVolumes), Delete (default for dynamically provisioned PersistentVolumes), and Recycle (deprecated). Recycle must be supported by the volume plugin underlying this PersistentVolume. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#reclaiming" type: string photonPersistentDisk: $ref: "#/definitions/io.k8s.api.core.v1.PhotonPersistentDiskVolumeSource" description: PhotonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine portworxVolume: $ref: "#/definitions/io.k8s.api.core.v1.PortworxVolumeSource" description: PortworxVolume represents a portworx volume attached and mounted on kubelets host machine quobyte: $ref: "#/definitions/io.k8s.api.core.v1.QuobyteVolumeSource" description: Quobyte represents a Quobyte mount on the host that shares a pod's lifetime rbd: $ref: "#/definitions/io.k8s.api.core.v1.RBDPersistentVolumeSource" description: "RBD represents a Rados Block Device mount on the host that shares a pod's lifetime. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md" scaleIO: $ref: "#/definitions/io.k8s.api.core.v1.ScaleIOPersistentVolumeSource" description: ScaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes. storageClassName: description: Name of StorageClass to which this persistent volume belongs. Empty value means that this volume does not belong to any StorageClass. type: string storageos: $ref: "#/definitions/io.k8s.api.core.v1.StorageOSPersistentVolumeSource" description: "StorageOS represents a StorageOS volume that is attached to the kubelet's host machine and mounted into the pod More info: https://releases.k8s.io/HEAD/examples/volumes/storageos/README.md" volumeMode: description: volumeMode defines if a volume is intended to be used with a formatted filesystem or to remain in raw block state. Value of Filesystem is implied when not included in spec. This is an alpha feature and may change in the future. type: string vsphereVolume: $ref: "#/definitions/io.k8s.api.core.v1.VsphereVirtualDiskVolumeSource" description: VsphereVolume represents a vSphere volume attached and mounted on kubelets host machine io.k8s.api.core.v1.PersistentVolumeStatus: description: PersistentVolumeStatus is the current status of a persistent volume. properties: message: description: A human-readable message indicating details about why the volume is in this state. type: string phase: description: "Phase indicates if a volume is available, bound to a claim, or released by a claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#phase" type: string reason: description: Reason is a brief CamelCase string that describes any failure and is meant for machine parsing and tidy display in the CLI. type: string io.k8s.api.core.v1.PhotonPersistentDiskVolumeSource: description: Represents a Photon Controller persistent disk resource. properties: fsType: description: Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. type: string pdID: description: ID that identifies Photon Controller persistent disk type: string required: - pdID io.k8s.api.core.v1.Pod: description: Pod is a collection of containers that can run on a host. This resource is created by clients and scheduled onto hosts. 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/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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" description: "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata" spec: $ref: "#/definitions/io.k8s.api.core.v1.PodSpec" description: "Specification of the desired behavior of the pod. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status" status: $ref: "#/definitions/io.k8s.api.core.v1.PodStatus" description: "Most recently observed status of the pod. This data may not be up to date. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status" x-kubernetes-group-version-kind: - group: "" kind: Pod version: v1 io.k8s.api.core.v1.PodAffinity: description: Pod affinity is a group of inter pod affinity scheduling rules. properties: preferredDuringSchedulingIgnoredDuringExecution: description: The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding "weight" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred. items: $ref: "#/definitions/io.k8s.api.core.v1.WeightedPodAffinityTerm" type: array requiredDuringSchedulingIgnoredDuringExecution: description: If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied. items: $ref: "#/definitions/io.k8s.api.core.v1.PodAffinityTerm" type: array io.k8s.api.core.v1.PodAffinityTerm: description: Defines a set of pods (namely those matching the labelSelector relative to the given namespace(s)) that this pod should be co-located (affinity) or not co-located (anti-affinity) with, where co-located is defined as running on a node whose value of the label with key matches that of any node on which a pod of the set of pods is running properties: labelSelector: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector" description: A label query over a set of resources, in this case pods. namespaces: description: namespaces specifies which namespaces the labelSelector applies to (matches against); null or empty list means "this pod's namespace" items: type: string type: array topologyKey: description: This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed. type: string required: - topologyKey io.k8s.api.core.v1.PodAntiAffinity: description: Pod anti affinity is a group of inter pod anti affinity scheduling rules. properties: preferredDuringSchedulingIgnoredDuringExecution: description: The scheduler will prefer to schedule pods to nodes that satisfy the anti-affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling anti-affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding "weight" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred. items: $ref: "#/definitions/io.k8s.api.core.v1.WeightedPodAffinityTerm" type: array requiredDuringSchedulingIgnoredDuringExecution: description: If the anti-affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the anti-affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied. items: $ref: "#/definitions/io.k8s.api.core.v1.PodAffinityTerm" type: array io.k8s.api.core.v1.PodCondition: description: PodCondition contains details for the current condition of this pod. properties: lastProbeTime: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time" description: Last time we probed the condition. lastTransitionTime: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time" description: Last time the condition transitioned from one status to another. message: description: Human-readable message indicating details about last transition. type: string reason: description: Unique, one-word, CamelCase reason for the condition's last transition. type: string status: description: "Status is the status of the condition. Can be True, False, Unknown. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-conditions" type: string type: description: "Type is the type of the condition. Currently only Ready. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-conditions" type: string required: - type - status io.k8s.api.core.v1.PodDNSConfig: description: PodDNSConfig defines the DNS parameters of a pod in addition to those generated from DNSPolicy. properties: nameservers: description: A list of DNS name server IP addresses. This will be appended to the base nameservers generated from DNSPolicy. Duplicated nameservers will be removed. items: type: string type: array options: description: A list of DNS resolver options. This will be merged with the base options generated from DNSPolicy. Duplicated entries will be removed. Resolution options given in Options will override those that appear in the base DNSPolicy. items: $ref: "#/definitions/io.k8s.api.core.v1.PodDNSConfigOption" type: array searches: description: A list of DNS search domains for host-name lookup. This will be appended to the base search paths generated from DNSPolicy. Duplicated search paths will be removed. items: type: string type: array io.k8s.api.core.v1.PodDNSConfigOption: description: PodDNSConfigOption defines DNS resolver options of a pod. properties: name: description: Required. type: string value: type: string io.k8s.api.core.v1.PodList: description: PodList is a list of Pods. 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/api-conventions.md#resources" type: string items: description: "List of pods. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md" items: $ref: "#/definitions/io.k8s.api.core.v1.Pod" type: array 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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" description: "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds" required: - items x-kubernetes-group-version-kind: - group: "" kind: PodList version: v1 io.k8s.api.core.v1.PodSecurityContext: description: PodSecurityContext holds pod-level security attributes and common container settings. Some fields are also present in container.securityContext. Field values of container.securityContext take precedence over field values of PodSecurityContext. properties: fsGroup: description: |- A special supplemental group that applies to all containers in a pod. Some volume types allow the Kubelet to change the ownership of that volume to be owned by the pod: 1. The owning GID will be the FSGroup 2. The setgid bit is set (new files created in the volume will be owned by FSGroup) 3. The permission bits are OR'd with rw-rw---- If unset, the Kubelet will not modify the ownership and permissions of any volume. format: int64 type: integer runAsGroup: description: The GID to run the entrypoint of the container process. Uses runtime default if unset. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container. format: int64 type: integer runAsNonRoot: description: Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. type: boolean runAsUser: description: The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container. format: int64 type: integer seLinuxOptions: $ref: "#/definitions/io.k8s.api.core.v1.SELinuxOptions" description: The SELinux context to be applied to all containers. If unspecified, the container runtime will allocate a random SELinux context for each container. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container. supplementalGroups: description: A list of groups applied to the first process run in each container, in addition to the container's primary GID. If unspecified, no groups will be added to any container. items: format: int64 type: integer type: array io.k8s.api.core.v1.PodSpec: description: PodSpec is a description of a pod. properties: activeDeadlineSeconds: description: Optional duration in seconds the pod may be active on the node relative to StartTime before the system will actively try to mark it failed and kill associated containers. Value must be a positive integer. format: int64 type: integer affinity: $ref: "#/definitions/io.k8s.api.core.v1.Affinity" description: If specified, the pod's scheduling constraints automountServiceAccountToken: description: AutomountServiceAccountToken indicates whether a service account token should be automatically mounted. type: boolean containers: description: List of containers belonging to the pod. Containers cannot currently be added or removed. There must be at least one container in a Pod. Cannot be updated. items: $ref: "#/definitions/io.k8s.api.core.v1.Container" type: array x-kubernetes-patch-merge-key: name x-kubernetes-patch-strategy: merge dnsConfig: $ref: "#/definitions/io.k8s.api.core.v1.PodDNSConfig" description: Specifies the DNS parameters of a pod. Parameters specified here will be merged to the generated DNS configuration based on DNSPolicy. dnsPolicy: description: Set DNS policy for the pod. Defaults to "ClusterFirst". Valid values are 'ClusterFirstWithHostNet', 'ClusterFirst', 'Default' or 'None'. DNS parameters given in DNSConfig will be merged with the policy selected with DNSPolicy. To have DNS options set along with hostNetwork, you have to specify DNS policy explicitly to 'ClusterFirstWithHostNet'. type: string hostAliases: description: HostAliases is an optional list of hosts and IPs that will be injected into the pod's hosts file if specified. This is only valid for non-hostNetwork pods. items: $ref: "#/definitions/io.k8s.api.core.v1.HostAlias" type: array x-kubernetes-patch-merge-key: ip x-kubernetes-patch-strategy: merge hostIPC: description: "Use the host's ipc namespace. Optional: Default to false." type: boolean hostNetwork: description: Host networking requested for this pod. Use the host's network namespace. If this option is set, the ports that will be used must be specified. Default to false. type: boolean hostPID: description: "Use the host's pid namespace. Optional: Default to false." type: boolean hostname: description: Specifies the hostname of the Pod If not specified, the pod's hostname will be set to a system-defined value. type: string imagePullSecrets: description: "ImagePullSecrets is an optional list of references to secrets in the same namespace to use for pulling any of the images used by this PodSpec. If specified, these secrets will be passed to individual puller implementations for them to use. For example, in the case of docker, only DockerConfig type secrets are honored. More info: https://kubernetes.io/docs/concepts/containers/images#specifying-imagepullsecrets-on-a-pod" items: $ref: "#/definitions/io.k8s.api.core.v1.LocalObjectReference" type: array x-kubernetes-patch-merge-key: name x-kubernetes-patch-strategy: merge initContainers: description: "List of initialization containers belonging to the pod. Init containers are executed in order prior to containers being started. If any init container fails, the pod is considered to have failed and is handled according to its restartPolicy. The name for an init container or normal container must be unique among all containers. Init containers may not have Lifecycle actions, Readiness probes, or Liveness probes. The resourceRequirements of an init container are taken into account during scheduling by finding the highest request/limit for each resource type, and then using the max of of that value or the sum of the normal containers. Limits are applied to init containers in a similar fashion. Init containers cannot currently be added or removed. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/init-containers/" items: $ref: "#/definitions/io.k8s.api.core.v1.Container" type: array x-kubernetes-patch-merge-key: name x-kubernetes-patch-strategy: merge nodeName: description: NodeName is a request to schedule this pod onto a specific node. If it is non-empty, the scheduler simply schedules this pod onto that node, assuming that it fits resource requirements. type: string nodeSelector: additionalProperties: type: string description: "NodeSelector is a selector which must be true for the pod to fit on a node. Selector which must match a node's labels for the pod to be scheduled on that node. More info: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/" type: object priority: description: The priority value. Various system components use this field to find the priority of the pod. When Priority Admission Controller is enabled, it prevents users from setting this field. The admission controller populates this field from PriorityClassName. The higher the value, the higher the priority. format: int32 type: integer priorityClassName: description: If specified, indicates the pod's priority. "system-node-critical" and "system-cluster-critical" are two special keywords which indicate the highest priorities with the former being the highest priority. Any other name must be defined by creating a PriorityClass object with that name. If not specified, the pod priority will be default or zero if there is no default. type: string restartPolicy: description: "Restart policy for all containers within the pod. One of Always, OnFailure, Never. Default to Always. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle/#restart-policy" type: string schedulerName: description: If specified, the pod will be dispatched by specified scheduler. If not specified, the pod will be dispatched by default scheduler. type: string securityContext: $ref: "#/definitions/io.k8s.api.core.v1.PodSecurityContext" description: "SecurityContext holds pod-level security attributes and common container settings. Optional: Defaults to empty. See type description for default values of each field." serviceAccount: description: "DeprecatedServiceAccount is a depreciated alias for ServiceAccountName. Deprecated: Use serviceAccountName instead." type: string serviceAccountName: description: "ServiceAccountName is the name of the ServiceAccount to use to run this pod. More info: https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/" type: string shareProcessNamespace: description: "Share a single process namespace between all of the containers in a pod. When this is set containers will be able to view and signal processes from other containers in the same pod, and the first process in each container will not be assigned PID 1. HostPID and ShareProcessNamespace cannot both be set. Optional: Default to false. This field is alpha-level and is honored only by servers that enable the PodShareProcessNamespace feature." type: boolean subdomain: description: If specified, the fully qualified Pod hostname will be "...svc.". If not specified, the pod will not have a domainname at all. type: string terminationGracePeriodSeconds: description: Optional duration in seconds the pod needs to terminate gracefully. May be decreased in delete request. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period will be used instead. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. Defaults to 30 seconds. format: int64 type: integer tolerations: description: If specified, the pod's tolerations. items: $ref: "#/definitions/io.k8s.api.core.v1.Toleration" type: array volumes: description: "List of volumes that can be mounted by containers belonging to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes" items: $ref: "#/definitions/io.k8s.api.core.v1.Volume" type: array x-kubernetes-patch-merge-key: name x-kubernetes-patch-strategy: merge,retainKeys required: - containers io.k8s.api.core.v1.PodStatus: description: PodStatus represents information about the status of a pod. Status may trail the actual state of a system. properties: conditions: description: "Current service state of pod. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-conditions" items: $ref: "#/definitions/io.k8s.api.core.v1.PodCondition" type: array x-kubernetes-patch-merge-key: type x-kubernetes-patch-strategy: merge containerStatuses: description: "The list has one entry per container in the manifest. Each entry is currently the output of `docker inspect`. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-and-container-status" items: $ref: "#/definitions/io.k8s.api.core.v1.ContainerStatus" type: array hostIP: description: IP address of the host to which the pod is assigned. Empty if not yet scheduled. type: string initContainerStatuses: description: "The list has one entry per init container in the manifest. The most recent successful init container will have ready = true, the most recently started container will have startTime set. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-and-container-status" items: $ref: "#/definitions/io.k8s.api.core.v1.ContainerStatus" type: array message: description: A human readable message indicating details about why the pod is in this condition. type: string nominatedNodeName: description: nominatedNodeName is set only when this pod preempts other pods on the node, but it cannot be scheduled right away as preemption victims receive their graceful termination periods. This field does not guarantee that the pod will be scheduled on this node. Scheduler may decide to place the pod elsewhere if other nodes become available sooner. Scheduler may also decide to give the resources on this node to a higher priority pod that is created after preemption. As a result, this field may be different than PodSpec.nodeName when the pod is scheduled. type: string phase: description: "Current condition of the pod. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-phase" type: string podIP: description: IP address allocated to the pod. Routable at least within the cluster. Empty if not yet allocated. type: string qosClass: description: "The Quality of Service (QOS) classification assigned to the pod based on resource requirements See PodQOSClass type for available QOS classes More info: https://git.k8s.io/community/contributors/design-proposals/node/resource-qos.md" type: string reason: description: A brief CamelCase message indicating details about why the pod is in this state. e.g. 'Evicted' type: string startTime: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time" description: RFC 3339 date and time at which the object was acknowledged by the Kubelet. This is before the Kubelet pulled the container image(s) for the pod. io.k8s.api.core.v1.PodTemplate: description: PodTemplate describes a template for creating copies of a predefined pod. 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/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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" description: "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata" template: $ref: "#/definitions/io.k8s.api.core.v1.PodTemplateSpec" description: Template defines the pods that will be created from this pod template. https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status x-kubernetes-group-version-kind: - group: "" kind: PodTemplate version: v1 io.k8s.api.core.v1.PodTemplateList: description: PodTemplateList is a list of PodTemplates. 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/api-conventions.md#resources" type: string items: description: List of pod templates items: $ref: "#/definitions/io.k8s.api.core.v1.PodTemplate" type: array 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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" description: "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds" required: - items x-kubernetes-group-version-kind: - group: "" kind: PodTemplateList version: v1 io.k8s.api.core.v1.PodTemplateSpec: description: PodTemplateSpec describes the data a pod should have when created from a template properties: metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" description: "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata" spec: $ref: "#/definitions/io.k8s.api.core.v1.PodSpec" description: "Specification of the desired behavior of the pod. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status" io.k8s.api.core.v1.PortworxVolumeSource: description: PortworxVolumeSource represents a Portworx volume resource. properties: fsType: description: FSType represents the filesystem type to mount Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs". Implicitly inferred to be "ext4" if unspecified. type: string readOnly: description: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. type: boolean volumeID: description: VolumeID uniquely identifies a Portworx volume type: string required: - volumeID io.k8s.api.core.v1.PreferredSchedulingTerm: description: An empty preferred scheduling term matches all objects with implicit weight 0 (i.e. it's a no-op). A null preferred scheduling term matches no objects (i.e. is also a no-op). properties: preference: $ref: "#/definitions/io.k8s.api.core.v1.NodeSelectorTerm" description: A node selector term, associated with the corresponding weight. weight: description: Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100. format: int32 type: integer required: - weight - preference io.k8s.api.core.v1.Probe: description: Probe describes a health check to be performed against a container to determine whether it is alive or ready to receive traffic. properties: exec: $ref: "#/definitions/io.k8s.api.core.v1.ExecAction" description: One and only one of the following should be specified. Exec specifies the action to take. failureThreshold: description: Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1. format: int32 type: integer httpGet: $ref: "#/definitions/io.k8s.api.core.v1.HTTPGetAction" description: HTTPGet specifies the http request to perform. initialDelaySeconds: description: "Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes" format: int32 type: integer periodSeconds: description: How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1. format: int32 type: integer successThreshold: description: Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness. Minimum value is 1. format: int32 type: integer tcpSocket: $ref: "#/definitions/io.k8s.api.core.v1.TCPSocketAction" description: TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported timeoutSeconds: description: "Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes" format: int32 type: integer io.k8s.api.core.v1.ProjectedVolumeSource: description: Represents a projected volume source properties: defaultMode: description: Mode bits to use on created files by default. Must be a value between 0 and 0777. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set. format: int32 type: integer sources: description: list of volume projections items: $ref: "#/definitions/io.k8s.api.core.v1.VolumeProjection" type: array required: - sources io.k8s.api.core.v1.QuobyteVolumeSource: description: Represents a Quobyte mount that lasts the lifetime of a pod. Quobyte volumes do not support ownership management or SELinux relabeling. properties: group: description: Group to map volume access to Default is no group type: string readOnly: description: ReadOnly here will force the Quobyte volume to be mounted with read-only permissions. Defaults to false. type: boolean registry: description: Registry represents a single or multiple Quobyte Registry services specified as a string as host:port pair (multiple entries are separated with commas) which acts as the central registry for volumes type: string user: description: User to map volume access to Defaults to serivceaccount user type: string volume: description: Volume is a string that references an already created Quobyte volume by name. type: string required: - registry - volume io.k8s.api.core.v1.RBDPersistentVolumeSource: description: Represents a Rados Block Device mount that lasts the lifetime of a pod. RBD volumes support ownership management and SELinux relabeling. properties: fsType: description: 'Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#rbd' type: string image: description: "The rados image name. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it" type: string keyring: description: "Keyring is the path to key ring for RBDUser. Default is /etc/ceph/keyring. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it" type: string monitors: description: "A collection of Ceph monitors. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it" items: type: string type: array pool: description: "The rados pool name. Default is rbd. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it" type: string readOnly: description: "ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it" type: boolean secretRef: $ref: "#/definitions/io.k8s.api.core.v1.SecretReference" description: "SecretRef is name of the authentication secret for RBDUser. If provided overrides keyring. Default is nil. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it" user: description: "The rados user name. Default is admin. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it" type: string required: - monitors - image io.k8s.api.core.v1.RBDVolumeSource: description: Represents a Rados Block Device mount that lasts the lifetime of a pod. RBD volumes support ownership management and SELinux relabeling. properties: fsType: description: 'Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#rbd' type: string image: description: "The rados image name. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it" type: string keyring: description: "Keyring is the path to key ring for RBDUser. Default is /etc/ceph/keyring. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it" type: string monitors: description: "A collection of Ceph monitors. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it" items: type: string type: array pool: description: "The rados pool name. Default is rbd. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it" type: string readOnly: description: "ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it" type: boolean secretRef: $ref: "#/definitions/io.k8s.api.core.v1.LocalObjectReference" description: "SecretRef is name of the authentication secret for RBDUser. If provided overrides keyring. Default is nil. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it" user: description: "The rados user name. Default is admin. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it" type: string required: - monitors - image io.k8s.api.core.v1.ReplicationController: description: ReplicationController represents the configuration of a replication controller. 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/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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" description: "If the Labels of a ReplicationController are empty, they are defaulted to be the same as the Pod(s) that the replication controller manages. Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata" spec: $ref: "#/definitions/io.k8s.api.core.v1.ReplicationControllerSpec" description: "Spec defines the specification of the desired behavior of the replication controller. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status" status: $ref: "#/definitions/io.k8s.api.core.v1.ReplicationControllerStatus" description: "Status is the most recently observed status of the replication controller. This data may be out of date by some window of time. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status" x-kubernetes-group-version-kind: - group: "" kind: ReplicationController version: v1 io.k8s.api.core.v1.ReplicationControllerCondition: description: ReplicationControllerCondition describes the state of a replication controller at a certain point. properties: lastTransitionTime: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time" description: The last time the condition transitioned from one status to another. message: description: A human readable message indicating details about the transition. type: string reason: description: The reason for the condition's last transition. type: string status: description: Status of the condition, one of True, False, Unknown. type: string type: description: Type of replication controller condition. type: string required: - type - status io.k8s.api.core.v1.ReplicationControllerList: description: ReplicationControllerList is a collection of replication controllers. 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/api-conventions.md#resources" type: string items: description: "List of replication controllers. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller" items: $ref: "#/definitions/io.k8s.api.core.v1.ReplicationController" type: array 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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" description: "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds" required: - items x-kubernetes-group-version-kind: - group: "" kind: ReplicationControllerList version: v1 io.k8s.api.core.v1.ReplicationControllerSpec: description: ReplicationControllerSpec is the specification of a replication controller. properties: minReadySeconds: description: Minimum number of seconds for which a newly created pod should be ready without any of its container crashing, for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready) format: int32 type: integer replicas: description: "Replicas is the number of desired replicas. This is a pointer to distinguish between explicit zero and unspecified. Defaults to 1. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller#what-is-a-replicationcontroller" format: int32 type: integer selector: additionalProperties: type: string description: "Selector is a label query over pods that should match the Replicas count. If Selector is empty, it is defaulted to the labels present on the Pod template. Label keys and values that must match in order to be controlled by this replication controller, if empty defaulted to labels on Pod template. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors" type: object template: $ref: "#/definitions/io.k8s.api.core.v1.PodTemplateSpec" description: "Template is the object that describes the pod that will be created if insufficient replicas are detected. This takes precedence over a TemplateRef. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller#pod-template" io.k8s.api.core.v1.ReplicationControllerStatus: description: ReplicationControllerStatus represents the current status of a replication controller. properties: availableReplicas: description: The number of available replicas (ready for at least minReadySeconds) for this replication controller. format: int32 type: integer conditions: description: Represents the latest available observations of a replication controller's current state. items: $ref: "#/definitions/io.k8s.api.core.v1.ReplicationControllerCondition" type: array x-kubernetes-patch-merge-key: type x-kubernetes-patch-strategy: merge fullyLabeledReplicas: description: The number of pods that have labels matching the labels of the pod template of the replication controller. format: int32 type: integer observedGeneration: description: ObservedGeneration reflects the generation of the most recently observed replication controller. format: int64 type: integer readyReplicas: description: The number of ready replicas for this replication controller. format: int32 type: integer replicas: description: "Replicas is the most recently oberved number of replicas. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller#what-is-a-replicationcontroller" format: int32 type: integer required: - replicas io.k8s.api.core.v1.ResourceFieldSelector: description: ResourceFieldSelector represents container resources (cpu, memory) and their output format properties: containerName: description: "Container name: required for volumes, optional for env vars" type: string divisor: $ref: "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity" description: Specifies the output format of the exposed resources, defaults to "1" resource: description: "Required: resource to select" type: string required: - resource io.k8s.api.core.v1.ResourceQuota: description: ResourceQuota sets aggregate quota restrictions enforced per namespace 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/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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" description: "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata" spec: $ref: "#/definitions/io.k8s.api.core.v1.ResourceQuotaSpec" description: Spec defines the desired quota. https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status status: $ref: "#/definitions/io.k8s.api.core.v1.ResourceQuotaStatus" description: Status defines the actual enforced quota and its current usage. https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status x-kubernetes-group-version-kind: - group: "" kind: ResourceQuota version: v1 io.k8s.api.core.v1.ResourceQuotaList: description: ResourceQuotaList is a list of ResourceQuota 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/api-conventions.md#resources" type: string items: description: "Items is a list of ResourceQuota objects. More info: https://kubernetes.io/docs/concepts/policy/resource-quotas/" items: $ref: "#/definitions/io.k8s.api.core.v1.ResourceQuota" type: array 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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" description: "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds" required: - items x-kubernetes-group-version-kind: - group: "" kind: ResourceQuotaList version: v1 io.k8s.api.core.v1.ResourceQuotaSpec: description: ResourceQuotaSpec defines the desired hard limits to enforce for Quota. properties: hard: additionalProperties: $ref: "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity" description: "Hard is the set of desired hard limits for each named resource. More info: https://kubernetes.io/docs/concepts/policy/resource-quotas/" type: object scopes: description: A collection of filters that must match each object tracked by a quota. If not specified, the quota matches all objects. items: type: string type: array io.k8s.api.core.v1.ResourceQuotaStatus: description: ResourceQuotaStatus defines the enforced hard limits and observed use. properties: hard: additionalProperties: $ref: "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity" description: "Hard is the set of enforced hard limits for each named resource. More info: https://kubernetes.io/docs/concepts/policy/resource-quotas/" type: object used: additionalProperties: $ref: "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity" description: Used is the current observed total usage of the resource in the namespace. type: object io.k8s.api.core.v1.ResourceRequirements: description: ResourceRequirements describes the compute resource requirements. properties: limits: additionalProperties: $ref: "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity" description: "Limits describes the maximum amount of compute resources allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/" type: object requests: additionalProperties: $ref: "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity" description: "Requests describes the minimum amount of compute resources required. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/" type: object io.k8s.api.core.v1.SELinuxOptions: description: SELinuxOptions are the labels to be applied to the container properties: level: description: Level is SELinux level label that applies to the container. type: string role: description: Role is a SELinux role label that applies to the container. type: string type: description: Type is a SELinux type label that applies to the container. type: string user: description: User is a SELinux user label that applies to the container. type: string io.k8s.api.core.v1.ScaleIOPersistentVolumeSource: description: ScaleIOPersistentVolumeSource represents a persistent ScaleIO volume properties: fsType: description: Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. type: string gateway: description: The host address of the ScaleIO API Gateway. type: string protectionDomain: description: The name of the ScaleIO Protection Domain for the configured storage. type: string readOnly: description: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. type: boolean secretRef: $ref: "#/definitions/io.k8s.api.core.v1.SecretReference" description: SecretRef references to the secret for ScaleIO user and other sensitive information. If this is not provided, Login operation will fail. sslEnabled: description: Flag to enable/disable SSL communication with Gateway, default false type: boolean storageMode: description: Indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned. type: string storagePool: description: The ScaleIO Storage Pool associated with the protection domain. type: string system: description: The name of the storage system as configured in ScaleIO. type: string volumeName: description: The name of a volume already created in the ScaleIO system that is associated with this volume source. type: string required: - gateway - system - secretRef io.k8s.api.core.v1.ScaleIOVolumeSource: description: ScaleIOVolumeSource represents a persistent ScaleIO volume properties: fsType: description: Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. type: string gateway: description: The host address of the ScaleIO API Gateway. type: string protectionDomain: description: The name of the ScaleIO Protection Domain for the configured storage. type: string readOnly: description: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. type: boolean secretRef: $ref: "#/definitions/io.k8s.api.core.v1.LocalObjectReference" description: SecretRef references to the secret for ScaleIO user and other sensitive information. If this is not provided, Login operation will fail. sslEnabled: description: Flag to enable/disable SSL communication with Gateway, default false type: boolean storageMode: description: Indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned. type: string storagePool: description: The ScaleIO Storage Pool associated with the protection domain. type: string system: description: The name of the storage system as configured in ScaleIO. type: string volumeName: description: The name of a volume already created in the ScaleIO system that is associated with this volume source. type: string required: - gateway - system - secretRef io.k8s.api.core.v1.Secret: description: Secret holds secret data of a certain type. The total bytes of the values in the Data field must be less than MaxSecretSize bytes. 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/api-conventions.md#resources" type: string data: additionalProperties: format: byte type: string description: Data contains the secret data. Each key must consist of alphanumeric characters, '-', '_' or '.'. The serialized form of the secret data is a base64 encoded string, representing the arbitrary (possibly non-string) data value here. Described in https://tools.ietf.org/html/rfc4648#section-4 type: object 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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" description: "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata" stringData: additionalProperties: type: string description: stringData allows specifying non-binary secret data in string form. It is provided as a write-only convenience method. All keys and values are merged into the data field on write, overwriting any existing values. It is never output when reading from the API. type: object type: description: Used to facilitate programmatic handling of secret data. type: string x-kubernetes-group-version-kind: - group: "" kind: Secret version: v1 io.k8s.api.core.v1.SecretEnvSource: description: |- SecretEnvSource selects a Secret to populate the environment variables with. The contents of the target Secret's Data field will represent the key-value pairs as environment variables. properties: name: description: "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names" type: string optional: description: Specify whether the Secret must be defined type: boolean io.k8s.api.core.v1.SecretKeySelector: description: SecretKeySelector selects a key of a Secret. properties: key: description: The key of the secret to select from. Must be a valid secret key. type: string name: description: "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names" type: string optional: description: Specify whether the Secret or it's key must be defined type: boolean required: - key io.k8s.api.core.v1.SecretList: description: SecretList is a list of Secret. 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/api-conventions.md#resources" type: string items: description: "Items is a list of secret objects. More info: https://kubernetes.io/docs/concepts/configuration/secret" items: $ref: "#/definitions/io.k8s.api.core.v1.Secret" type: array 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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" description: "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds" required: - items x-kubernetes-group-version-kind: - group: "" kind: SecretList version: v1 io.k8s.api.core.v1.SecretProjection: description: |- Adapts a secret into a projected volume. The contents of the target Secret's Data field will be presented in a projected volume as files using the keys in the Data field as the file names. Note that this is identical to a secret volume source without the default mode. properties: items: description: If unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'. items: $ref: "#/definitions/io.k8s.api.core.v1.KeyToPath" type: array name: description: "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names" type: string optional: description: Specify whether the Secret or its key must be defined type: boolean io.k8s.api.core.v1.SecretReference: description: SecretReference represents a Secret Reference. It has enough information to retrieve secret in any namespace properties: name: description: Name is unique within a namespace to reference a secret resource. type: string namespace: description: Namespace defines the space within which the secret name must be unique. type: string io.k8s.api.core.v1.SecretVolumeSource: description: |- Adapts a Secret into a volume. The contents of the target Secret's Data field will be presented in a volume as files using the keys in the Data field as the file names. Secret volumes support ownership management and SELinux relabeling. properties: defaultMode: description: "Optional: mode bits to use on created files by default. Must be a value between 0 and 0777. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set." format: int32 type: integer items: description: If unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'. items: $ref: "#/definitions/io.k8s.api.core.v1.KeyToPath" type: array optional: description: Specify whether the Secret or it's keys must be defined type: boolean secretName: description: "Name of the secret in the pod's namespace to use. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret" type: string io.k8s.api.core.v1.SecurityContext: description: SecurityContext holds security configuration that will be applied to a container. Some fields are present in both SecurityContext and PodSecurityContext. When both are set, the values in SecurityContext take precedence. properties: allowPrivilegeEscalation: description: "AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process. This bool directly controls if the no_new_privs flag will be set on the container process. AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN" type: boolean capabilities: $ref: "#/definitions/io.k8s.api.core.v1.Capabilities" description: The capabilities to add/drop when running containers. Defaults to the default set of capabilities granted by the container runtime. privileged: description: Run container in privileged mode. Processes in privileged containers are essentially equivalent to root on the host. Defaults to false. type: boolean readOnlyRootFilesystem: description: Whether this container has a read-only root filesystem. Default is false. type: boolean runAsGroup: description: The GID to run the entrypoint of the container process. Uses runtime default if unset. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. format: int64 type: integer runAsNonRoot: description: Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. type: boolean runAsUser: description: The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. format: int64 type: integer seLinuxOptions: $ref: "#/definitions/io.k8s.api.core.v1.SELinuxOptions" description: The SELinux context to be applied to the container. If unspecified, the container runtime will allocate a random SELinux context for each container. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. io.k8s.api.core.v1.Service: description: Service is a named abstraction of software service (for example, mysql) consisting of local port (for example 3306) that the proxy listens on, and the selector that determines which pods will answer requests sent through the proxy. 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/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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" description: "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata" spec: $ref: "#/definitions/io.k8s.api.core.v1.ServiceSpec" description: Spec defines the behavior of a service. https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status status: $ref: "#/definitions/io.k8s.api.core.v1.ServiceStatus" description: "Most recently observed status of the service. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status" x-kubernetes-group-version-kind: - group: "" kind: Service version: v1 io.k8s.api.core.v1.ServiceAccount: description: "ServiceAccount binds together: * a name, understood by users, and perhaps by peripheral systems, for an identity * a principal that can be authenticated and authorized * a set of secrets" 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/api-conventions.md#resources" type: string automountServiceAccountToken: description: AutomountServiceAccountToken indicates whether pods running as this service account should have an API token automatically mounted. Can be overridden at the pod level. type: boolean imagePullSecrets: description: "ImagePullSecrets is a list of references to secrets in the same namespace to use for pulling any images in pods that reference this ServiceAccount. ImagePullSecrets are distinct from Secrets because Secrets can be mounted in the pod, but ImagePullSecrets are only accessed by the kubelet. More info: https://kubernetes.io/docs/concepts/containers/images/#specifying-imagepullsecrets-on-a-pod" items: $ref: "#/definitions/io.k8s.api.core.v1.LocalObjectReference" type: array 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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" description: "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata" secrets: description: "Secrets is the list of secrets allowed to be used by pods running using this ServiceAccount. More info: https://kubernetes.io/docs/concepts/configuration/secret" items: $ref: "#/definitions/io.k8s.api.core.v1.ObjectReference" type: array x-kubernetes-patch-merge-key: name x-kubernetes-patch-strategy: merge x-kubernetes-group-version-kind: - group: "" kind: ServiceAccount version: v1 io.k8s.api.core.v1.ServiceAccountList: description: ServiceAccountList is a list of ServiceAccount objects 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/api-conventions.md#resources" type: string items: description: "List of ServiceAccounts. More info: https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/" items: $ref: "#/definitions/io.k8s.api.core.v1.ServiceAccount" type: array 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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" description: "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds" required: - items x-kubernetes-group-version-kind: - group: "" kind: ServiceAccountList version: v1 io.k8s.api.core.v1.ServiceList: description: ServiceList holds a list of services. 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/api-conventions.md#resources" type: string items: description: List of services items: $ref: "#/definitions/io.k8s.api.core.v1.Service" type: array 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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" description: "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds" required: - items x-kubernetes-group-version-kind: - group: "" kind: ServiceList version: v1 io.k8s.api.core.v1.ServicePort: description: ServicePort contains information on service's port. properties: name: description: The name of this port within the service. This must be a DNS_LABEL. All ports within a ServiceSpec must have unique names. This maps to the 'Name' field in EndpointPort objects. Optional if only one ServicePort is defined on this service. type: string nodePort: description: "The port on each node on which this service is exposed when type=NodePort or LoadBalancer. Usually assigned by the system. If specified, it will be allocated to the service if unused or else creation of the service will fail. Default is to auto-allocate a port if the ServiceType of this Service requires one. More info: https://kubernetes.io/docs/concepts/services-networking/service/#type-nodeport" format: int32 type: integer port: description: The port that will be exposed by this service. format: int32 type: integer protocol: description: The IP protocol for this port. Supports "TCP" and "UDP". Default is TCP. type: string targetPort: $ref: "#/definitions/io.k8s.apimachinery.pkg.util.intstr.IntOrString" description: "Number or name of the port to access on the pods targeted by the service. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. If this is a string, it will be looked up as a named port in the target Pod's container ports. If this is not specified, the value of the 'port' field is used (an identity map). This field is ignored for services with clusterIP=None, and should be omitted or set equal to the 'port' field. More info: https://kubernetes.io/docs/concepts/services-networking/service/#defining-a-service" required: - port io.k8s.api.core.v1.ServiceSpec: description: ServiceSpec describes the attributes that a user creates on a service. properties: clusterIP: description: 'clusterIP is the IP address of the service and is usually assigned randomly by the master. If an address is specified manually and is not in use by others, it will be allocated to the service; otherwise, creation of the service will fail. This field can not be changed through updates. Valid values are "None", empty string (""), or a valid IP address. "None" can be specified for headless services when proxying is not required. Only applies to types ClusterIP, NodePort, and LoadBalancer. Ignored if type is ExternalName. More info: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies' type: string externalIPs: description: externalIPs is a list of IP addresses for which nodes in the cluster will also accept traffic for this service. These IPs are not managed by Kubernetes. The user is responsible for ensuring that traffic arrives at a node with this IP. A common example is external load-balancers that are not part of the Kubernetes system. items: type: string type: array externalName: description: externalName is the external reference that kubedns or equivalent will return as a CNAME record for this service. No proxying will be involved. Must be a valid RFC-1123 hostname (https://tools.ietf.org/html/rfc1123) and requires Type to be ExternalName. type: string externalTrafficPolicy: description: externalTrafficPolicy denotes if this Service desires to route external traffic to node-local or cluster-wide endpoints. "Local" preserves the client source IP and avoids a second hop for LoadBalancer and Nodeport type services, but risks potentially imbalanced traffic spreading. "Cluster" obscures the client source IP and may cause a second hop to another node, but should have good overall load-spreading. type: string healthCheckNodePort: description: healthCheckNodePort specifies the healthcheck nodePort for the service. If not specified, HealthCheckNodePort is created by the service api backend with the allocated nodePort. Will use user-specified nodePort value if specified by the client. Only effects when Type is set to LoadBalancer and ExternalTrafficPolicy is set to Local. format: int32 type: integer loadBalancerIP: description: "Only applies to Service Type: LoadBalancer LoadBalancer will get created with the IP specified in this field. This feature depends on whether the underlying cloud-provider supports specifying the loadBalancerIP when a load balancer is created. This field will be ignored if the cloud-provider does not support the feature." type: string loadBalancerSourceRanges: description: 'If specified and supported by the platform, this will restrict traffic through the cloud-provider load-balancer will be restricted to the specified client IPs. This field will be ignored if the cloud-provider does not support the feature." More info: https://kubernetes.io/docs/tasks/access-application-cluster/configure-cloud-provider-firewall/' items: type: string type: array ports: description: "The list of ports that are exposed by this service. More info: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies" items: $ref: "#/definitions/io.k8s.api.core.v1.ServicePort" type: array x-kubernetes-patch-merge-key: port x-kubernetes-patch-strategy: merge publishNotReadyAddresses: description: publishNotReadyAddresses, when set to true, indicates that DNS implementations must publish the notReadyAddresses of subsets for the Endpoints associated with the Service. The default value is false. The primary use case for setting this field is to use a StatefulSet's Headless Service to propagate SRV records for its Pods without respect to their readiness for purpose of peer discovery. This field will replace the service.alpha.kubernetes.io/tolerate-unready-endpoints when that annotation is deprecated and all clients have been converted to use this field. type: boolean selector: additionalProperties: type: string description: "Route service traffic to pods with label keys and values matching this selector. If empty or not present, the service is assumed to have an external process managing its endpoints, which Kubernetes will not modify. Only applies to types ClusterIP, NodePort, and LoadBalancer. Ignored if type is ExternalName. More info: https://kubernetes.io/docs/concepts/services-networking/service/" type: object sessionAffinity: description: 'Supports "ClientIP" and "None". Used to maintain session affinity. Enable client IP based session affinity. Must be ClientIP or None. Defaults to None. More info: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies' type: string sessionAffinityConfig: $ref: "#/definitions/io.k8s.api.core.v1.SessionAffinityConfig" description: sessionAffinityConfig contains the configurations of session affinity. type: description: 'type determines how the Service is exposed. Defaults to ClusterIP. Valid options are ExternalName, ClusterIP, NodePort, and LoadBalancer. "ExternalName" maps to the specified externalName. "ClusterIP" allocates a cluster-internal IP address for load-balancing to endpoints. Endpoints are determined by the selector or if that is not specified, by manual construction of an Endpoints object. If clusterIP is "None", no virtual IP is allocated and the endpoints are published as a set of endpoints rather than a stable IP. "NodePort" builds on ClusterIP and allocates a port on every node which routes to the clusterIP. "LoadBalancer" builds on NodePort and creates an external load-balancer (if supported in the current cloud) which routes to the clusterIP. More info: https://kubernetes.io/docs/concepts/services-networking/service/#publishing-services---service-types' type: string io.k8s.api.core.v1.ServiceStatus: description: ServiceStatus represents the current status of a service. properties: loadBalancer: $ref: "#/definitions/io.k8s.api.core.v1.LoadBalancerStatus" description: LoadBalancer contains the current status of the load-balancer, if one is present. io.k8s.api.core.v1.SessionAffinityConfig: description: SessionAffinityConfig represents the configurations of session affinity. properties: clientIP: $ref: "#/definitions/io.k8s.api.core.v1.ClientIPConfig" description: clientIP contains the configurations of Client IP based session affinity. io.k8s.api.core.v1.StorageOSPersistentVolumeSource: description: Represents a StorageOS persistent volume resource. properties: fsType: description: Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. type: string readOnly: description: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. type: boolean secretRef: $ref: "#/definitions/io.k8s.api.core.v1.ObjectReference" description: SecretRef specifies the secret to use for obtaining the StorageOS API credentials. If not specified, default values will be attempted. volumeName: description: VolumeName is the human-readable name of the StorageOS volume. Volume names are only unique within a namespace. type: string volumeNamespace: description: VolumeNamespace specifies the scope of the volume within StorageOS. If no namespace is specified then the Pod's namespace will be used. This allows the Kubernetes name scoping to be mirrored within StorageOS for tighter integration. Set VolumeName to any name to override the default behaviour. Set to "default" if you are not using namespaces within StorageOS. Namespaces that do not pre-exist within StorageOS will be created. type: string io.k8s.api.core.v1.StorageOSVolumeSource: description: Represents a StorageOS persistent volume resource. properties: fsType: description: Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. type: string readOnly: description: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. type: boolean secretRef: $ref: "#/definitions/io.k8s.api.core.v1.LocalObjectReference" description: SecretRef specifies the secret to use for obtaining the StorageOS API credentials. If not specified, default values will be attempted. volumeName: description: VolumeName is the human-readable name of the StorageOS volume. Volume names are only unique within a namespace. type: string volumeNamespace: description: VolumeNamespace specifies the scope of the volume within StorageOS. If no namespace is specified then the Pod's namespace will be used. This allows the Kubernetes name scoping to be mirrored within StorageOS for tighter integration. Set VolumeName to any name to override the default behaviour. Set to "default" if you are not using namespaces within StorageOS. Namespaces that do not pre-exist within StorageOS will be created. type: string io.k8s.api.core.v1.TCPSocketAction: description: TCPSocketAction describes an action based on opening a socket properties: host: description: "Optional: Host name to connect to, defaults to the pod IP." type: string port: $ref: "#/definitions/io.k8s.apimachinery.pkg.util.intstr.IntOrString" description: Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. required: - port io.k8s.api.core.v1.Taint: description: The node this Taint is attached to has the "effect" on any pod that does not tolerate the Taint. 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: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time" description: TimeAdded represents the time at which the taint was added. It is only written for NoExecute taints. value: description: Required. The taint value corresponding to the taint key. type: string required: - key - effect io.k8s.api.core.v1.Toleration: description: The pod this Toleration is attached to tolerates any taint that matches the triple using the matching operator . properties: effect: description: Effect indicates the taint effect to match. Empty means match all taint effects. When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute. type: string key: description: Key is the taint key that the toleration applies to. Empty means match all taint keys. If the key is empty, operator must be Exists; this combination means to match all values and all keys. type: string operator: description: Operator represents a key's relationship to the value. Valid operators are Exists and Equal. Defaults to Equal. Exists is equivalent to wildcard for value, so that a pod can tolerate all taints of a particular category. type: string tolerationSeconds: description: TolerationSeconds represents the period of time the toleration (which must be of effect NoExecute, otherwise this field is ignored) tolerates the taint. By default, it is not set, which means tolerate the taint forever (do not evict). Zero and negative values will be treated as 0 (evict immediately) by the system. format: int64 type: integer value: description: Value is the taint value the toleration matches to. If the operator is Exists, the value should be empty, otherwise just a regular string. type: string io.k8s.api.core.v1.Volume: description: Volume represents a named volume in a pod that may be accessed by any container in the pod. properties: awsElasticBlockStore: $ref: "#/definitions/io.k8s.api.core.v1.AWSElasticBlockStoreVolumeSource" description: "AWSElasticBlockStore represents an AWS Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore" azureDisk: $ref: "#/definitions/io.k8s.api.core.v1.AzureDiskVolumeSource" description: AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod. azureFile: $ref: "#/definitions/io.k8s.api.core.v1.AzureFileVolumeSource" description: AzureFile represents an Azure File Service mount on the host and bind mount to the pod. cephfs: $ref: "#/definitions/io.k8s.api.core.v1.CephFSVolumeSource" description: CephFS represents a Ceph FS mount on the host that shares a pod's lifetime cinder: $ref: "#/definitions/io.k8s.api.core.v1.CinderVolumeSource" description: "Cinder represents a cinder volume attached and mounted on kubelets host machine More info: https://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md" configMap: $ref: "#/definitions/io.k8s.api.core.v1.ConfigMapVolumeSource" description: ConfigMap represents a configMap that should populate this volume downwardAPI: $ref: "#/definitions/io.k8s.api.core.v1.DownwardAPIVolumeSource" description: DownwardAPI represents downward API about the pod that should populate this volume emptyDir: $ref: "#/definitions/io.k8s.api.core.v1.EmptyDirVolumeSource" description: "EmptyDir represents a temporary directory that shares a pod's lifetime. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir" fc: $ref: "#/definitions/io.k8s.api.core.v1.FCVolumeSource" description: FC represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod. flexVolume: $ref: "#/definitions/io.k8s.api.core.v1.FlexVolumeSource" description: FlexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin. flocker: $ref: "#/definitions/io.k8s.api.core.v1.FlockerVolumeSource" description: Flocker represents a Flocker volume attached to a kubelet's host machine. This depends on the Flocker control service being running gcePersistentDisk: $ref: "#/definitions/io.k8s.api.core.v1.GCEPersistentDiskVolumeSource" description: "GCEPersistentDisk represents a GCE Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk" gitRepo: $ref: "#/definitions/io.k8s.api.core.v1.GitRepoVolumeSource" description: GitRepo represents a git repository at a particular revision. glusterfs: $ref: "#/definitions/io.k8s.api.core.v1.GlusterfsVolumeSource" description: "Glusterfs represents a Glusterfs mount on the host that shares a pod's lifetime. More info: https://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md" hostPath: $ref: "#/definitions/io.k8s.api.core.v1.HostPathVolumeSource" description: "HostPath represents a pre-existing file or directory on the host machine that is directly exposed to the container. This is generally used for system agents or other privileged things that are allowed to see the host machine. Most containers will NOT need this. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath" iscsi: $ref: "#/definitions/io.k8s.api.core.v1.ISCSIVolumeSource" description: "ISCSI represents an ISCSI Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://releases.k8s.io/HEAD/examples/volumes/iscsi/README.md" name: description: "Volume's name. Must be a DNS_LABEL and unique within the pod. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names" type: string nfs: $ref: "#/definitions/io.k8s.api.core.v1.NFSVolumeSource" description: "NFS represents an NFS mount on the host that shares a pod's lifetime More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs" persistentVolumeClaim: $ref: "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaimVolumeSource" description: "PersistentVolumeClaimVolumeSource represents a reference to a PersistentVolumeClaim in the same namespace. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims" photonPersistentDisk: $ref: "#/definitions/io.k8s.api.core.v1.PhotonPersistentDiskVolumeSource" description: PhotonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine portworxVolume: $ref: "#/definitions/io.k8s.api.core.v1.PortworxVolumeSource" description: PortworxVolume represents a portworx volume attached and mounted on kubelets host machine projected: $ref: "#/definitions/io.k8s.api.core.v1.ProjectedVolumeSource" description: Items for all in one resources secrets, configmaps, and downward API quobyte: $ref: "#/definitions/io.k8s.api.core.v1.QuobyteVolumeSource" description: Quobyte represents a Quobyte mount on the host that shares a pod's lifetime rbd: $ref: "#/definitions/io.k8s.api.core.v1.RBDVolumeSource" description: "RBD represents a Rados Block Device mount on the host that shares a pod's lifetime. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md" scaleIO: $ref: "#/definitions/io.k8s.api.core.v1.ScaleIOVolumeSource" description: ScaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes. secret: $ref: "#/definitions/io.k8s.api.core.v1.SecretVolumeSource" description: "Secret represents a secret that should populate this volume. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret" storageos: $ref: "#/definitions/io.k8s.api.core.v1.StorageOSVolumeSource" description: StorageOS represents a StorageOS volume attached and mounted on Kubernetes nodes. vsphereVolume: $ref: "#/definitions/io.k8s.api.core.v1.VsphereVirtualDiskVolumeSource" description: VsphereVolume represents a vSphere volume attached and mounted on kubelets host machine required: - name io.k8s.api.core.v1.VolumeDevice: description: volumeDevice describes a mapping of a raw block device within a container. properties: devicePath: description: devicePath is the path inside of the container that the device will be mapped to. type: string name: description: name must match the name of a persistentVolumeClaim in the pod type: string required: - name - devicePath io.k8s.api.core.v1.VolumeMount: description: VolumeMount describes a mounting of a Volume within a container. properties: mountPath: description: Path within the container at which the volume should be mounted. Must not contain ':'. type: string mountPropagation: description: mountPropagation determines how mounts are propagated from the host to container and the other way around. When not set, MountPropagationHostToContainer is used. This field is beta in 1.10. type: string name: description: This must match the Name of a Volume. type: string readOnly: description: Mounted read-only if true, read-write otherwise (false or unspecified). Defaults to false. type: boolean subPath: description: Path within the volume from which the container's volume should be mounted. Defaults to "" (volume's root). type: string required: - name - mountPath io.k8s.api.core.v1.VolumeNodeAffinity: description: VolumeNodeAffinity defines constraints that limit what nodes this volume can be accessed from. properties: required: $ref: "#/definitions/io.k8s.api.core.v1.NodeSelector" description: Required specifies hard node constraints that must be met. io.k8s.api.core.v1.VolumeProjection: description: Projection that may be projected along with other supported volume types properties: configMap: $ref: "#/definitions/io.k8s.api.core.v1.ConfigMapProjection" description: information about the configMap data to project downwardAPI: $ref: "#/definitions/io.k8s.api.core.v1.DownwardAPIProjection" description: information about the downwardAPI data to project secret: $ref: "#/definitions/io.k8s.api.core.v1.SecretProjection" description: information about the secret data to project io.k8s.api.core.v1.VsphereVirtualDiskVolumeSource: description: Represents a vSphere volume resource. properties: fsType: description: Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. type: string storagePolicyID: description: Storage Policy Based Management (SPBM) profile ID associated with the StoragePolicyName. type: string storagePolicyName: description: Storage Policy Based Management (SPBM) profile name. type: string volumePath: description: Path that identifies vSphere volume vmdk type: string required: - volumePath io.k8s.api.core.v1.WeightedPodAffinityTerm: description: The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s) properties: podAffinityTerm: $ref: "#/definitions/io.k8s.api.core.v1.PodAffinityTerm" description: Required. A pod affinity term, associated with the corresponding weight. weight: description: weight associated with matching the corresponding podAffinityTerm, in the range 1-100. format: int32 type: integer required: - weight - podAffinityTerm io.k8s.api.events.v1beta1.Event: description: Event is a report of an event somewhere in the cluster. It generally denotes some state change in the system. properties: action: description: What action was taken/failed regarding to the regarding object. type: string 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/api-conventions.md#resources" type: string deprecatedCount: description: Deprecated field assuring backward compatibility with core.v1 Event type format: int32 type: integer deprecatedFirstTimestamp: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time" description: Deprecated field assuring backward compatibility with core.v1 Event type deprecatedLastTimestamp: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time" description: Deprecated field assuring backward compatibility with core.v1 Event type deprecatedSource: $ref: "#/definitions/io.k8s.api.core.v1.EventSource" description: Deprecated field assuring backward compatibility with core.v1 Event type eventTime: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.MicroTime" description: Required. Time when this Event was first observed. 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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" note: description: Optional. A human-readable description of the status of this operation. Maximal length of the note is 1kB, but libraries should be prepared to handle values up to 64kB. type: string reason: description: Why the action was taken. type: string regarding: $ref: "#/definitions/io.k8s.api.core.v1.ObjectReference" description: The object this Event is about. In most cases it's an Object reporting controller implements. E.g. ReplicaSetController implements ReplicaSets and this event is emitted because it acts on some changes in a ReplicaSet object. related: $ref: "#/definitions/io.k8s.api.core.v1.ObjectReference" description: Optional secondary object for more complex actions. E.g. when regarding object triggers a creation or deletion of related object. reportingController: description: Name of the controller that emitted this Event, e.g. `kubernetes.io/kubelet`. type: string reportingInstance: description: ID of the controller instance, e.g. `kubelet-xyzf`. type: string series: $ref: "#/definitions/io.k8s.api.events.v1beta1.EventSeries" description: Data about the Event series this event represents or nil if it's a singleton Event. type: description: Type of this event (Normal, Warning), new types could be added in the future. type: string required: - eventTime x-kubernetes-group-version-kind: - group: events.k8s.io kind: Event version: v1beta1 io.k8s.api.events.v1beta1.EventList: description: EventList is a list of Event objects. 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/api-conventions.md#resources" type: string items: description: Items is a list of schema objects. items: $ref: "#/definitions/io.k8s.api.events.v1beta1.Event" type: array 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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" description: "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata" required: - items x-kubernetes-group-version-kind: - group: events.k8s.io kind: EventList version: v1beta1 io.k8s.api.events.v1beta1.EventSeries: description: EventSeries contain information on series of events, i.e. thing that was/is happening continuously for some time. properties: count: description: Number of occurrences in this series up to the last heartbeat time format: int32 type: integer lastObservedTime: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.MicroTime" description: Time when last Event from the series was seen before last heartbeat. state: description: Information whether this series is ongoing or finished. type: string required: - count - lastObservedTime - state io.k8s.api.extensions.v1beta1.AllowedFlexVolume: description: AllowedFlexVolume represents a single Flexvolume that is allowed to be used. properties: driver: description: Driver is the name of the Flexvolume driver. type: string required: - driver io.k8s.api.extensions.v1beta1.AllowedHostPath: description: defines the host volume conditions that will be enabled by a policy for pods to use. It requires the path prefix to be defined. properties: pathPrefix: description: |- is the path prefix that the host volume must match. It does not support `*`. Trailing slashes are trimmed when validating the path prefix with a host path. Examples: `/foo` would allow `/foo`, `/foo/` and `/foo/bar` `/foo` would not allow `/food` or `/etc/foo` type: string io.k8s.api.extensions.v1beta1.DaemonSet: description: DEPRECATED - This group version of DaemonSet is deprecated by apps/v1beta2/DaemonSet. See the release notes for more information. DaemonSet represents the configuration of a daemon set. 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/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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" description: "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata" spec: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.DaemonSetSpec" description: "The desired behavior of this daemon set. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status" status: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.DaemonSetStatus" description: "The current status of this daemon set. This data may be out of date by some window of time. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status" x-kubernetes-group-version-kind: - group: extensions kind: DaemonSet version: v1beta1 io.k8s.api.extensions.v1beta1.DaemonSetCondition: description: DaemonSetCondition describes the state of a DaemonSet at a certain point. properties: lastTransitionTime: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time" description: Last time the condition transitioned from one status to another. message: description: A human readable message indicating details about the transition. type: string reason: description: The reason for the condition's last transition. type: string status: description: Status of the condition, one of True, False, Unknown. type: string type: description: Type of DaemonSet condition. type: string required: - type - status io.k8s.api.extensions.v1beta1.DaemonSetList: description: DaemonSetList is a collection of daemon sets. 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/api-conventions.md#resources" type: string items: description: A list of daemon sets. items: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.DaemonSet" type: array 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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" description: "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata" required: - items x-kubernetes-group-version-kind: - group: extensions kind: DaemonSetList version: v1beta1 io.k8s.api.extensions.v1beta1.DaemonSetSpec: description: DaemonSetSpec is the specification of a daemon set. properties: minReadySeconds: description: The minimum number of seconds for which a newly created DaemonSet pod should be ready without any of its container crashing, for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready). format: int32 type: integer revisionHistoryLimit: description: The number of old history to retain to allow rollback. This is a pointer to distinguish between explicit zero and not specified. Defaults to 10. format: int32 type: integer selector: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector" description: "A label query over pods that are managed by the daemon set. Must match in order to be controlled. If empty, defaulted to labels on Pod template. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors" template: $ref: "#/definitions/io.k8s.api.core.v1.PodTemplateSpec" description: "An object that describes the pod that will be created. The DaemonSet will create exactly one copy of this pod on every node that matches the template's node selector (or on every node if no node selector is specified). More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller#pod-template" templateGeneration: description: DEPRECATED. A sequence number representing a specific generation of the template. Populated by the system. It can be set only during the creation. format: int64 type: integer updateStrategy: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.DaemonSetUpdateStrategy" description: An update strategy to replace existing DaemonSet pods with new pods. required: - template io.k8s.api.extensions.v1beta1.DaemonSetStatus: description: DaemonSetStatus represents the current status of a daemon set. properties: collisionCount: description: Count of hash collisions for the DaemonSet. The DaemonSet controller uses this field as a collision avoidance mechanism when it needs to create the name for the newest ControllerRevision. format: int32 type: integer conditions: description: Represents the latest available observations of a DaemonSet's current state. items: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.DaemonSetCondition" type: array x-kubernetes-patch-merge-key: type x-kubernetes-patch-strategy: merge currentNumberScheduled: description: "The number of nodes that are running at least 1 daemon pod and are supposed to run the daemon pod. More info: https://kubernetes.io/docs/concepts/workloads/controllers/daemonset/" format: int32 type: integer desiredNumberScheduled: description: "The total number of nodes that should be running the daemon pod (including nodes correctly running the daemon pod). More info: https://kubernetes.io/docs/concepts/workloads/controllers/daemonset/" format: int32 type: integer numberAvailable: description: The number of nodes that should be running the daemon pod and have one or more of the daemon pod running and available (ready for at least spec.minReadySeconds) format: int32 type: integer numberMisscheduled: description: "The number of nodes that are running the daemon pod, but are not supposed to run the daemon pod. More info: https://kubernetes.io/docs/concepts/workloads/controllers/daemonset/" format: int32 type: integer numberReady: description: The number of nodes that should be running the daemon pod and have one or more of the daemon pod running and ready. format: int32 type: integer numberUnavailable: description: The number of nodes that should be running the daemon pod and have none of the daemon pod running and available (ready for at least spec.minReadySeconds) format: int32 type: integer observedGeneration: description: The most recent generation observed by the daemon set controller. format: int64 type: integer updatedNumberScheduled: description: The total number of nodes that are running updated daemon pod format: int32 type: integer required: - currentNumberScheduled - numberMisscheduled - desiredNumberScheduled - numberReady io.k8s.api.extensions.v1beta1.DaemonSetUpdateStrategy: properties: rollingUpdate: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.RollingUpdateDaemonSet" description: Rolling update config params. Present only if type = "RollingUpdate". type: description: Type of daemon set update. Can be "RollingUpdate" or "OnDelete". Default is OnDelete. type: string io.k8s.api.extensions.v1beta1.Deployment: description: DEPRECATED - This group version of Deployment is deprecated by apps/v1beta2/Deployment. See the release notes for more information. Deployment enables declarative updates for Pods and ReplicaSets. 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/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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" description: Standard object metadata. spec: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.DeploymentSpec" description: Specification of the desired behavior of the Deployment. status: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.DeploymentStatus" description: Most recently observed status of the Deployment. x-kubernetes-group-version-kind: - group: extensions kind: Deployment version: v1beta1 io.k8s.api.extensions.v1beta1.DeploymentCondition: description: DeploymentCondition describes the state of a deployment at a certain point. properties: lastTransitionTime: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time" description: Last time the condition transitioned from one status to another. lastUpdateTime: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time" description: The last time this condition was updated. message: description: A human readable message indicating details about the transition. type: string reason: description: The reason for the condition's last transition. type: string status: description: Status of the condition, one of True, False, Unknown. type: string type: description: Type of deployment condition. type: string required: - type - status io.k8s.api.extensions.v1beta1.DeploymentList: description: DeploymentList is a list of Deployments. 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/api-conventions.md#resources" type: string items: description: Items is the list of Deployments. items: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.Deployment" type: array 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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" description: Standard list metadata. required: - items x-kubernetes-group-version-kind: - group: extensions kind: DeploymentList version: v1beta1 io.k8s.api.extensions.v1beta1.DeploymentRollback: description: DEPRECATED. DeploymentRollback stores the information required to rollback a deployment. 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/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/api-conventions.md#types-kinds" type: string name: description: "Required: This must match the Name of a deployment." type: string rollbackTo: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.RollbackConfig" description: The config of this deployment rollback. updatedAnnotations: additionalProperties: type: string description: The annotations to be updated to a deployment type: object required: - name - rollbackTo x-kubernetes-group-version-kind: - group: extensions kind: DeploymentRollback version: v1beta1 io.k8s.api.extensions.v1beta1.DeploymentSpec: description: DeploymentSpec is the specification of the desired behavior of the Deployment. properties: minReadySeconds: description: Minimum number of seconds for which a newly created pod should be ready without any of its container crashing, for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready) format: int32 type: integer paused: description: Indicates that the deployment is paused and will not be processed by the deployment controller. type: boolean progressDeadlineSeconds: description: The maximum time in seconds for a deployment to make progress before it is considered to be failed. The deployment controller will continue to process failed deployments and a condition with a ProgressDeadlineExceeded reason will be surfaced in the deployment status. Note that progress will not be estimated during the time a deployment is paused. This is not set by default. format: int32 type: integer replicas: description: Number of desired pods. This is a pointer to distinguish between explicit zero and not specified. Defaults to 1. format: int32 type: integer revisionHistoryLimit: description: The number of old ReplicaSets to retain to allow rollback. This is a pointer to distinguish between explicit zero and not specified. format: int32 type: integer rollbackTo: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.RollbackConfig" description: DEPRECATED. The config this deployment is rolling back to. Will be cleared after rollback is done. selector: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector" description: Label selector for pods. Existing ReplicaSets whose pods are selected by this will be the ones affected by this deployment. strategy: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.DeploymentStrategy" description: The deployment strategy to use to replace existing pods with new ones. x-kubernetes-patch-strategy: retainKeys template: $ref: "#/definitions/io.k8s.api.core.v1.PodTemplateSpec" description: Template describes the pods that will be created. required: - template io.k8s.api.extensions.v1beta1.DeploymentStatus: description: DeploymentStatus is the most recently observed status of the Deployment. properties: availableReplicas: description: Total number of available pods (ready for at least minReadySeconds) targeted by this deployment. format: int32 type: integer collisionCount: description: Count of hash collisions for the Deployment. The Deployment controller uses this field as a collision avoidance mechanism when it needs to create the name for the newest ReplicaSet. format: int32 type: integer conditions: description: Represents the latest available observations of a deployment's current state. items: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.DeploymentCondition" type: array x-kubernetes-patch-merge-key: type x-kubernetes-patch-strategy: merge observedGeneration: description: The generation observed by the deployment controller. format: int64 type: integer readyReplicas: description: Total number of ready pods targeted by this deployment. format: int32 type: integer replicas: description: Total number of non-terminated pods targeted by this deployment (their labels match the selector). format: int32 type: integer unavailableReplicas: description: Total number of unavailable pods targeted by this deployment. This is the total number of pods that are still required for the deployment to have 100% available capacity. They may either be pods that are running but not yet available or pods that still have not been created. format: int32 type: integer updatedReplicas: description: Total number of non-terminated pods targeted by this deployment that have the desired template spec. format: int32 type: integer io.k8s.api.extensions.v1beta1.DeploymentStrategy: description: DeploymentStrategy describes how to replace existing pods with new ones. properties: rollingUpdate: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.RollingUpdateDeployment" description: Rolling update config params. Present only if DeploymentStrategyType = RollingUpdate. type: description: Type of deployment. Can be "Recreate" or "RollingUpdate". Default is RollingUpdate. type: string io.k8s.api.extensions.v1beta1.FSGroupStrategyOptions: description: FSGroupStrategyOptions defines the strategy type and options used to create the strategy. properties: ranges: description: Ranges are the allowed ranges of fs groups. If you would like to force a single fs group then supply a single range with the same start and end. items: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.IDRange" type: array rule: description: Rule is the strategy that will dictate what FSGroup is used in the SecurityContext. type: string io.k8s.api.extensions.v1beta1.HTTPIngressPath: description: HTTPIngressPath associates a path regex with a backend. Incoming urls matching the path are forwarded to the backend. properties: backend: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.IngressBackend" description: Backend defines the referenced service endpoint to which the traffic will be forwarded to. path: description: Path is an extended POSIX regex as defined by IEEE Std 1003.1, (i.e this follows the egrep/unix syntax, not the perl syntax) matched against the path of an incoming request. Currently it can contain characters disallowed from the conventional "path" part of a URL as defined by RFC 3986. Paths must begin with a '/'. If unspecified, the path defaults to a catch all sending traffic to the backend. type: string required: - backend io.k8s.api.extensions.v1beta1.HTTPIngressRuleValue: description: "HTTPIngressRuleValue is a list of http selectors pointing to backends. In the example: http:///? -> backend where where parts of the url correspond to RFC 3986, this resource will be used to match against everything after the last '/' and before the first '?' or '#'." properties: paths: description: A collection of paths that map requests to backends. items: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.HTTPIngressPath" type: array required: - paths io.k8s.api.extensions.v1beta1.HostPortRange: description: Host Port Range defines a range of host ports that will be enabled by a policy for pods to use. It requires both the start and end to be defined. properties: max: description: max is the end of the range, inclusive. format: int32 type: integer min: description: min is the start of the range, inclusive. format: int32 type: integer required: - min - max io.k8s.api.extensions.v1beta1.IDRange: description: ID Range provides a min/max of an allowed range of IDs. properties: max: description: Max is the end of the range, inclusive. format: int64 type: integer min: description: Min is the start of the range, inclusive. format: int64 type: integer required: - min - max io.k8s.api.extensions.v1beta1.IPBlock: description: DEPRECATED 1.9 - This group version of IPBlock is deprecated by networking/v1/IPBlock. IPBlock describes a particular CIDR (Ex. "192.168.1.1/24") that is allowed to the pods matched by a NetworkPolicySpec's podSelector. The except entry describes CIDRs that should not be included within this rule. properties: cidr: description: CIDR is a string representing the IP Block Valid examples are "192.168.1.1/24" type: string except: description: Except is a slice of CIDRs that should not be included within an IP Block Valid examples are "192.168.1.1/24" Except values will be rejected if they are outside the CIDR range items: type: string type: array required: - cidr io.k8s.api.extensions.v1beta1.Ingress: description: Ingress is a collection of rules that allow inbound connections to reach the endpoints defined by a backend. An Ingress can be configured to give services externally-reachable urls, load balance traffic, terminate SSL, offer name based virtual hosting etc. 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/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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" description: "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata" spec: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.IngressSpec" description: "Spec is the desired state of the Ingress. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status" status: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.IngressStatus" description: "Status is the current state of the Ingress. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status" x-kubernetes-group-version-kind: - group: extensions kind: Ingress version: v1beta1 io.k8s.api.extensions.v1beta1.IngressBackend: description: IngressBackend describes all endpoints for a given service and port. properties: serviceName: description: Specifies the name of the referenced service. type: string servicePort: $ref: "#/definitions/io.k8s.apimachinery.pkg.util.intstr.IntOrString" description: Specifies the port of the referenced service. required: - serviceName - servicePort io.k8s.api.extensions.v1beta1.IngressList: description: IngressList is a collection of Ingress. 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/api-conventions.md#resources" type: string items: description: Items is the list of Ingress. items: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.Ingress" type: array 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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" description: "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata" required: - items x-kubernetes-group-version-kind: - group: extensions kind: IngressList version: v1beta1 io.k8s.api.extensions.v1beta1.IngressRule: description: IngressRule represents the rules mapping the paths under a specified host to the related backend services. Incoming requests are first evaluated for a host match, then routed to the backend associated with the matching IngressRuleValue. properties: host: description: |- Host is the fully qualified domain name of a network host, as defined by RFC 3986. Note the following deviations from the "host" part of the URI as defined in the RFC: 1. IPs are not allowed. Currently an IngressRuleValue can only apply to the IP in the Spec of the parent Ingress. 2. The `:` delimiter is not respected because ports are not allowed. Currently the port of an Ingress is implicitly :80 for http and :443 for https. Both these may change in the future. Incoming requests are matched against the host before the IngressRuleValue. If the host is unspecified, the Ingress routes all traffic based on the specified IngressRuleValue. type: string http: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.HTTPIngressRuleValue" io.k8s.api.extensions.v1beta1.IngressSpec: description: IngressSpec describes the Ingress the user wishes to exist. properties: backend: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.IngressBackend" description: A default backend capable of servicing requests that don't match any rule. At least one of 'backend' or 'rules' must be specified. This field is optional to allow the loadbalancer controller or defaulting logic to specify a global default. rules: description: A list of host rules used to configure the Ingress. If unspecified, or no rule matches, all traffic is sent to the default backend. items: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.IngressRule" type: array tls: description: TLS configuration. Currently the Ingress only supports a single TLS port, 443. If multiple members of this list specify different hosts, they will be multiplexed on the same port according to the hostname specified through the SNI TLS extension, if the ingress controller fulfilling the ingress supports SNI. items: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.IngressTLS" type: array io.k8s.api.extensions.v1beta1.IngressStatus: description: IngressStatus describe the current state of the Ingress. properties: loadBalancer: $ref: "#/definitions/io.k8s.api.core.v1.LoadBalancerStatus" description: LoadBalancer contains the current status of the load-balancer. io.k8s.api.extensions.v1beta1.IngressTLS: description: IngressTLS describes the transport layer security associated with an Ingress. properties: hosts: description: Hosts are a list of hosts included in the TLS certificate. The values in this list must match the name/s used in the tlsSecret. Defaults to the wildcard host setting for the loadbalancer controller fulfilling this Ingress, if left unspecified. items: type: string type: array secretName: description: SecretName is the name of the secret used to terminate SSL traffic on 443. Field is left optional to allow SSL routing based on SNI hostname alone. If the SNI host in a listener conflicts with the "Host" header field used by an IngressRule, the SNI host is used for termination and value of the Host header is used for routing. type: string io.k8s.api.extensions.v1beta1.NetworkPolicy: description: DEPRECATED 1.9 - This group version of NetworkPolicy is deprecated by networking/v1/NetworkPolicy. NetworkPolicy describes what network traffic is allowed for a set of Pods 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/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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" description: "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata" spec: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.NetworkPolicySpec" description: Specification of the desired behavior for this NetworkPolicy. x-kubernetes-group-version-kind: - group: extensions kind: NetworkPolicy version: v1beta1 io.k8s.api.extensions.v1beta1.NetworkPolicyEgressRule: description: DEPRECATED 1.9 - This group version of NetworkPolicyEgressRule is deprecated by networking/v1/NetworkPolicyEgressRule. NetworkPolicyEgressRule describes a particular set of traffic that is allowed out of pods matched by a NetworkPolicySpec's podSelector. The traffic must match both ports and to. This type is beta-level in 1.8 properties: ports: description: List of destination ports for outgoing traffic. Each item in this list is combined using a logical OR. If this field is empty or missing, this rule matches all ports (traffic not restricted by port). If this field is present and contains at least one item, then this rule allows traffic only if the traffic matches at least one port in the list. items: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.NetworkPolicyPort" type: array to: description: List of destinations for outgoing traffic of pods selected for this rule. Items in this list are combined using a logical OR operation. If this field is empty or missing, this rule matches all destinations (traffic not restricted by destination). If this field is present and contains at least one item, this rule allows traffic only if the traffic matches at least one item in the to list. items: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.NetworkPolicyPeer" type: array io.k8s.api.extensions.v1beta1.NetworkPolicyIngressRule: description: DEPRECATED 1.9 - This group version of NetworkPolicyIngressRule is deprecated by networking/v1/NetworkPolicyIngressRule. This NetworkPolicyIngressRule matches traffic if and only if the traffic matches both ports AND from. properties: from: description: List of sources which should be able to access the pods selected for this rule. Items in this list are combined using a logical OR operation. If this field is empty or missing, this rule matches all sources (traffic not restricted by source). If this field is present and contains at least on item, this rule allows traffic only if the traffic matches at least one item in the from list. items: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.NetworkPolicyPeer" type: array ports: description: List of ports which should be made accessible on the pods selected for this rule. Each item in this list is combined using a logical OR. If this field is empty or missing, this rule matches all ports (traffic not restricted by port). If this field is present and contains at least one item, then this rule allows traffic only if the traffic matches at least one port in the list. items: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.NetworkPolicyPort" type: array io.k8s.api.extensions.v1beta1.NetworkPolicyList: description: DEPRECATED 1.9 - This group version of NetworkPolicyList is deprecated by networking/v1/NetworkPolicyList. Network Policy List is a list of NetworkPolicy objects. 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/api-conventions.md#resources" type: string items: description: Items is a list of schema objects. items: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.NetworkPolicy" type: array 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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" description: "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata" required: - items x-kubernetes-group-version-kind: - group: extensions kind: NetworkPolicyList version: v1beta1 io.k8s.api.extensions.v1beta1.NetworkPolicyPeer: description: DEPRECATED 1.9 - This group version of NetworkPolicyPeer is deprecated by networking/v1/NetworkPolicyPeer. properties: ipBlock: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.IPBlock" description: IPBlock defines policy on a particular IPBlock namespaceSelector: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector" description: Selects Namespaces using cluster scoped-labels. This matches all pods in all namespaces selected by this label selector. This field follows standard label selector semantics. If present but empty, this selector selects all namespaces. podSelector: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector" description: This is a label selector which selects Pods in this namespace. This field follows standard label selector semantics. If present but empty, this selector selects all pods in this namespace. io.k8s.api.extensions.v1beta1.NetworkPolicyPort: description: DEPRECATED 1.9 - This group version of NetworkPolicyPort is deprecated by networking/v1/NetworkPolicyPort. properties: port: $ref: "#/definitions/io.k8s.apimachinery.pkg.util.intstr.IntOrString" description: If specified, the port on the given protocol. This can either be a numerical or named port on a pod. If this field is not provided, this matches all port names and numbers. If present, only traffic on the specified protocol AND port will be matched. protocol: description: Optional. The protocol (TCP or UDP) which traffic must match. If not specified, this field defaults to TCP. type: string io.k8s.api.extensions.v1beta1.NetworkPolicySpec: description: DEPRECATED 1.9 - This group version of NetworkPolicySpec is deprecated by networking/v1/NetworkPolicySpec. properties: egress: description: List of egress rules to be applied to the selected pods. Outgoing traffic is allowed if there are no NetworkPolicies selecting the pod (and cluster policy otherwise allows the traffic), OR if the traffic matches at least one egress rule across all of the NetworkPolicy objects whose podSelector matches the pod. If this field is empty then this NetworkPolicy limits all outgoing traffic (and serves solely to ensure that the pods it selects are isolated by default). This field is beta-level in 1.8 items: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.NetworkPolicyEgressRule" type: array ingress: description: List of ingress rules to be applied to the selected pods. Traffic is allowed to a pod if there are no NetworkPolicies selecting the pod OR if the traffic source is the pod's local node, OR if the traffic matches at least one ingress rule across all of the NetworkPolicy objects whose podSelector matches the pod. If this field is empty then this NetworkPolicy does not allow any traffic (and serves solely to ensure that the pods it selects are isolated by default). items: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.NetworkPolicyIngressRule" type: array podSelector: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector" description: Selects the pods to which this NetworkPolicy object applies. The array of ingress rules is applied to any pods selected by this field. Multiple network policies can select the same set of pods. In this case, the ingress rules for each are combined additively. This field is NOT optional and follows standard label selector semantics. An empty podSelector matches all pods in this namespace. policyTypes: description: List of rule types that the NetworkPolicy relates to. Valid options are Ingress, Egress, or Ingress,Egress. If this field is not specified, it will default based on the existence of Ingress or Egress rules; policies that contain an Egress section are assumed to affect Egress, and all policies (whether or not they contain an Ingress section) are assumed to affect Ingress. If you want to write an egress-only policy, you must explicitly specify policyTypes [ "Egress" ]. Likewise, if you want to write a policy that specifies that no egress is allowed, you must specify a policyTypes value that include "Egress" (since such a policy would not include an Egress section and would otherwise default to just [ "Ingress" ]). This field is beta-level in 1.8 items: type: string type: array required: - podSelector io.k8s.api.extensions.v1beta1.PodSecurityPolicy: description: Pod Security Policy governs the ability to make requests that affect the Security Context that will be applied to a pod and container. 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/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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" description: "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata" spec: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.PodSecurityPolicySpec" description: spec defines the policy enforced. x-kubernetes-group-version-kind: - group: extensions kind: PodSecurityPolicy version: v1beta1 io.k8s.api.extensions.v1beta1.PodSecurityPolicyList: description: Pod Security Policy List is a list of PodSecurityPolicy objects. 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/api-conventions.md#resources" type: string items: description: Items is a list of schema objects. items: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.PodSecurityPolicy" type: array 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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" description: "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata" required: - items x-kubernetes-group-version-kind: - group: extensions kind: PodSecurityPolicyList version: v1beta1 io.k8s.api.extensions.v1beta1.PodSecurityPolicySpec: description: Pod Security Policy Spec defines the policy enforced. properties: allowPrivilegeEscalation: description: AllowPrivilegeEscalation determines if a pod can request to allow privilege escalation. If unspecified, defaults to true. type: boolean allowedCapabilities: description: AllowedCapabilities is a list of capabilities that can be requested to add to the container. Capabilities in this field may be added at the pod author's discretion. You must not list a capability in both AllowedCapabilities and RequiredDropCapabilities. items: type: string type: array allowedFlexVolumes: description: AllowedFlexVolumes is a whitelist of allowed Flexvolumes. Empty or nil indicates that all Flexvolumes may be used. This parameter is effective only when the usage of the Flexvolumes is allowed in the "Volumes" field. items: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.AllowedFlexVolume" type: array allowedHostPaths: description: is a white list of allowed host paths. Empty indicates that all host paths may be used. items: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.AllowedHostPath" type: array defaultAddCapabilities: description: DefaultAddCapabilities is the default set of capabilities that will be added to the container unless the pod spec specifically drops the capability. You may not list a capability in both DefaultAddCapabilities and RequiredDropCapabilities. Capabilities added here are implicitly allowed, and need not be included in the AllowedCapabilities list. items: type: string type: array defaultAllowPrivilegeEscalation: description: DefaultAllowPrivilegeEscalation controls the default setting for whether a process can gain more privileges than its parent process. type: boolean fsGroup: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.FSGroupStrategyOptions" description: FSGroup is the strategy that will dictate what fs group is used by the SecurityContext. hostIPC: description: hostIPC determines if the policy allows the use of HostIPC in the pod spec. type: boolean hostNetwork: description: hostNetwork determines if the policy allows the use of HostNetwork in the pod spec. type: boolean hostPID: description: hostPID determines if the policy allows the use of HostPID in the pod spec. type: boolean hostPorts: description: hostPorts determines which host port ranges are allowed to be exposed. items: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.HostPortRange" type: array privileged: description: privileged determines if a pod can request to be run as privileged. type: boolean readOnlyRootFilesystem: description: ReadOnlyRootFilesystem when set to true will force containers to run with a read only root file system. If the container specifically requests to run with a non-read only root file system the PSP should deny the pod. If set to false the container may run with a read only root file system if it wishes but it will not be forced to. type: boolean requiredDropCapabilities: description: RequiredDropCapabilities are the capabilities that will be dropped from the container. These are required to be dropped and cannot be added. items: type: string type: array runAsUser: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.RunAsUserStrategyOptions" description: runAsUser is the strategy that will dictate the allowable RunAsUser values that may be set. seLinux: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.SELinuxStrategyOptions" description: seLinux is the strategy that will dictate the allowable labels that may be set. supplementalGroups: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.SupplementalGroupsStrategyOptions" description: SupplementalGroups is the strategy that will dictate what supplemental groups are used by the SecurityContext. volumes: description: volumes is a white list of allowed volume plugins. Empty indicates that all plugins may be used. items: type: string type: array required: - seLinux - runAsUser - supplementalGroups - fsGroup io.k8s.api.extensions.v1beta1.ReplicaSet: description: DEPRECATED - This group version of ReplicaSet is deprecated by apps/v1beta2/ReplicaSet. See the release notes for more information. ReplicaSet ensures that a specified number of pod replicas are running at any given time. 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/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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" description: "If the Labels of a ReplicaSet are empty, they are defaulted to be the same as the Pod(s) that the ReplicaSet manages. Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata" spec: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.ReplicaSetSpec" description: "Spec defines the specification of the desired behavior of the ReplicaSet. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status" status: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.ReplicaSetStatus" description: "Status is the most recently observed status of the ReplicaSet. This data may be out of date by some window of time. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status" x-kubernetes-group-version-kind: - group: extensions kind: ReplicaSet version: v1beta1 io.k8s.api.extensions.v1beta1.ReplicaSetCondition: description: ReplicaSetCondition describes the state of a replica set at a certain point. properties: lastTransitionTime: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time" description: The last time the condition transitioned from one status to another. message: description: A human readable message indicating details about the transition. type: string reason: description: The reason for the condition's last transition. type: string status: description: Status of the condition, one of True, False, Unknown. type: string type: description: Type of replica set condition. type: string required: - type - status io.k8s.api.extensions.v1beta1.ReplicaSetList: description: ReplicaSetList is a collection of ReplicaSets. 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/api-conventions.md#resources" type: string items: description: "List of ReplicaSets. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller" items: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.ReplicaSet" type: array 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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" description: "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds" required: - items x-kubernetes-group-version-kind: - group: extensions kind: ReplicaSetList version: v1beta1 io.k8s.api.extensions.v1beta1.ReplicaSetSpec: description: ReplicaSetSpec is the specification of a ReplicaSet. properties: minReadySeconds: description: Minimum number of seconds for which a newly created pod should be ready without any of its container crashing, for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready) format: int32 type: integer replicas: description: "Replicas is the number of desired replicas. This is a pointer to distinguish between explicit zero and unspecified. Defaults to 1. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller/#what-is-a-replicationcontroller" format: int32 type: integer selector: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector" description: "Selector is a label query over pods that should match the replica count. If the selector is empty, it is defaulted to the labels present on the pod template. Label keys and values that must match in order to be controlled by this replica set. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors" template: $ref: "#/definitions/io.k8s.api.core.v1.PodTemplateSpec" description: "Template is the object that describes the pod that will be created if insufficient replicas are detected. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller#pod-template" io.k8s.api.extensions.v1beta1.ReplicaSetStatus: description: ReplicaSetStatus represents the current status of a ReplicaSet. properties: availableReplicas: description: The number of available replicas (ready for at least minReadySeconds) for this replica set. format: int32 type: integer conditions: description: Represents the latest available observations of a replica set's current state. items: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.ReplicaSetCondition" type: array x-kubernetes-patch-merge-key: type x-kubernetes-patch-strategy: merge fullyLabeledReplicas: description: The number of pods that have labels matching the labels of the pod template of the replicaset. format: int32 type: integer observedGeneration: description: ObservedGeneration reflects the generation of the most recently observed ReplicaSet. format: int64 type: integer readyReplicas: description: The number of ready replicas for this replica set. format: int32 type: integer replicas: description: "Replicas is the most recently oberved number of replicas. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller/#what-is-a-replicationcontroller" format: int32 type: integer required: - replicas io.k8s.api.extensions.v1beta1.RollbackConfig: description: DEPRECATED. properties: revision: description: The revision to rollback to. If set to 0, rollback to the last revision. format: int64 type: integer io.k8s.api.extensions.v1beta1.RollingUpdateDaemonSet: description: Spec to control the desired behavior of daemon set rolling update. properties: maxUnavailable: $ref: "#/definitions/io.k8s.apimachinery.pkg.util.intstr.IntOrString" description: "The maximum number of DaemonSet pods that can be unavailable during the update. Value can be an absolute number (ex: 5) or a percentage of total number of DaemonSet pods at the start of the update (ex: 10%). Absolute number is calculated from percentage by rounding up. This cannot be 0. Default value is 1. Example: when this is set to 30%, at most 30% of the total number of nodes that should be running the daemon pod (i.e. status.desiredNumberScheduled) can have their pods stopped for an update at any given time. The update starts by stopping at most 30% of those DaemonSet pods and then brings up new DaemonSet pods in their place. Once the new pods are available, it then proceeds onto other DaemonSet pods, thus ensuring that at least 70% of original number of DaemonSet pods are available at all times during the update." io.k8s.api.extensions.v1beta1.RollingUpdateDeployment: description: Spec to control the desired behavior of rolling update. properties: maxSurge: $ref: "#/definitions/io.k8s.apimachinery.pkg.util.intstr.IntOrString" description: "The maximum number of pods that can be scheduled above the desired number of pods. Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). This can not be 0 if MaxUnavailable is 0. Absolute number is calculated from percentage by rounding up. By default, a value of 1 is used. Example: when this is set to 30%, the new RC can be scaled up immediately when the rolling update starts, such that the total number of old and new pods do not exceed 130% of desired pods. Once old pods have been killed, new RC can be scaled up further, ensuring that total number of pods running at any time during the update is atmost 130% of desired pods." maxUnavailable: $ref: "#/definitions/io.k8s.apimachinery.pkg.util.intstr.IntOrString" description: "The maximum number of pods that can be unavailable during the update. Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). Absolute number is calculated from percentage by rounding down. This can not be 0 if MaxSurge is 0. By default, a fixed value of 1 is used. Example: when this is set to 30%, the old RC can be scaled down to 70% of desired pods immediately when the rolling update starts. Once new pods are ready, old RC can be scaled down further, followed by scaling up the new RC, ensuring that the total number of pods available at all times during the update is at least 70% of desired pods." io.k8s.api.extensions.v1beta1.RunAsUserStrategyOptions: description: Run A sUser Strategy Options defines the strategy type and any options used to create the strategy. properties: ranges: description: Ranges are the allowed ranges of uids that may be used. items: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.IDRange" type: array rule: description: Rule is the strategy that will dictate the allowable RunAsUser values that may be set. type: string required: - rule io.k8s.api.extensions.v1beta1.SELinuxStrategyOptions: description: SELinux Strategy Options defines the strategy type and any options used to create the strategy. properties: rule: description: type is the strategy that will dictate the allowable labels that may be set. type: string seLinuxOptions: $ref: "#/definitions/io.k8s.api.core.v1.SELinuxOptions" description: "seLinuxOptions required to run as; required for MustRunAs More info: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/" required: - rule io.k8s.api.extensions.v1beta1.Scale: description: represents a scaling request for a resource. 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/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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" description: "Standard object metadata; More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata." spec: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.ScaleSpec" description: "defines the behavior of the scale. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status." status: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.ScaleStatus" description: "current status of the scale. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status. Read-only." x-kubernetes-group-version-kind: - group: extensions kind: Scale version: v1beta1 io.k8s.api.extensions.v1beta1.ScaleSpec: description: describes the attributes of a scale subresource properties: replicas: description: desired number of instances for the scaled object. format: int32 type: integer io.k8s.api.extensions.v1beta1.ScaleStatus: description: represents the current status of a scale subresource. properties: replicas: description: actual number of observed instances of the scaled object. format: int32 type: integer selector: additionalProperties: type: string description: "label query over pods that should match the replicas count. More info: http://kubernetes.io/docs/user-guide/labels#label-selectors" type: object targetSelector: description: "label selector for pods that should match the replicas count. This is a serializated version of both map-based and more expressive set-based selectors. This is done to avoid introspection in the clients. The string will be in the same format as the query-param syntax. If the target type only supports map-based selectors, both this field and map-based selector field are populated. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors" type: string required: - replicas io.k8s.api.extensions.v1beta1.SupplementalGroupsStrategyOptions: description: SupplementalGroupsStrategyOptions defines the strategy type and options used to create the strategy. properties: ranges: description: Ranges are the allowed ranges of supplemental groups. If you would like to force a single supplemental group then supply a single range with the same start and end. items: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.IDRange" type: array rule: description: Rule is the strategy that will dictate what supplemental groups is used in the SecurityContext. type: string io.k8s.api.networking.v1.IPBlock: description: IPBlock describes a particular CIDR (Ex. "192.168.1.1/24") that is allowed to the pods matched by a NetworkPolicySpec's podSelector. The except entry describes CIDRs that should not be included within this rule. properties: cidr: description: CIDR is a string representing the IP Block Valid examples are "192.168.1.1/24" type: string except: description: Except is a slice of CIDRs that should not be included within an IP Block Valid examples are "192.168.1.1/24" Except values will be rejected if they are outside the CIDR range items: type: string type: array required: - cidr io.k8s.api.networking.v1.NetworkPolicy: description: NetworkPolicy describes what network traffic is allowed for a set of Pods 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/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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" description: "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata" spec: $ref: "#/definitions/io.k8s.api.networking.v1.NetworkPolicySpec" description: Specification of the desired behavior for this NetworkPolicy. x-kubernetes-group-version-kind: - group: networking.k8s.io kind: NetworkPolicy version: v1 io.k8s.api.networking.v1.NetworkPolicyEgressRule: description: NetworkPolicyEgressRule describes a particular set of traffic that is allowed out of pods matched by a NetworkPolicySpec's podSelector. The traffic must match both ports and to. This type is beta-level in 1.8 properties: ports: description: List of destination ports for outgoing traffic. Each item in this list is combined using a logical OR. If this field is empty or missing, this rule matches all ports (traffic not restricted by port). If this field is present and contains at least one item, then this rule allows traffic only if the traffic matches at least one port in the list. items: $ref: "#/definitions/io.k8s.api.networking.v1.NetworkPolicyPort" type: array to: description: List of destinations for outgoing traffic of pods selected for this rule. Items in this list are combined using a logical OR operation. If this field is empty or missing, this rule matches all destinations (traffic not restricted by destination). If this field is present and contains at least one item, this rule allows traffic only if the traffic matches at least one item in the to list. items: $ref: "#/definitions/io.k8s.api.networking.v1.NetworkPolicyPeer" type: array io.k8s.api.networking.v1.NetworkPolicyIngressRule: description: NetworkPolicyIngressRule describes a particular set of traffic that is allowed to the pods matched by a NetworkPolicySpec's podSelector. The traffic must match both ports and from. properties: from: description: List of sources which should be able to access the pods selected for this rule. Items in this list are combined using a logical OR operation. If this field is empty or missing, this rule matches all sources (traffic not restricted by source). If this field is present and contains at least on item, this rule allows traffic only if the traffic matches at least one item in the from list. items: $ref: "#/definitions/io.k8s.api.networking.v1.NetworkPolicyPeer" type: array ports: description: List of ports which should be made accessible on the pods selected for this rule. Each item in this list is combined using a logical OR. If this field is empty or missing, this rule matches all ports (traffic not restricted by port). If this field is present and contains at least one item, then this rule allows traffic only if the traffic matches at least one port in the list. items: $ref: "#/definitions/io.k8s.api.networking.v1.NetworkPolicyPort" type: array io.k8s.api.networking.v1.NetworkPolicyList: description: NetworkPolicyList is a list of NetworkPolicy objects. 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/api-conventions.md#resources" type: string items: description: Items is a list of schema objects. items: $ref: "#/definitions/io.k8s.api.networking.v1.NetworkPolicy" type: array 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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" description: "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata" required: - items x-kubernetes-group-version-kind: - group: networking.k8s.io kind: NetworkPolicyList version: v1 io.k8s.api.networking.v1.NetworkPolicyPeer: description: NetworkPolicyPeer describes a peer to allow traffic from. Exactly one of its fields must be specified. properties: ipBlock: $ref: "#/definitions/io.k8s.api.networking.v1.IPBlock" description: IPBlock defines policy on a particular IPBlock namespaceSelector: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector" description: Selects Namespaces using cluster scoped-labels. This matches all pods in all namespaces selected by this label selector. This field follows standard label selector semantics. If present but empty, this selector selects all namespaces. podSelector: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector" description: This is a label selector which selects Pods in this namespace. This field follows standard label selector semantics. If present but empty, this selector selects all pods in this namespace. io.k8s.api.networking.v1.NetworkPolicyPort: description: NetworkPolicyPort describes a port to allow traffic on properties: port: $ref: "#/definitions/io.k8s.apimachinery.pkg.util.intstr.IntOrString" description: The port on the given protocol. This can either be a numerical or named port on a pod. If this field is not provided, this matches all port names and numbers. protocol: description: The protocol (TCP or UDP) which traffic must match. If not specified, this field defaults to TCP. type: string io.k8s.api.networking.v1.NetworkPolicySpec: description: NetworkPolicySpec provides the specification of a NetworkPolicy properties: egress: description: List of egress rules to be applied to the selected pods. Outgoing traffic is allowed if there are no NetworkPolicies selecting the pod (and cluster policy otherwise allows the traffic), OR if the traffic matches at least one egress rule across all of the NetworkPolicy objects whose podSelector matches the pod. If this field is empty then this NetworkPolicy limits all outgoing traffic (and serves solely to ensure that the pods it selects are isolated by default). This field is beta-level in 1.8 items: $ref: "#/definitions/io.k8s.api.networking.v1.NetworkPolicyEgressRule" type: array ingress: description: List of ingress rules to be applied to the selected pods. Traffic is allowed to a pod if there are no NetworkPolicies selecting the pod (and cluster policy otherwise allows the traffic), OR if the traffic source is the pod's local node, OR if the traffic matches at least one ingress rule across all of the NetworkPolicy objects whose podSelector matches the pod. If this field is empty then this NetworkPolicy does not allow any traffic (and serves solely to ensure that the pods it selects are isolated by default) items: $ref: "#/definitions/io.k8s.api.networking.v1.NetworkPolicyIngressRule" type: array podSelector: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector" description: Selects the pods to which this NetworkPolicy object applies. The array of ingress rules is applied to any pods selected by this field. Multiple network policies can select the same set of pods. In this case, the ingress rules for each are combined additively. This field is NOT optional and follows standard label selector semantics. An empty podSelector matches all pods in this namespace. policyTypes: description: List of rule types that the NetworkPolicy relates to. Valid options are Ingress, Egress, or Ingress,Egress. If this field is not specified, it will default based on the existence of Ingress or Egress rules; policies that contain an Egress section are assumed to affect Egress, and all policies (whether or not they contain an Ingress section) are assumed to affect Ingress. If you want to write an egress-only policy, you must explicitly specify policyTypes [ "Egress" ]. Likewise, if you want to write a policy that specifies that no egress is allowed, you must specify a policyTypes value that include "Egress" (since such a policy would not include an Egress section and would otherwise default to just [ "Ingress" ]). This field is beta-level in 1.8 items: type: string type: array required: - podSelector io.k8s.api.policy.v1beta1.AllowedFlexVolume: description: AllowedFlexVolume represents a single Flexvolume that is allowed to be used. properties: driver: description: Driver is the name of the Flexvolume driver. type: string required: - driver io.k8s.api.policy.v1beta1.AllowedHostPath: description: defines the host volume conditions that will be enabled by a policy for pods to use. It requires the path prefix to be defined. properties: pathPrefix: description: |- is the path prefix that the host volume must match. It does not support `*`. Trailing slashes are trimmed when validating the path prefix with a host path. Examples: `/foo` would allow `/foo`, `/foo/` and `/foo/bar` `/foo` would not allow `/food` or `/etc/foo` type: string io.k8s.api.policy.v1beta1.Eviction: description: Eviction evicts a pod from its node subject to certain policies and safety constraints. This is a subresource of Pod. A request to cause such an eviction is created by POSTing to .../pods//evictions. 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/api-conventions.md#resources" type: string deleteOptions: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" description: DeleteOptions may be provided 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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" description: ObjectMeta describes the pod that is being evicted. x-kubernetes-group-version-kind: - group: policy kind: Eviction version: v1beta1 io.k8s.api.policy.v1beta1.FSGroupStrategyOptions: description: FSGroupStrategyOptions defines the strategy type and options used to create the strategy. properties: ranges: description: Ranges are the allowed ranges of fs groups. If you would like to force a single fs group then supply a single range with the same start and end. items: $ref: "#/definitions/io.k8s.api.policy.v1beta1.IDRange" type: array rule: description: Rule is the strategy that will dictate what FSGroup is used in the SecurityContext. type: string io.k8s.api.policy.v1beta1.HostPortRange: description: Host Port Range defines a range of host ports that will be enabled by a policy for pods to use. It requires both the start and end to be defined. properties: max: description: max is the end of the range, inclusive. format: int32 type: integer min: description: min is the start of the range, inclusive. format: int32 type: integer required: - min - max io.k8s.api.policy.v1beta1.IDRange: description: ID Range provides a min/max of an allowed range of IDs. properties: max: description: Max is the end of the range, inclusive. format: int64 type: integer min: description: Min is the start of the range, inclusive. format: int64 type: integer required: - min - max io.k8s.api.policy.v1beta1.PodDisruptionBudget: description: PodDisruptionBudget is an object to define the max disruption that can be caused to a collection of pods 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/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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" spec: $ref: "#/definitions/io.k8s.api.policy.v1beta1.PodDisruptionBudgetSpec" description: Specification of the desired behavior of the PodDisruptionBudget. status: $ref: "#/definitions/io.k8s.api.policy.v1beta1.PodDisruptionBudgetStatus" description: Most recently observed status of the PodDisruptionBudget. x-kubernetes-group-version-kind: - group: policy kind: PodDisruptionBudget version: v1beta1 io.k8s.api.policy.v1beta1.PodDisruptionBudgetList: description: PodDisruptionBudgetList is a collection of PodDisruptionBudgets. 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/api-conventions.md#resources" type: string items: items: $ref: "#/definitions/io.k8s.api.policy.v1beta1.PodDisruptionBudget" type: array 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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" required: - items x-kubernetes-group-version-kind: - group: policy kind: PodDisruptionBudgetList version: v1beta1 io.k8s.api.policy.v1beta1.PodDisruptionBudgetSpec: description: PodDisruptionBudgetSpec is a description of a PodDisruptionBudget. properties: maxUnavailable: $ref: "#/definitions/io.k8s.apimachinery.pkg.util.intstr.IntOrString" description: An eviction is allowed if at most "maxUnavailable" pods selected by "selector" are unavailable after the eviction, i.e. even in absence of the evicted pod. For example, one can prevent all voluntary evictions by specifying 0. This is a mutually exclusive setting with "minAvailable". minAvailable: $ref: "#/definitions/io.k8s.apimachinery.pkg.util.intstr.IntOrString" description: An eviction is allowed if at least "minAvailable" pods selected by "selector" will still be available after the eviction, i.e. even in the absence of the evicted pod. So for example you can prevent all voluntary evictions by specifying "100%". selector: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector" description: Label query over pods whose evictions are managed by the disruption budget. io.k8s.api.policy.v1beta1.PodDisruptionBudgetStatus: description: PodDisruptionBudgetStatus represents information about the status of a PodDisruptionBudget. Status may trail the actual state of a system. properties: currentHealthy: description: current number of healthy pods format: int32 type: integer desiredHealthy: description: minimum desired number of healthy pods format: int32 type: integer disruptedPods: additionalProperties: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time" description: DisruptedPods contains information about pods whose eviction was processed by the API server eviction subresource handler but has not yet been observed by the PodDisruptionBudget controller. A pod will be in this map from the time when the API server processed the eviction request to the time when the pod is seen by PDB controller as having been marked for deletion (or after a timeout). The key in the map is the name of the pod and the value is the time when the API server processed the eviction request. If the deletion didn't occur and a pod is still there it will be removed from the list automatically by PodDisruptionBudget controller after some time. If everything goes smooth this map should be empty for the most of the time. Large number of entries in the map may indicate problems with pod deletions. type: object disruptionsAllowed: description: Number of pod disruptions that are currently allowed. format: int32 type: integer expectedPods: description: total number of pods counted by this disruption budget format: int32 type: integer observedGeneration: description: Most recent generation observed when updating this PDB status. PodDisruptionsAllowed and other status informatio is valid only if observedGeneration equals to PDB's object generation. format: int64 type: integer required: - disruptedPods - disruptionsAllowed - currentHealthy - desiredHealthy - expectedPods io.k8s.api.policy.v1beta1.PodSecurityPolicy: description: Pod Security Policy governs the ability to make requests that affect the Security Context that will be applied to a pod and container. 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/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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" description: "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata" spec: $ref: "#/definitions/io.k8s.api.policy.v1beta1.PodSecurityPolicySpec" description: spec defines the policy enforced. x-kubernetes-group-version-kind: - group: policy kind: PodSecurityPolicy version: v1beta1 io.k8s.api.policy.v1beta1.PodSecurityPolicyList: description: Pod Security Policy List is a list of PodSecurityPolicy objects. 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/api-conventions.md#resources" type: string items: description: Items is a list of schema objects. items: $ref: "#/definitions/io.k8s.api.policy.v1beta1.PodSecurityPolicy" type: array 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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" description: "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata" required: - items x-kubernetes-group-version-kind: - group: policy kind: PodSecurityPolicyList version: v1beta1 io.k8s.api.policy.v1beta1.PodSecurityPolicySpec: description: Pod Security Policy Spec defines the policy enforced. properties: allowPrivilegeEscalation: description: AllowPrivilegeEscalation determines if a pod can request to allow privilege escalation. If unspecified, defaults to true. type: boolean allowedCapabilities: description: AllowedCapabilities is a list of capabilities that can be requested to add to the container. Capabilities in this field may be added at the pod author's discretion. You must not list a capability in both AllowedCapabilities and RequiredDropCapabilities. items: type: string type: array allowedFlexVolumes: description: AllowedFlexVolumes is a whitelist of allowed Flexvolumes. Empty or nil indicates that all Flexvolumes may be used. This parameter is effective only when the usage of the Flexvolumes is allowed in the "Volumes" field. items: $ref: "#/definitions/io.k8s.api.policy.v1beta1.AllowedFlexVolume" type: array allowedHostPaths: description: is a white list of allowed host paths. Empty indicates that all host paths may be used. items: $ref: "#/definitions/io.k8s.api.policy.v1beta1.AllowedHostPath" type: array defaultAddCapabilities: description: DefaultAddCapabilities is the default set of capabilities that will be added to the container unless the pod spec specifically drops the capability. You may not list a capability in both DefaultAddCapabilities and RequiredDropCapabilities. Capabilities added here are implicitly allowed, and need not be included in the AllowedCapabilities list. items: type: string type: array defaultAllowPrivilegeEscalation: description: DefaultAllowPrivilegeEscalation controls the default setting for whether a process can gain more privileges than its parent process. type: boolean fsGroup: $ref: "#/definitions/io.k8s.api.policy.v1beta1.FSGroupStrategyOptions" description: FSGroup is the strategy that will dictate what fs group is used by the SecurityContext. hostIPC: description: hostIPC determines if the policy allows the use of HostIPC in the pod spec. type: boolean hostNetwork: description: hostNetwork determines if the policy allows the use of HostNetwork in the pod spec. type: boolean hostPID: description: hostPID determines if the policy allows the use of HostPID in the pod spec. type: boolean hostPorts: description: hostPorts determines which host port ranges are allowed to be exposed. items: $ref: "#/definitions/io.k8s.api.policy.v1beta1.HostPortRange" type: array privileged: description: privileged determines if a pod can request to be run as privileged. type: boolean readOnlyRootFilesystem: description: ReadOnlyRootFilesystem when set to true will force containers to run with a read only root file system. If the container specifically requests to run with a non-read only root file system the PSP should deny the pod. If set to false the container may run with a read only root file system if it wishes but it will not be forced to. type: boolean requiredDropCapabilities: description: RequiredDropCapabilities are the capabilities that will be dropped from the container. These are required to be dropped and cannot be added. items: type: string type: array runAsUser: $ref: "#/definitions/io.k8s.api.policy.v1beta1.RunAsUserStrategyOptions" description: runAsUser is the strategy that will dictate the allowable RunAsUser values that may be set. seLinux: $ref: "#/definitions/io.k8s.api.policy.v1beta1.SELinuxStrategyOptions" description: seLinux is the strategy that will dictate the allowable labels that may be set. supplementalGroups: $ref: "#/definitions/io.k8s.api.policy.v1beta1.SupplementalGroupsStrategyOptions" description: SupplementalGroups is the strategy that will dictate what supplemental groups are used by the SecurityContext. volumes: description: volumes is a white list of allowed volume plugins. Empty indicates that all plugins may be used. items: type: string type: array required: - seLinux - runAsUser - supplementalGroups - fsGroup io.k8s.api.policy.v1beta1.RunAsUserStrategyOptions: description: Run A sUser Strategy Options defines the strategy type and any options used to create the strategy. properties: ranges: description: Ranges are the allowed ranges of uids that may be used. items: $ref: "#/definitions/io.k8s.api.policy.v1beta1.IDRange" type: array rule: description: Rule is the strategy that will dictate the allowable RunAsUser values that may be set. type: string required: - rule io.k8s.api.policy.v1beta1.SELinuxStrategyOptions: description: SELinux Strategy Options defines the strategy type and any options used to create the strategy. properties: rule: description: type is the strategy that will dictate the allowable labels that may be set. type: string seLinuxOptions: $ref: "#/definitions/io.k8s.api.core.v1.SELinuxOptions" description: "seLinuxOptions required to run as; required for MustRunAs More info: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/" required: - rule io.k8s.api.policy.v1beta1.SupplementalGroupsStrategyOptions: description: SupplementalGroupsStrategyOptions defines the strategy type and options used to create the strategy. properties: ranges: description: Ranges are the allowed ranges of supplemental groups. If you would like to force a single supplemental group then supply a single range with the same start and end. items: $ref: "#/definitions/io.k8s.api.policy.v1beta1.IDRange" type: array rule: description: Rule is the strategy that will dictate what supplemental groups is used in the SecurityContext. type: string io.k8s.api.rbac.v1.AggregationRule: description: AggregationRule describes how to locate ClusterRoles to aggregate into the ClusterRole properties: clusterRoleSelectors: description: ClusterRoleSelectors holds a list of selectors which will be used to find ClusterRoles and create the rules. If any of the selectors match, then the ClusterRole's permissions will be added items: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector" type: array io.k8s.api.rbac.v1.ClusterRole: description: ClusterRole is a cluster level, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding or ClusterRoleBinding. properties: aggregationRule: $ref: "#/definitions/io.k8s.api.rbac.v1.AggregationRule" description: AggregationRule is an optional field that describes how to build the Rules for this ClusterRole. If AggregationRule is set, then the Rules are controller managed and direct changes to Rules will be stomped by the controller. 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/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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" description: Standard object's metadata. rules: description: Rules holds all the PolicyRules for this ClusterRole items: $ref: "#/definitions/io.k8s.api.rbac.v1.PolicyRule" type: array required: - rules x-kubernetes-group-version-kind: - group: rbac.authorization.k8s.io kind: ClusterRole version: v1 io.k8s.api.rbac.v1.ClusterRoleBinding: description: ClusterRoleBinding references a ClusterRole, but not contain it. It can reference a ClusterRole in the global namespace, and adds who information via Subject. 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/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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" description: Standard object's metadata. roleRef: $ref: "#/definitions/io.k8s.api.rbac.v1.RoleRef" description: RoleRef can only reference a ClusterRole in the global namespace. If the RoleRef cannot be resolved, the Authorizer must return an error. subjects: description: Subjects holds references to the objects the role applies to. items: $ref: "#/definitions/io.k8s.api.rbac.v1.Subject" type: array required: - subjects - roleRef x-kubernetes-group-version-kind: - group: rbac.authorization.k8s.io kind: ClusterRoleBinding version: v1 io.k8s.api.rbac.v1.ClusterRoleBindingList: description: ClusterRoleBindingList is a collection of ClusterRoleBindings 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/api-conventions.md#resources" type: string items: description: Items is a list of ClusterRoleBindings items: $ref: "#/definitions/io.k8s.api.rbac.v1.ClusterRoleBinding" type: array 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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" description: Standard object's metadata. required: - items x-kubernetes-group-version-kind: - group: rbac.authorization.k8s.io kind: ClusterRoleBindingList version: v1 io.k8s.api.rbac.v1.ClusterRoleList: description: ClusterRoleList is a collection of ClusterRoles 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/api-conventions.md#resources" type: string items: description: Items is a list of ClusterRoles items: $ref: "#/definitions/io.k8s.api.rbac.v1.ClusterRole" type: array 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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" description: Standard object's metadata. required: - items x-kubernetes-group-version-kind: - group: rbac.authorization.k8s.io kind: ClusterRoleList version: v1 io.k8s.api.rbac.v1.PolicyRule: description: PolicyRule holds information that describes a policy rule, but does not contain information about who the rule applies to or which namespace the rule applies to. properties: apiGroups: description: APIGroups is the name of the APIGroup that contains the resources. If multiple API groups are specified, any action requested against one of the enumerated resources in any API group will be allowed. items: type: string type: array nonResourceURLs: description: NonResourceURLs is a set of partial urls that a user should have access to. *s are allowed, but only as the full, final step in the path Since non-resource URLs are not namespaced, this field is only applicable for ClusterRoles referenced from a ClusterRoleBinding. Rules can either apply to API resources (such as "pods" or "secrets") or non-resource URL paths (such as "/api"), but not both. items: type: string type: array resourceNames: description: ResourceNames is an optional white list of names that the rule applies to. An empty set means that everything is allowed. items: type: string type: array resources: description: Resources is a list of resources this rule applies to. ResourceAll represents all resources. items: type: string type: array verbs: description: Verbs is a list of Verbs that apply to ALL the ResourceKinds and AttributeRestrictions contained in this rule. VerbAll represents all kinds. items: type: string type: array required: - verbs io.k8s.api.rbac.v1.Role: description: Role is a namespaced, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding. 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/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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" description: Standard object's metadata. rules: description: Rules holds all the PolicyRules for this Role items: $ref: "#/definitions/io.k8s.api.rbac.v1.PolicyRule" type: array required: - rules x-kubernetes-group-version-kind: - group: rbac.authorization.k8s.io kind: Role version: v1 io.k8s.api.rbac.v1.RoleBinding: description: RoleBinding references a role, but does not contain it. It can reference a Role in the same namespace or a ClusterRole in the global namespace. It adds who information via Subjects and namespace information by which namespace it exists in. RoleBindings in a given namespace only have effect in that namespace. 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/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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" description: Standard object's metadata. roleRef: $ref: "#/definitions/io.k8s.api.rbac.v1.RoleRef" description: RoleRef can reference a Role in the current namespace or a ClusterRole in the global namespace. If the RoleRef cannot be resolved, the Authorizer must return an error. subjects: description: Subjects holds references to the objects the role applies to. items: $ref: "#/definitions/io.k8s.api.rbac.v1.Subject" type: array required: - subjects - roleRef x-kubernetes-group-version-kind: - group: rbac.authorization.k8s.io kind: RoleBinding version: v1 io.k8s.api.rbac.v1.RoleBindingList: description: RoleBindingList is a collection of RoleBindings 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/api-conventions.md#resources" type: string items: description: Items is a list of RoleBindings items: $ref: "#/definitions/io.k8s.api.rbac.v1.RoleBinding" type: array 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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" description: Standard object's metadata. required: - items x-kubernetes-group-version-kind: - group: rbac.authorization.k8s.io kind: RoleBindingList version: v1 io.k8s.api.rbac.v1.RoleList: description: RoleList is a collection of Roles 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/api-conventions.md#resources" type: string items: description: Items is a list of Roles items: $ref: "#/definitions/io.k8s.api.rbac.v1.Role" type: array 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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" description: Standard object's metadata. required: - items x-kubernetes-group-version-kind: - group: rbac.authorization.k8s.io kind: RoleList version: v1 io.k8s.api.rbac.v1.RoleRef: description: RoleRef contains information that points to the role being used properties: apiGroup: description: APIGroup is the group for the resource being referenced type: string kind: description: Kind is the type of resource being referenced type: string name: description: Name is the name of resource being referenced type: string required: - apiGroup - kind - name io.k8s.api.rbac.v1.Subject: description: Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference, or a value for non-objects such as user and group names. properties: apiGroup: description: APIGroup holds the API group of the referenced subject. Defaults to "" for ServiceAccount subjects. Defaults to "rbac.authorization.k8s.io" for User and Group subjects. type: string kind: description: Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount". If the Authorizer does not recognized the kind value, the Authorizer should report an error. type: string name: description: Name of the object being referenced. type: string namespace: description: Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty the Authorizer should report an error. type: string required: - kind - name io.k8s.api.rbac.v1alpha1.AggregationRule: description: AggregationRule describes how to locate ClusterRoles to aggregate into the ClusterRole properties: clusterRoleSelectors: description: ClusterRoleSelectors holds a list of selectors which will be used to find ClusterRoles and create the rules. If any of the selectors match, then the ClusterRole's permissions will be added items: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector" type: array io.k8s.api.rbac.v1alpha1.ClusterRole: description: ClusterRole is a cluster level, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding or ClusterRoleBinding. properties: aggregationRule: $ref: "#/definitions/io.k8s.api.rbac.v1alpha1.AggregationRule" description: AggregationRule is an optional field that describes how to build the Rules for this ClusterRole. If AggregationRule is set, then the Rules are controller managed and direct changes to Rules will be stomped by the controller. 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/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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" description: Standard object's metadata. rules: description: Rules holds all the PolicyRules for this ClusterRole items: $ref: "#/definitions/io.k8s.api.rbac.v1alpha1.PolicyRule" type: array required: - rules x-kubernetes-group-version-kind: - group: rbac.authorization.k8s.io kind: ClusterRole version: v1alpha1 io.k8s.api.rbac.v1alpha1.ClusterRoleBinding: description: ClusterRoleBinding references a ClusterRole, but not contain it. It can reference a ClusterRole in the global namespace, and adds who information via Subject. 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/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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" description: Standard object's metadata. roleRef: $ref: "#/definitions/io.k8s.api.rbac.v1alpha1.RoleRef" description: RoleRef can only reference a ClusterRole in the global namespace. If the RoleRef cannot be resolved, the Authorizer must return an error. subjects: description: Subjects holds references to the objects the role applies to. items: $ref: "#/definitions/io.k8s.api.rbac.v1alpha1.Subject" type: array required: - subjects - roleRef x-kubernetes-group-version-kind: - group: rbac.authorization.k8s.io kind: ClusterRoleBinding version: v1alpha1 io.k8s.api.rbac.v1alpha1.ClusterRoleBindingList: description: ClusterRoleBindingList is a collection of ClusterRoleBindings 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/api-conventions.md#resources" type: string items: description: Items is a list of ClusterRoleBindings items: $ref: "#/definitions/io.k8s.api.rbac.v1alpha1.ClusterRoleBinding" type: array 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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" description: Standard object's metadata. required: - items x-kubernetes-group-version-kind: - group: rbac.authorization.k8s.io kind: ClusterRoleBindingList version: v1alpha1 io.k8s.api.rbac.v1alpha1.ClusterRoleList: description: ClusterRoleList is a collection of ClusterRoles 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/api-conventions.md#resources" type: string items: description: Items is a list of ClusterRoles items: $ref: "#/definitions/io.k8s.api.rbac.v1alpha1.ClusterRole" type: array 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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" description: Standard object's metadata. required: - items x-kubernetes-group-version-kind: - group: rbac.authorization.k8s.io kind: ClusterRoleList version: v1alpha1 io.k8s.api.rbac.v1alpha1.PolicyRule: description: PolicyRule holds information that describes a policy rule, but does not contain information about who the rule applies to or which namespace the rule applies to. properties: apiGroups: description: APIGroups is the name of the APIGroup that contains the resources. If multiple API groups are specified, any action requested against one of the enumerated resources in any API group will be allowed. items: type: string type: array nonResourceURLs: description: NonResourceURLs is a set of partial urls that a user should have access to. *s are allowed, but only as the full, final step in the path This name is intentionally different than the internal type so that the DefaultConvert works nicely and because the ordering may be different. Since non-resource URLs are not namespaced, this field is only applicable for ClusterRoles referenced from a ClusterRoleBinding. Rules can either apply to API resources (such as "pods" or "secrets") or non-resource URL paths (such as "/api"), but not both. items: type: string type: array resourceNames: description: ResourceNames is an optional white list of names that the rule applies to. An empty set means that everything is allowed. items: type: string type: array resources: description: Resources is a list of resources this rule applies to. ResourceAll represents all resources. items: type: string type: array verbs: description: Verbs is a list of Verbs that apply to ALL the ResourceKinds and AttributeRestrictions contained in this rule. VerbAll represents all kinds. items: type: string type: array required: - verbs io.k8s.api.rbac.v1alpha1.Role: description: Role is a namespaced, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding. 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/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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" description: Standard object's metadata. rules: description: Rules holds all the PolicyRules for this Role items: $ref: "#/definitions/io.k8s.api.rbac.v1alpha1.PolicyRule" type: array required: - rules x-kubernetes-group-version-kind: - group: rbac.authorization.k8s.io kind: Role version: v1alpha1 io.k8s.api.rbac.v1alpha1.RoleBinding: description: RoleBinding references a role, but does not contain it. It can reference a Role in the same namespace or a ClusterRole in the global namespace. It adds who information via Subjects and namespace information by which namespace it exists in. RoleBindings in a given namespace only have effect in that namespace. 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/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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" description: Standard object's metadata. roleRef: $ref: "#/definitions/io.k8s.api.rbac.v1alpha1.RoleRef" description: RoleRef can reference a Role in the current namespace or a ClusterRole in the global namespace. If the RoleRef cannot be resolved, the Authorizer must return an error. subjects: description: Subjects holds references to the objects the role applies to. items: $ref: "#/definitions/io.k8s.api.rbac.v1alpha1.Subject" type: array required: - subjects - roleRef x-kubernetes-group-version-kind: - group: rbac.authorization.k8s.io kind: RoleBinding version: v1alpha1 io.k8s.api.rbac.v1alpha1.RoleBindingList: description: RoleBindingList is a collection of RoleBindings 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/api-conventions.md#resources" type: string items: description: Items is a list of RoleBindings items: $ref: "#/definitions/io.k8s.api.rbac.v1alpha1.RoleBinding" type: array 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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" description: Standard object's metadata. required: - items x-kubernetes-group-version-kind: - group: rbac.authorization.k8s.io kind: RoleBindingList version: v1alpha1 io.k8s.api.rbac.v1alpha1.RoleList: description: RoleList is a collection of Roles 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/api-conventions.md#resources" type: string items: description: Items is a list of Roles items: $ref: "#/definitions/io.k8s.api.rbac.v1alpha1.Role" type: array 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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" description: Standard object's metadata. required: - items x-kubernetes-group-version-kind: - group: rbac.authorization.k8s.io kind: RoleList version: v1alpha1 io.k8s.api.rbac.v1alpha1.RoleRef: description: RoleRef contains information that points to the role being used properties: apiGroup: description: APIGroup is the group for the resource being referenced type: string kind: description: Kind is the type of resource being referenced type: string name: description: Name is the name of resource being referenced type: string required: - apiGroup - kind - name io.k8s.api.rbac.v1alpha1.Subject: description: Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference, or a value for non-objects such as user and group names. properties: apiVersion: description: APIVersion holds the API group and version of the referenced subject. Defaults to "v1" for ServiceAccount subjects. Defaults to "rbac.authorization.k8s.io/v1alpha1" for User and Group subjects. type: string kind: description: Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount". If the Authorizer does not recognized the kind value, the Authorizer should report an error. type: string name: description: Name of the object being referenced. type: string namespace: description: Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty the Authorizer should report an error. type: string required: - kind - name io.k8s.api.rbac.v1beta1.AggregationRule: description: AggregationRule describes how to locate ClusterRoles to aggregate into the ClusterRole properties: clusterRoleSelectors: description: ClusterRoleSelectors holds a list of selectors which will be used to find ClusterRoles and create the rules. If any of the selectors match, then the ClusterRole's permissions will be added items: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector" type: array io.k8s.api.rbac.v1beta1.ClusterRole: description: ClusterRole is a cluster level, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding or ClusterRoleBinding. properties: aggregationRule: $ref: "#/definitions/io.k8s.api.rbac.v1beta1.AggregationRule" description: AggregationRule is an optional field that describes how to build the Rules for this ClusterRole. If AggregationRule is set, then the Rules are controller managed and direct changes to Rules will be stomped by the controller. 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/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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" description: Standard object's metadata. rules: description: Rules holds all the PolicyRules for this ClusterRole items: $ref: "#/definitions/io.k8s.api.rbac.v1beta1.PolicyRule" type: array required: - rules x-kubernetes-group-version-kind: - group: rbac.authorization.k8s.io kind: ClusterRole version: v1beta1 io.k8s.api.rbac.v1beta1.ClusterRoleBinding: description: ClusterRoleBinding references a ClusterRole, but not contain it. It can reference a ClusterRole in the global namespace, and adds who information via Subject. 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/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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" description: Standard object's metadata. roleRef: $ref: "#/definitions/io.k8s.api.rbac.v1beta1.RoleRef" description: RoleRef can only reference a ClusterRole in the global namespace. If the RoleRef cannot be resolved, the Authorizer must return an error. subjects: description: Subjects holds references to the objects the role applies to. items: $ref: "#/definitions/io.k8s.api.rbac.v1beta1.Subject" type: array required: - subjects - roleRef x-kubernetes-group-version-kind: - group: rbac.authorization.k8s.io kind: ClusterRoleBinding version: v1beta1 io.k8s.api.rbac.v1beta1.ClusterRoleBindingList: description: ClusterRoleBindingList is a collection of ClusterRoleBindings 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/api-conventions.md#resources" type: string items: description: Items is a list of ClusterRoleBindings items: $ref: "#/definitions/io.k8s.api.rbac.v1beta1.ClusterRoleBinding" type: array 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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" description: Standard object's metadata. required: - items x-kubernetes-group-version-kind: - group: rbac.authorization.k8s.io kind: ClusterRoleBindingList version: v1beta1 io.k8s.api.rbac.v1beta1.ClusterRoleList: description: ClusterRoleList is a collection of ClusterRoles 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/api-conventions.md#resources" type: string items: description: Items is a list of ClusterRoles items: $ref: "#/definitions/io.k8s.api.rbac.v1beta1.ClusterRole" type: array 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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" description: Standard object's metadata. required: - items x-kubernetes-group-version-kind: - group: rbac.authorization.k8s.io kind: ClusterRoleList version: v1beta1 io.k8s.api.rbac.v1beta1.PolicyRule: description: PolicyRule holds information that describes a policy rule, but does not contain information about who the rule applies to or which namespace the rule applies to. properties: apiGroups: description: APIGroups is the name of the APIGroup that contains the resources. If multiple API groups are specified, any action requested against one of the enumerated resources in any API group will be allowed. items: type: string type: array nonResourceURLs: description: NonResourceURLs is a set of partial urls that a user should have access to. *s are allowed, but only as the full, final step in the path Since non-resource URLs are not namespaced, this field is only applicable for ClusterRoles referenced from a ClusterRoleBinding. Rules can either apply to API resources (such as "pods" or "secrets") or non-resource URL paths (such as "/api"), but not both. items: type: string type: array resourceNames: description: ResourceNames is an optional white list of names that the rule applies to. An empty set means that everything is allowed. items: type: string type: array resources: description: Resources is a list of resources this rule applies to. '*' represents all resources in the specified apiGroups. '*/foo' represents the subresource 'foo' for all resources in the specified apiGroups. items: type: string type: array verbs: description: Verbs is a list of Verbs that apply to ALL the ResourceKinds and AttributeRestrictions contained in this rule. VerbAll represents all kinds. items: type: string type: array required: - verbs io.k8s.api.rbac.v1beta1.Role: description: Role is a namespaced, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding. 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/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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" description: Standard object's metadata. rules: description: Rules holds all the PolicyRules for this Role items: $ref: "#/definitions/io.k8s.api.rbac.v1beta1.PolicyRule" type: array required: - rules x-kubernetes-group-version-kind: - group: rbac.authorization.k8s.io kind: Role version: v1beta1 io.k8s.api.rbac.v1beta1.RoleBinding: description: RoleBinding references a role, but does not contain it. It can reference a Role in the same namespace or a ClusterRole in the global namespace. It adds who information via Subjects and namespace information by which namespace it exists in. RoleBindings in a given namespace only have effect in that namespace. 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/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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" description: Standard object's metadata. roleRef: $ref: "#/definitions/io.k8s.api.rbac.v1beta1.RoleRef" description: RoleRef can reference a Role in the current namespace or a ClusterRole in the global namespace. If the RoleRef cannot be resolved, the Authorizer must return an error. subjects: description: Subjects holds references to the objects the role applies to. items: $ref: "#/definitions/io.k8s.api.rbac.v1beta1.Subject" type: array required: - subjects - roleRef x-kubernetes-group-version-kind: - group: rbac.authorization.k8s.io kind: RoleBinding version: v1beta1 io.k8s.api.rbac.v1beta1.RoleBindingList: description: RoleBindingList is a collection of RoleBindings 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/api-conventions.md#resources" type: string items: description: Items is a list of RoleBindings items: $ref: "#/definitions/io.k8s.api.rbac.v1beta1.RoleBinding" type: array 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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" description: Standard object's metadata. required: - items x-kubernetes-group-version-kind: - group: rbac.authorization.k8s.io kind: RoleBindingList version: v1beta1 io.k8s.api.rbac.v1beta1.RoleList: description: RoleList is a collection of Roles 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/api-conventions.md#resources" type: string items: description: Items is a list of Roles items: $ref: "#/definitions/io.k8s.api.rbac.v1beta1.Role" type: array 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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" description: Standard object's metadata. required: - items x-kubernetes-group-version-kind: - group: rbac.authorization.k8s.io kind: RoleList version: v1beta1 io.k8s.api.rbac.v1beta1.RoleRef: description: RoleRef contains information that points to the role being used properties: apiGroup: description: APIGroup is the group for the resource being referenced type: string kind: description: Kind is the type of resource being referenced type: string name: description: Name is the name of resource being referenced type: string required: - apiGroup - kind - name io.k8s.api.rbac.v1beta1.Subject: description: Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference, or a value for non-objects such as user and group names. properties: apiGroup: description: APIGroup holds the API group of the referenced subject. Defaults to "" for ServiceAccount subjects. Defaults to "rbac.authorization.k8s.io" for User and Group subjects. type: string kind: description: Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount". If the Authorizer does not recognized the kind value, the Authorizer should report an error. type: string name: description: Name of the object being referenced. type: string namespace: description: Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty the Authorizer should report an error. type: string required: - kind - name io.k8s.api.scheduling.v1alpha1.PriorityClass: description: PriorityClass defines mapping from a priority class name to the priority integer value. The value can be any valid integer. 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/api-conventions.md#resources" type: string description: description: description is an arbitrary string that usually provides guidelines on when this priority class should be used. type: string globalDefault: description: globalDefault specifies whether this PriorityClass should be considered as the default priority for pods that do not have any priority class. Only one PriorityClass can be marked as `globalDefault`. However, if more than one PriorityClasses exists with their `globalDefault` field set to true, the smallest value of such global default PriorityClasses will be used as the default priority. type: boolean 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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" description: "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata" value: description: The value of this priority class. This is the actual priority that pods receive when they have the name of this class in their pod spec. format: int32 type: integer required: - value x-kubernetes-group-version-kind: - group: scheduling.k8s.io kind: PriorityClass version: v1alpha1 io.k8s.api.scheduling.v1alpha1.PriorityClassList: description: PriorityClassList is a collection of priority classes. 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/api-conventions.md#resources" type: string items: description: items is the list of PriorityClasses items: $ref: "#/definitions/io.k8s.api.scheduling.v1alpha1.PriorityClass" type: array 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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" description: "Standard list metadata More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata" required: - items x-kubernetes-group-version-kind: - group: scheduling.k8s.io kind: PriorityClassList version: v1alpha1 io.k8s.api.settings.v1alpha1.PodPreset: description: PodPreset is a policy resource that defines additional runtime requirements for a Pod. 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/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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" spec: $ref: "#/definitions/io.k8s.api.settings.v1alpha1.PodPresetSpec" x-kubernetes-group-version-kind: - group: settings.k8s.io kind: PodPreset version: v1alpha1 io.k8s.api.settings.v1alpha1.PodPresetList: description: PodPresetList is a list of PodPreset objects. 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/api-conventions.md#resources" type: string items: description: Items is a list of schema objects. items: $ref: "#/definitions/io.k8s.api.settings.v1alpha1.PodPreset" type: array 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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" description: "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata" required: - items x-kubernetes-group-version-kind: - group: settings.k8s.io kind: PodPresetList version: v1alpha1 io.k8s.api.settings.v1alpha1.PodPresetSpec: description: PodPresetSpec is a description of a pod preset. properties: env: description: Env defines the collection of EnvVar to inject into containers. items: $ref: "#/definitions/io.k8s.api.core.v1.EnvVar" type: array envFrom: description: EnvFrom defines the collection of EnvFromSource to inject into containers. items: $ref: "#/definitions/io.k8s.api.core.v1.EnvFromSource" type: array selector: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector" description: Selector is a label query over a set of resources, in this case pods. Required. volumeMounts: description: VolumeMounts defines the collection of VolumeMount to inject into containers. items: $ref: "#/definitions/io.k8s.api.core.v1.VolumeMount" type: array volumes: description: Volumes defines the collection of Volume to inject into the pod. items: $ref: "#/definitions/io.k8s.api.core.v1.Volume" type: array io.k8s.api.storage.v1.StorageClass: description: |- StorageClass describes the parameters for a class of storage for which PersistentVolumes can be dynamically provisioned. StorageClasses are non-namespaced; the name of the storage class according to etcd is in ObjectMeta.Name. properties: allowVolumeExpansion: description: AllowVolumeExpansion shows whether the storage class allow volume expand type: boolean 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/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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" description: "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata" mountOptions: description: Dynamically provisioned PersistentVolumes of this storage class are created with these mountOptions, e.g. ["ro", "soft"]. Not validated - mount of the PVs will simply fail if one is invalid. items: type: string type: array parameters: additionalProperties: type: string description: Parameters holds the parameters for the provisioner that should create volumes of this storage class. type: object provisioner: description: Provisioner indicates the type of the provisioner. type: string reclaimPolicy: description: Dynamically provisioned PersistentVolumes of this storage class are created with this reclaimPolicy. Defaults to Delete. type: string volumeBindingMode: description: VolumeBindingMode indicates how PersistentVolumeClaims should be provisioned and bound. When unset, VolumeBindingImmediate is used. This field is alpha-level and is only honored by servers that enable the VolumeScheduling feature. type: string required: - provisioner x-kubernetes-group-version-kind: - group: storage.k8s.io kind: StorageClass version: v1 io.k8s.api.storage.v1.StorageClassList: description: StorageClassList is a collection of storage classes. 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/api-conventions.md#resources" type: string items: description: Items is the list of StorageClasses items: $ref: "#/definitions/io.k8s.api.storage.v1.StorageClass" type: array 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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" description: "Standard list metadata More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata" required: - items x-kubernetes-group-version-kind: - group: storage.k8s.io kind: StorageClassList version: v1 io.k8s.api.storage.v1alpha1.VolumeAttachment: description: |- VolumeAttachment captures the intent to attach or detach the specified volume to/from the specified node. VolumeAttachment objects are non-namespaced. 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/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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" description: "Standard object metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata" spec: $ref: "#/definitions/io.k8s.api.storage.v1alpha1.VolumeAttachmentSpec" description: Specification of the desired attach/detach volume behavior. Populated by the Kubernetes system. status: $ref: "#/definitions/io.k8s.api.storage.v1alpha1.VolumeAttachmentStatus" description: Status of the VolumeAttachment request. Populated by the entity completing the attach or detach operation, i.e. the external-attacher. required: - spec x-kubernetes-group-version-kind: - group: storage.k8s.io kind: VolumeAttachment version: v1alpha1 io.k8s.api.storage.v1alpha1.VolumeAttachmentList: description: VolumeAttachmentList is a collection of VolumeAttachment objects. 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/api-conventions.md#resources" type: string items: description: Items is the list of VolumeAttachments items: $ref: "#/definitions/io.k8s.api.storage.v1alpha1.VolumeAttachment" type: array 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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" description: "Standard list metadata More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata" required: - items x-kubernetes-group-version-kind: - group: storage.k8s.io kind: VolumeAttachmentList version: v1alpha1 io.k8s.api.storage.v1alpha1.VolumeAttachmentSource: description: VolumeAttachmentSource represents a volume that should be attached. Right now only PersistenVolumes can be attached via external attacher, in future we may allow also inline volumes in pods. Exactly one member can be set. properties: persistentVolumeName: description: Name of the persistent volume to attach. type: string io.k8s.api.storage.v1alpha1.VolumeAttachmentSpec: description: VolumeAttachmentSpec is the specification of a VolumeAttachment request. properties: attacher: description: Attacher indicates the name of the volume driver that MUST handle this request. This is the name returned by GetPluginName(). type: string nodeName: description: The node that the volume should be attached to. type: string source: $ref: "#/definitions/io.k8s.api.storage.v1alpha1.VolumeAttachmentSource" description: Source represents the volume that should be attached. required: - attacher - source - nodeName io.k8s.api.storage.v1alpha1.VolumeAttachmentStatus: description: VolumeAttachmentStatus is the status of a VolumeAttachment request. properties: attachError: $ref: "#/definitions/io.k8s.api.storage.v1alpha1.VolumeError" description: The last error encountered during attach operation, if any. This field must only be set by the entity completing the attach operation, i.e. the external-attacher. attached: description: Indicates the volume is successfully attached. This field must only be set by the entity completing the attach operation, i.e. the external-attacher. type: boolean attachmentMetadata: additionalProperties: type: string description: Upon successful attach, this field is populated with any information returned by the attach operation that must be passed into subsequent WaitForAttach or Mount calls. This field must only be set by the entity completing the attach operation, i.e. the external-attacher. type: object detachError: $ref: "#/definitions/io.k8s.api.storage.v1alpha1.VolumeError" description: The last error encountered during detach operation, if any. This field must only be set by the entity completing the detach operation, i.e. the external-attacher. required: - attached io.k8s.api.storage.v1alpha1.VolumeError: description: VolumeError captures an error encountered during a volume operation. properties: message: description: String detailing the error encountered during Attach or Detach operation. This string maybe logged, so it should not contain sensitive information. type: string time: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time" description: Time the error was encountered. io.k8s.api.storage.v1beta1.StorageClass: description: |- StorageClass describes the parameters for a class of storage for which PersistentVolumes can be dynamically provisioned. StorageClasses are non-namespaced; the name of the storage class according to etcd is in ObjectMeta.Name. properties: allowVolumeExpansion: description: AllowVolumeExpansion shows whether the storage class allow volume expand type: boolean 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/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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" description: "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata" mountOptions: description: Dynamically provisioned PersistentVolumes of this storage class are created with these mountOptions, e.g. ["ro", "soft"]. Not validated - mount of the PVs will simply fail if one is invalid. items: type: string type: array parameters: additionalProperties: type: string description: Parameters holds the parameters for the provisioner that should create volumes of this storage class. type: object provisioner: description: Provisioner indicates the type of the provisioner. type: string reclaimPolicy: description: Dynamically provisioned PersistentVolumes of this storage class are created with this reclaimPolicy. Defaults to Delete. type: string volumeBindingMode: description: VolumeBindingMode indicates how PersistentVolumeClaims should be provisioned and bound. When unset, VolumeBindingImmediate is used. This field is alpha-level and is only honored by servers that enable the VolumeScheduling feature. type: string required: - provisioner x-kubernetes-group-version-kind: - group: storage.k8s.io kind: StorageClass version: v1beta1 io.k8s.api.storage.v1beta1.StorageClassList: description: StorageClassList is a collection of storage classes. 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/api-conventions.md#resources" type: string items: description: Items is the list of StorageClasses items: $ref: "#/definitions/io.k8s.api.storage.v1beta1.StorageClass" type: array 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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" description: "Standard list metadata More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata" required: - items x-kubernetes-group-version-kind: - group: storage.k8s.io kind: StorageClassList version: v1beta1 io.k8s.api.storage.v1beta1.VolumeAttachment: description: |- VolumeAttachment captures the intent to attach or detach the specified volume to/from the specified node. VolumeAttachment objects are non-namespaced. 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/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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" description: "Standard object metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata" spec: $ref: "#/definitions/io.k8s.api.storage.v1beta1.VolumeAttachmentSpec" description: Specification of the desired attach/detach volume behavior. Populated by the Kubernetes system. status: $ref: "#/definitions/io.k8s.api.storage.v1beta1.VolumeAttachmentStatus" description: Status of the VolumeAttachment request. Populated by the entity completing the attach or detach operation, i.e. the external-attacher. required: - spec x-kubernetes-group-version-kind: - group: storage.k8s.io kind: VolumeAttachment version: v1beta1 io.k8s.api.storage.v1beta1.VolumeAttachmentList: description: VolumeAttachmentList is a collection of VolumeAttachment objects. 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/api-conventions.md#resources" type: string items: description: Items is the list of VolumeAttachments items: $ref: "#/definitions/io.k8s.api.storage.v1beta1.VolumeAttachment" type: array 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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" description: "Standard list metadata More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata" required: - items x-kubernetes-group-version-kind: - group: storage.k8s.io kind: VolumeAttachmentList version: v1beta1 io.k8s.api.storage.v1beta1.VolumeAttachmentSource: description: VolumeAttachmentSource represents a volume that should be attached. Right now only PersistenVolumes can be attached via external attacher, in future we may allow also inline volumes in pods. Exactly one member can be set. properties: persistentVolumeName: description: Name of the persistent volume to attach. type: string io.k8s.api.storage.v1beta1.VolumeAttachmentSpec: description: VolumeAttachmentSpec is the specification of a VolumeAttachment request. properties: attacher: description: Attacher indicates the name of the volume driver that MUST handle this request. This is the name returned by GetPluginName(). type: string nodeName: description: The node that the volume should be attached to. type: string source: $ref: "#/definitions/io.k8s.api.storage.v1beta1.VolumeAttachmentSource" description: Source represents the volume that should be attached. required: - attacher - source - nodeName io.k8s.api.storage.v1beta1.VolumeAttachmentStatus: description: VolumeAttachmentStatus is the status of a VolumeAttachment request. properties: attachError: $ref: "#/definitions/io.k8s.api.storage.v1beta1.VolumeError" description: The last error encountered during attach operation, if any. This field must only be set by the entity completing the attach operation, i.e. the external-attacher. attached: description: Indicates the volume is successfully attached. This field must only be set by the entity completing the attach operation, i.e. the external-attacher. type: boolean attachmentMetadata: additionalProperties: type: string description: Upon successful attach, this field is populated with any information returned by the attach operation that must be passed into subsequent WaitForAttach or Mount calls. This field must only be set by the entity completing the attach operation, i.e. the external-attacher. type: object detachError: $ref: "#/definitions/io.k8s.api.storage.v1beta1.VolumeError" description: The last error encountered during detach operation, if any. This field must only be set by the entity completing the detach operation, i.e. the external-attacher. required: - attached io.k8s.api.storage.v1beta1.VolumeError: description: VolumeError captures an error encountered during a volume operation. properties: message: description: String detailing the error encountered during Attach or Detach operation. This string maybe logged, so it should not contain sensitive information. type: string time: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time" description: Time the error was encountered. io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinition: description: CustomResourceDefinition represents a resource that should be exposed on the API server. Its name MUST be in the format <.spec.name>.<.spec.group>. 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/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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" spec: $ref: "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinitionSpec" description: Spec describes how the user wants the resources to appear status: $ref: "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinitionStatus" description: Status indicates the actual state of the CustomResourceDefinition io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinitionCondition: description: CustomResourceDefinitionCondition contains details for the current condition of this pod. properties: lastTransitionTime: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time" description: Last time the condition transitioned from one status to another. message: description: Human-readable message indicating details about last transition. type: string reason: description: Unique, one-word, CamelCase reason for the condition's last transition. type: string status: description: Status is the status of the condition. Can be True, False, Unknown. type: string type: description: Type is the type of the condition. type: string required: - type - status io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinitionList: description: CustomResourceDefinitionList is a list of CustomResourceDefinition objects. 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/api-conventions.md#resources" type: string items: description: Items individual CustomResourceDefinitions items: $ref: "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinition" type: array 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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" required: - items io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinitionNames: description: CustomResourceDefinitionNames indicates the names to serve this CustomResourceDefinition properties: categories: description: Categories is a list of grouped resources custom resources belong to (e.g. 'all') items: type: string type: array kind: description: Kind is the serialized kind of the resource. It is normally CamelCase and singular. type: string listKind: description: ListKind is the serialized kind of the list for this resource. Defaults to List. type: string plural: description: "Plural is the plural name of the resource to serve. It must match the name of the CustomResourceDefinition-registration too: plural.group and it must be all lowercase." type: string shortNames: description: ShortNames are short names for the resource. It must be all lowercase. items: type: string type: array singular: description: Singular is the singular name of the resource. It must be all lowercase Defaults to lowercased type: string required: - plural - kind io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinitionSpec: description: CustomResourceDefinitionSpec describes how a user wants their resource to appear properties: group: description: Group is the group this resource belongs in type: string names: $ref: "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinitionNames" description: Names are the names used to describe this custom resource scope: description: Scope indicates whether this resource is cluster or namespace scoped. Default is namespaced type: string subresources: $ref: "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceSubresources" description: Subresources describes the subresources for CustomResources This field is alpha-level and should only be sent to servers that enable subresources via the CustomResourceSubresources feature gate. validation: $ref: "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceValidation" description: Validation describes the validation methods for CustomResources version: description: Version is the version this resource belongs in type: string required: - group - version - names - scope io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinitionStatus: description: CustomResourceDefinitionStatus indicates the state of the CustomResourceDefinition properties: acceptedNames: $ref: "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinitionNames" description: AcceptedNames are the names that are actually being used to serve discovery They may be different than the names in spec. conditions: description: Conditions indicate state for particular aspects of a CustomResourceDefinition items: $ref: "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinitionCondition" type: array required: - conditions - acceptedNames io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceSubresourceScale: description: CustomResourceSubresourceScale defines how to serve the scale subresource for CustomResources. properties: labelSelectorPath: description: LabelSelectorPath defines the JSON path inside of a CustomResource that corresponds to Scale.Status.Selector. Only JSON paths without the array notation are allowed. Must be a JSON Path under .status. Must be set to work with HPA. If there is no value under the given path in the CustomResource, the status label selector value in the /scale subresource will default to the empty string. type: string specReplicasPath: description: SpecReplicasPath defines the JSON path inside of a CustomResource that corresponds to Scale.Spec.Replicas. Only JSON paths without the array notation are allowed. Must be a JSON Path under .spec. If there is no value under the given path in the CustomResource, the /scale subresource will return an error on GET. type: string statusReplicasPath: description: StatusReplicasPath defines the JSON path inside of a CustomResource that corresponds to Scale.Status.Replicas. Only JSON paths without the array notation are allowed. Must be a JSON Path under .status. If there is no value under the given path in the CustomResource, the status replica value in the /scale subresource will default to 0. type: string required: - specReplicasPath - statusReplicasPath io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceSubresourceStatus: description: CustomResourceSubresourceStatus defines how to serve the status subresource for CustomResources. Status is represented by the `.status` JSON path inside of a CustomResource. When set, * exposes a /status subresource for the custom resource * PUT requests to the /status subresource take a custom resource object, and ignore changes to anything except the status stanza * PUT/POST/PATCH requests to the custom resource ignore changes to the status stanza io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceSubresources: description: CustomResourceSubresources defines the status and scale subresources for CustomResources. properties: scale: $ref: "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceSubresourceScale" description: Scale denotes the scale subresource for CustomResources status: $ref: "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceSubresourceStatus" description: Status denotes the status subresource for CustomResources io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceValidation: description: CustomResourceValidation is a list of validation methods for CustomResources. properties: openAPIV3Schema: $ref: "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaProps" description: OpenAPIV3Schema is the OpenAPI v3 schema to be validated against. io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.ExternalDocumentation: description: ExternalDocumentation allows referencing an external resource for extended documentation. properties: description: type: string url: type: string io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSON: description: "JSON represents any valid JSON value. These types are supported: bool, int64, float64, string, []interface{}, map[string]interface{} and nil." properties: Raw: format: byte type: string required: - Raw io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaProps: description: JSONSchemaProps is a JSON-Schema following Specification Draft 4 (http://json-schema.org/). properties: $ref: type: string $schema: type: string additionalItems: $ref: "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaPropsOrBool" additionalProperties: $ref: "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaPropsOrBool" allOf: items: $ref: "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaProps" type: array anyOf: items: $ref: "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaProps" type: array default: $ref: "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSON" definitions: additionalProperties: $ref: "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaProps" type: object dependencies: additionalProperties: $ref: "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaPropsOrStringArray" type: object description: type: string enum: items: $ref: "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSON" type: array example: $ref: "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSON" exclusiveMaximum: type: boolean exclusiveMinimum: type: boolean externalDocs: $ref: "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.ExternalDocumentation" format: type: string id: type: string items: $ref: "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaPropsOrArray" maxItems: format: int64 type: integer maxLength: format: int64 type: integer maxProperties: format: int64 type: integer maximum: format: double type: number minItems: format: int64 type: integer minLength: format: int64 type: integer minProperties: format: int64 type: integer minimum: format: double type: number multipleOf: format: double type: number not: $ref: "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaProps" oneOf: items: $ref: "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaProps" type: array pattern: type: string patternProperties: additionalProperties: $ref: "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaProps" type: object properties: additionalProperties: $ref: "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaProps" type: object required: items: type: string type: array title: type: string type: type: string uniqueItems: type: boolean io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaPropsOrArray: description: JSONSchemaPropsOrArray represents a value that can either be a JSONSchemaProps or an array of JSONSchemaProps. Mainly here for serialization purposes. properties: JSONSchemas: items: $ref: "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaProps" type: array Schema: $ref: "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaProps" required: - Schema - JSONSchemas io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaPropsOrBool: description: JSONSchemaPropsOrBool represents JSONSchemaProps or a boolean value. Defaults to true for the boolean property. properties: Allows: type: boolean Schema: $ref: "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaProps" required: - Allows - Schema io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaPropsOrStringArray: description: JSONSchemaPropsOrStringArray represents a JSONSchemaProps or a string array. properties: Property: items: type: string type: array Schema: $ref: "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaProps" required: - Schema - Property io.k8s.apimachinery.pkg.api.resource.Quantity: type: string io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup: description: APIGroup contains the name, the supported versions, and the preferred version of a group. 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/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/api-conventions.md#types-kinds" type: string name: description: name is the name of the group. type: string preferredVersion: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.GroupVersionForDiscovery" description: preferredVersion is the version preferred by the API server, which probably is the storage version. serverAddressByClientCIDRs: description: "a map of client CIDR to server address that is serving this group. This is to help clients reach servers in the most network-efficient way possible. Clients can use the appropriate server address as per the CIDR that they match. In case of multiple matches, clients should use the longest matching CIDR. The server returns only those CIDRs that it thinks that the client can match. For example: the master will return an internal IP CIDR only, if the client reaches the server using an internal IP. Server looks at X-Forwarded-For header or X-Real-Ip header or request.RemoteAddr (in that order) to get the client IP." items: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ServerAddressByClientCIDR" type: array versions: description: versions are the versions supported in this group. items: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.GroupVersionForDiscovery" type: array required: - name - versions - serverAddressByClientCIDRs x-kubernetes-group-version-kind: - group: "" kind: APIGroup version: v1 io.k8s.apimachinery.pkg.apis.meta.v1.APIGroupList: description: APIGroupList is a list of APIGroup, to allow clients to discover the API at /apis. 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/api-conventions.md#resources" type: string groups: description: groups is a list of APIGroup. items: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup" type: array 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/api-conventions.md#types-kinds" type: string required: - groups x-kubernetes-group-version-kind: - group: "" kind: APIGroupList version: v1 io.k8s.apimachinery.pkg.apis.meta.v1.APIResource: description: APIResource specifies the name of a resource and whether it is namespaced. properties: categories: description: categories is a list of the grouped resources this resource belongs to (e.g. 'all') items: type: string type: array group: description: 'group is the preferred group of the resource. Empty implies the group of the containing resource list. For subresources, this may have a different value, for example: Scale".' type: string kind: description: kind is the kind for the resource (e.g. 'Foo' is the kind for a resource 'foo') type: string name: description: name is the plural name of the resource. type: string namespaced: description: namespaced indicates if a resource is namespaced or not. type: boolean shortNames: description: shortNames is a list of suggested short names of the resource. items: type: string type: array singularName: description: singularName is the singular name of the resource. This allows clients to handle plural and singular opaquely. The singularName is more correct for reporting status on a single item and both singular and plural are allowed from the kubectl CLI interface. type: string verbs: description: verbs is a list of supported kube verbs (this includes get, list, watch, create, update, patch, delete, deletecollection, and proxy) items: type: string type: array version: description: "version is the preferred version of the resource. Empty implies the version of the containing resource list For subresources, this may have a different value, for example: v1 (while inside a v1beta1 version of the core resource's group)\"." type: string required: - name - singularName - namespaced - kind - verbs io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList: description: APIResourceList is a list of APIResource, it is used to expose the name of the resources supported in a specific group and version, and if the resource is namespaced. 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/api-conventions.md#resources" type: string groupVersion: description: groupVersion is the group and version this APIResourceList is for. type: string kind: description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds" type: string resources: description: resources contains the name of the resources and if they are namespaced. items: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResource" type: array required: - groupVersion - resources x-kubernetes-group-version-kind: - group: "" kind: APIResourceList version: v1 io.k8s.apimachinery.pkg.apis.meta.v1.APIVersions: description: APIVersions lists the versions that are available, to allow clients to discover the API at /api, which is the root path of the legacy v1 API. 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/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/api-conventions.md#types-kinds" type: string serverAddressByClientCIDRs: description: "a map of client CIDR to server address that is serving this group. This is to help clients reach servers in the most network-efficient way possible. Clients can use the appropriate server address as per the CIDR that they match. In case of multiple matches, clients should use the longest matching CIDR. The server returns only those CIDRs that it thinks that the client can match. For example: the master will return an internal IP CIDR only, if the client reaches the server using an internal IP. Server looks at X-Forwarded-For header or X-Real-Ip header or request.RemoteAddr (in that order) to get the client IP." items: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ServerAddressByClientCIDR" type: array versions: description: versions are the api versions that are available. items: type: string type: array required: - versions - serverAddressByClientCIDRs x-kubernetes-group-version-kind: - group: "" kind: APIVersions version: v1 io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions: description: DeleteOptions may be provided when deleting an API object. properties: apiVersion: description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources" type: string gracePeriodSeconds: description: The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. format: int64 type: integer 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/api-conventions.md#types-kinds" type: string orphanDependents: description: "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both." type: boolean preconditions: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Preconditions" description: Must be fulfilled before a deletion is carried out. If not possible, a 409 Conflict status will be returned. propagationPolicy: description: "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground." type: string x-kubernetes-group-version-kind: - group: "" kind: DeleteOptions version: v1 - group: admission.k8s.io kind: DeleteOptions version: v1beta1 - group: admissionregistration.k8s.io kind: DeleteOptions version: v1alpha1 - group: admissionregistration.k8s.io kind: DeleteOptions version: v1beta1 - group: apps kind: DeleteOptions version: v1 - group: apps kind: DeleteOptions version: v1beta1 - group: apps kind: DeleteOptions version: v1beta2 - group: authentication.k8s.io kind: DeleteOptions version: v1 - group: authentication.k8s.io kind: DeleteOptions version: v1beta1 - group: authorization.k8s.io kind: DeleteOptions version: v1 - group: authorization.k8s.io kind: DeleteOptions version: v1beta1 - group: autoscaling kind: DeleteOptions version: v1 - group: autoscaling kind: DeleteOptions version: v2beta1 - group: batch kind: DeleteOptions version: v1 - group: batch kind: DeleteOptions version: v1beta1 - group: batch kind: DeleteOptions version: v2alpha1 - group: certificates.k8s.io kind: DeleteOptions version: v1beta1 - group: events.k8s.io kind: DeleteOptions version: v1beta1 - group: extensions kind: DeleteOptions version: v1beta1 - group: imagepolicy.k8s.io kind: DeleteOptions version: v1alpha1 - group: networking.k8s.io kind: DeleteOptions version: v1 - group: policy kind: DeleteOptions version: v1beta1 - group: rbac.authorization.k8s.io kind: DeleteOptions version: v1 - group: rbac.authorization.k8s.io kind: DeleteOptions version: v1alpha1 - group: rbac.authorization.k8s.io kind: DeleteOptions version: v1beta1 - group: scheduling.k8s.io kind: DeleteOptions version: v1alpha1 - group: settings.k8s.io kind: DeleteOptions version: v1alpha1 - group: storage.k8s.io kind: DeleteOptions version: v1 - group: storage.k8s.io kind: DeleteOptions version: v1alpha1 - group: storage.k8s.io kind: DeleteOptions version: v1beta1 io.k8s.apimachinery.pkg.apis.meta.v1.GroupVersionForDiscovery: description: GroupVersion contains the "group/version" and "version" string of a version. It is made a struct to keep extensibility. properties: groupVersion: description: groupVersion specifies the API group and version in the form "group/version" type: string version: description: version specifies the version in the form of "version". This is to save the clients the trouble of splitting the GroupVersion. type: string required: - groupVersion - version io.k8s.apimachinery.pkg.apis.meta.v1.Initializer: description: Initializer is information about an initializer that has not yet completed. properties: name: description: name of the process that is responsible for initializing this object. type: string required: - name io.k8s.apimachinery.pkg.apis.meta.v1.Initializers: description: Initializers tracks the progress of initialization. properties: pending: description: Pending is a list of initializers that must execute in order before this object is visible. When the last pending initializer is removed, and no failing result is set, the initializers struct will be set to nil and the object is considered as initialized and visible to all clients. items: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Initializer" type: array x-kubernetes-patch-merge-key: name x-kubernetes-patch-strategy: merge result: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" description: If result is set with the Failure field, the object will be persisted to storage and then deleted, ensuring that other clients can observe the deletion. required: - pending io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector: description: A label selector is a label query over a set of resources. The result of matchLabels and matchExpressions are ANDed. An empty label selector matches all objects. A null label selector matches no objects. properties: matchExpressions: description: matchExpressions is a list of label selector requirements. The requirements are ANDed. items: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelectorRequirement" type: array matchLabels: additionalProperties: type: string 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 io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelectorRequirement: description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. properties: key: description: key is the label key that the selector applies to. type: string x-kubernetes-patch-merge-key: key x-kubernetes-patch-strategy: merge operator: description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. type: string values: description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. items: type: string type: array required: - key - operator io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta: description: ListMeta describes metadata that synthetic resources must have, including lists and various status objects. A resource may have only one of {ObjectMeta, ListMeta}. properties: continue: description: continue may be set if the user set a limit on the number of items returned, and indicates that the server has more data available. The value is opaque and may be used to issue another request to the endpoint that served this list to retrieve the next set of available objects. Continuing a list may not be possible if the server configuration has changed or more than a few minutes have passed. The resourceVersion field returned when using this continue value will be identical to the value in the first response. type: string resourceVersion: description: "String that identifies the server's internal version of this object that can be used by clients to determine when objects have changed. Value must be treated as opaque by clients and passed unmodified back to the server. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#concurrency-control-and-consistency" type: string selfLink: description: selfLink is a URL representing this object. Populated by the system. Read-only. type: string io.k8s.apimachinery.pkg.apis.meta.v1.MicroTime: format: date-time type: string io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta: description: ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create. properties: annotations: additionalProperties: type: string description: "Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations" type: object clusterName: description: The name of the cluster which the object belongs to. This is used to distinguish resources with same name and namespace in different clusters. This field is not set anywhere right now and apiserver is going to ignore it if set in create or update request. type: string creationTimestamp: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time" description: |- CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC. Populated by the system. Read-only. Null for lists. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata deletionGracePeriodSeconds: description: Number of seconds allowed for this object to gracefully terminate before it will be removed from the system. Only set when deletionTimestamp is also set. May only be shortened. Read-only. format: int64 type: integer deletionTimestamp: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time" description: |- DeletionTimestamp is RFC 3339 date and time at which this resource will be deleted. This field is set by the server when a graceful deletion is requested by the user, and is not directly settable by a client. The resource is expected to be deleted (no longer visible from resource lists, and not reachable by name) after the time in this field, once the finalizers list is empty. As long as the finalizers list contains items, deletion is blocked. Once the deletionTimestamp is set, this value may not be unset or be set further into the future, although it may be shortened or the resource may be deleted prior to this time. For example, a user may request that a pod is deleted in 30 seconds. The Kubelet will react by sending a graceful termination signal to the containers in the pod. After that 30 seconds, the Kubelet will send a hard termination signal (SIGKILL) to the container and after cleanup, remove the pod from the API. In the presence of network partitions, this object may still exist after this timestamp, until an administrator or automated process can determine the resource is fully terminated. If not set, graceful deletion of the object has not been requested. Populated by the system when a graceful deletion is requested. Read-only. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata finalizers: description: Must be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed. items: type: string type: array x-kubernetes-patch-strategy: merge generateName: description: |- GenerateName is an optional prefix, used by the server, to generate a unique name ONLY IF the Name field has not been provided. If this field is used, the name returned to the client will be different than the name passed. This value will also be combined with a unique suffix. The provided value has the same validation rules as the Name field, and may be truncated by the length of the suffix required to make the value unique on the server. If this field is specified and the generated name exists, the server will NOT return a 409 - instead, it will either return 201 Created or 500 with Reason ServerTimeout indicating a unique name could not be found in the time allotted, and the client should retry (optionally after the time indicated in the Retry-After header). Applied only if Name is not specified. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#idempotency type: string generation: description: A sequence number representing a specific generation of the desired state. Populated by the system. Read-only. format: int64 type: integer initializers: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Initializers" description: |- An initializer is a controller which enforces some system invariant at object creation time. This field is a list of initializers that have not yet acted on this object. If nil or empty, this object has been completely initialized. Otherwise, the object is considered uninitialized and is hidden (in list/watch and get calls) from clients that haven't explicitly asked to observe uninitialized objects. When an object is created, the system will populate this list with the current set of initializers. Only privileged users may set or modify this list. Once it is empty, it may not be modified further by any user. labels: additionalProperties: type: string description: "Map of string keys and values that can be used to organize and categorize (scope and select) objects. May match selectors of replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels" type: object name: description: "Name must be unique within a namespace. Is required when creating resources, although some resources may allow a client to request the generation of an appropriate name automatically. Name is primarily intended for creation idempotence and configuration definition. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names" type: string namespace: description: |- Namespace defines the space within each name must be unique. An empty namespace is equivalent to the "default" namespace, but "default" is the canonical representation. Not all objects are required to be scoped to a namespace - the value of this field for those objects will be empty. Must be a DNS_LABEL. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/namespaces type: string ownerReferences: description: List of objects depended by this object. If ALL objects in the list have been deleted, this object will be garbage collected. If this object is managed by a controller, then an entry in this list will point to this controller, with the controller field set to true. There cannot be more than one managing controller. items: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.OwnerReference" type: array x-kubernetes-patch-merge-key: uid x-kubernetes-patch-strategy: merge resourceVersion: description: |- An opaque value that represents the internal version of this object that can be used by clients to determine when objects have changed. May be used for optimistic concurrency, change detection, and the watch operation on a resource or set of resources. Clients must treat these values as opaque and passed unmodified back to the server. They may only be valid for a particular resource or set of resources. Populated by the system. Read-only. Value must be treated as opaque by clients and . More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#concurrency-control-and-consistency type: string selfLink: description: SelfLink is a URL representing this object. Populated by the system. Read-only. type: string uid: description: |- UID is the unique in time and space value for this object. It is typically generated by the server on successful creation of a resource and is not allowed to change on PUT operations. Populated by the system. Read-only. More info: http://kubernetes.io/docs/user-guide/identifiers#uids type: string io.k8s.apimachinery.pkg.apis.meta.v1.OwnerReference: description: OwnerReference contains enough information to let you identify an owning object. Currently, an owning object must be in the same namespace, so there is no namespace field. properties: apiVersion: description: API version of the referent. type: string blockOwnerDeletion: description: If true, AND if the owner has the "foregroundDeletion" finalizer, then the owner cannot be deleted from the key-value store until this reference is removed. Defaults to false. To set this field, a user needs "delete" permission of the owner, otherwise 422 (Unprocessable Entity) will be returned. type: boolean controller: description: If true, this reference points to the managing controller. type: boolean kind: description: "Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds" type: string name: description: "Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names" type: string uid: description: "UID of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#uids" type: string required: - apiVersion - kind - name - uid io.k8s.apimachinery.pkg.apis.meta.v1.Patch: description: Patch is provided to give a concrete name and type to the Kubernetes PATCH request body. io.k8s.apimachinery.pkg.apis.meta.v1.Preconditions: description: Preconditions must be fulfilled before an operation (update, delete, etc.) is carried out. properties: uid: description: Specifies the target UID. type: string io.k8s.apimachinery.pkg.apis.meta.v1.ServerAddressByClientCIDR: description: ServerAddressByClientCIDR helps the client to determine the server address that they should use, depending on the clientCIDR that they match. properties: clientCIDR: description: The CIDR with which clients can match their IP to figure out the server address that they should use. type: string serverAddress: description: Address of this server, suitable for a client that matches the above CIDR. This can be a hostname, hostname:port, IP or IP:port. type: string required: - clientCIDR - serverAddress io.k8s.apimachinery.pkg.apis.meta.v1.Status: description: Status is a return value for calls that don't return other objects. 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/api-conventions.md#resources" type: string code: description: Suggested HTTP return code for this status, 0 if not set. format: int32 type: integer details: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.StatusDetails" description: Extended data associated with the reason. Each reason may define its own extended details. This field is optional and the data returned is not guaranteed to conform to any schema except that defined by the reason type. 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/api-conventions.md#types-kinds" type: string message: description: A human-readable description of the status of this operation. type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" description: "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds" reason: description: A machine-readable description of why this operation is in the "Failure" status. If this value is empty there is no information available. A Reason clarifies an HTTP status code but does not override it. type: string status: description: 'Status of the operation. One of: "Success" or "Failure". More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status' type: string x-kubernetes-group-version-kind: - group: "" kind: Status version: v1 io.k8s.apimachinery.pkg.apis.meta.v1.StatusCause: description: StatusCause provides more information about an api.Status failure, including cases when multiple errors are encountered. properties: field: description: |- The field of the resource that has caused this error, as named by its JSON serialization. May include dot and postfix notation for nested attributes. Arrays are zero-indexed. Fields may appear more than once in an array of causes due to fields having multiple errors. Optional. Examples: "name" - the field "name" on the current resource "items[0].name" - the field "name" on the first array entry in "items" type: string message: description: A human-readable description of the cause of the error. This field may be presented as-is to a reader. type: string reason: description: A machine-readable description of the cause of the error. If this value is empty there is no information available. type: string io.k8s.apimachinery.pkg.apis.meta.v1.StatusDetails: description: StatusDetails is a set of additional properties that MAY be set by the server to provide additional information about a response. The Reason field of a Status object defines what attributes will be set. Clients must ignore fields that do not match the defined type of each attribute, and should assume that any attribute may be empty, invalid, or under defined. properties: causes: description: The Causes array includes more details associated with the StatusReason failure. Not all StatusReasons may provide detailed causes. items: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.StatusCause" type: array group: description: The group attribute of the resource associated with the status StatusReason. type: string kind: description: "The kind attribute of the resource associated with the status StatusReason. On some operations may differ from the requested resource Kind. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds" type: string name: description: The name attribute of the resource associated with the status StatusReason (when there is a single name which can be described). type: string retryAfterSeconds: description: If specified, the time in seconds before the operation should be retried. Some errors may indicate the client must take an alternate action - for those errors this field may indicate how long to wait before taking the alternate action. format: int32 type: integer uid: description: "UID of the resource. (when there is a single resource which can be described). More info: http://kubernetes.io/docs/user-guide/identifiers#uids" type: string io.k8s.apimachinery.pkg.apis.meta.v1.Time: format: date-time type: string io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent: description: Event represents a single event to a watched resource. properties: object: $ref: "#/definitions/io.k8s.apimachinery.pkg.runtime.RawExtension" description: |- Object is: * If Type is Added or Modified: the new state of the object. * If Type is Deleted: the state of the object immediately before deletion. * If Type is Error: *Status is recommended; other types may make sense depending on context. type: type: string required: - type - object x-kubernetes-group-version-kind: - group: "" kind: WatchEvent version: v1 - group: admission.k8s.io kind: WatchEvent version: v1beta1 - group: admissionregistration.k8s.io kind: WatchEvent version: v1alpha1 - group: admissionregistration.k8s.io kind: WatchEvent version: v1beta1 - group: apps kind: WatchEvent version: v1 - group: apps kind: WatchEvent version: v1beta1 - group: apps kind: WatchEvent version: v1beta2 - group: authentication.k8s.io kind: WatchEvent version: v1 - group: authentication.k8s.io kind: WatchEvent version: v1beta1 - group: authorization.k8s.io kind: WatchEvent version: v1 - group: authorization.k8s.io kind: WatchEvent version: v1beta1 - group: autoscaling kind: WatchEvent version: v1 - group: autoscaling kind: WatchEvent version: v2beta1 - group: batch kind: WatchEvent version: v1 - group: batch kind: WatchEvent version: v1beta1 - group: batch kind: WatchEvent version: v2alpha1 - group: certificates.k8s.io kind: WatchEvent version: v1beta1 - group: events.k8s.io kind: WatchEvent version: v1beta1 - group: extensions kind: WatchEvent version: v1beta1 - group: imagepolicy.k8s.io kind: WatchEvent version: v1alpha1 - group: networking.k8s.io kind: WatchEvent version: v1 - group: policy kind: WatchEvent version: v1beta1 - group: rbac.authorization.k8s.io kind: WatchEvent version: v1 - group: rbac.authorization.k8s.io kind: WatchEvent version: v1alpha1 - group: rbac.authorization.k8s.io kind: WatchEvent version: v1beta1 - group: scheduling.k8s.io kind: WatchEvent version: v1alpha1 - group: settings.k8s.io kind: WatchEvent version: v1alpha1 - group: storage.k8s.io kind: WatchEvent version: v1 - group: storage.k8s.io kind: WatchEvent version: v1alpha1 - group: storage.k8s.io kind: WatchEvent version: v1beta1 io.k8s.apimachinery.pkg.runtime.RawExtension: description: |- RawExtension is used to hold extensions in external versions. To use this, make a field which has RawExtension as its type in your external, versioned struct, and Object in your internal struct. You also need to register your various plugin types. // Internal package: type MyAPIObject struct { runtime.TypeMeta `json:",inline"` MyPlugin runtime.Object `json:"myPlugin"` } type PluginA struct { AOption string `json:"aOption"` } // External package: type MyAPIObject struct { runtime.TypeMeta `json:",inline"` MyPlugin runtime.RawExtension `json:"myPlugin"` } type PluginA struct { AOption string `json:"aOption"` } // On the wire, the JSON will look something like this: { "kind":"MyAPIObject", "apiVersion":"v1", "myPlugin": { "kind":"PluginA", "aOption":"foo", }, } So what happens? Decode first uses json or yaml to unmarshal the serialized data into your external MyAPIObject. That causes the raw JSON to be stored, but not unpacked. The next step is to copy (using pkg/conversion) into the internal struct. The runtime package's DefaultScheme has conversion functions installed which will unpack the JSON stored in RawExtension, turning it into the correct object type, and storing it in the Object. (TODO: In the case where the object is of an unknown type, a runtime.Unknown object will be created and stored.) properties: Raw: description: Raw is the underlying serialization of this object. format: byte type: string required: - Raw io.k8s.apimachinery.pkg.util.intstr.IntOrString: format: int-or-string type: string io.k8s.apimachinery.pkg.version.Info: description: Info contains versioning information. how we'll want to distribute that information. properties: buildDate: type: string compiler: type: string gitCommit: type: string gitTreeState: type: string gitVersion: type: string goVersion: type: string major: type: string minor: type: string platform: type: string required: - major - minor - gitVersion - gitCommit - gitTreeState - buildDate - goVersion - compiler - platform io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService: description: APIService represents a server for a particular GroupVersion. Name must be "version.group". 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/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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" spec: $ref: "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIServiceSpec" description: Spec contains information for locating and communicating with a server status: $ref: "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIServiceStatus" description: Status contains derived information about an API server io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIServiceCondition: properties: lastTransitionTime: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time" description: Last time the condition transitioned from one status to another. message: description: Human-readable message indicating details about last transition. type: string reason: description: Unique, one-word, CamelCase reason for the condition's last transition. type: string status: description: Status is the status of the condition. Can be True, False, Unknown. type: string type: description: Type is the type of the condition. type: string required: - type - status io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIServiceList: description: APIServiceList is a list of APIService objects. 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/api-conventions.md#resources" type: string items: items: $ref: "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService" type: array 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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" required: - items io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIServiceSpec: description: APIServiceSpec contains information for locating and communicating with a server. Only https is supported, though you are able to disable certificate verification. properties: caBundle: description: CABundle is a PEM encoded CA bundle which will be used to validate an API server's serving certificate. format: byte type: string group: description: Group is the API group name this server hosts type: string groupPriorityMinimum: description: "GroupPriorityMininum is the priority this group should have at least. Higher priority means that the group is preferred by clients over lower priority ones. Note that other versions of this group might specify even higher GroupPriorityMininum values such that the whole group gets a higher priority. The primary sort is based on GroupPriorityMinimum, ordered highest number to lowest (20 before 10). The secondary sort is based on the alphabetical comparison of the name of the object. (v1.bar before v1.foo) We'd recommend something like: *.k8s.io (except extensions) at 18000 and PaaSes (OpenShift, Deis) are recommended to be in the 2000s" format: int32 type: integer insecureSkipTLSVerify: description: InsecureSkipTLSVerify disables TLS certificate verification when communicating with this server. This is strongly discouraged. You should use the CABundle instead. type: boolean service: $ref: "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.ServiceReference" description: Service is a reference to the service for this API server. It must communicate on port 443 If the Service is nil, that means the handling for the API groupversion is handled locally on this server. The call will simply delegate to the normal handler chain to be fulfilled. version: description: Version is the API version this server hosts. For example, "v1" type: string versionPriority: description: VersionPriority controls the ordering of this API version inside of its group. Must be greater than zero. The primary sort is based on VersionPriority, ordered highest to lowest (20 before 10). The secondary sort is based on the alphabetical comparison of the name of the object. (v1.bar before v1.foo) Since it's inside of a group, the number can be small, probably in the 10s. format: int32 type: integer required: - service - caBundle - groupPriorityMinimum - versionPriority io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIServiceStatus: description: APIServiceStatus contains derived information about an API server properties: conditions: description: Current service state of apiService. items: $ref: "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIServiceCondition" type: array x-kubernetes-patch-merge-key: type x-kubernetes-patch-strategy: merge io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.ServiceReference: description: ServiceReference holds a reference to Service.legacy.k8s.io properties: name: description: Name is the name of the service type: string namespace: description: Namespace is the namespace of the service type: string io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIService: description: APIService represents a server for a particular GroupVersion. Name must be "version.group". 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/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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" spec: $ref: "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIServiceSpec" description: Spec contains information for locating and communicating with a server status: $ref: "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIServiceStatus" description: Status contains derived information about an API server io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIServiceCondition: properties: lastTransitionTime: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time" description: Last time the condition transitioned from one status to another. message: description: Human-readable message indicating details about last transition. type: string reason: description: Unique, one-word, CamelCase reason for the condition's last transition. type: string status: description: Status is the status of the condition. Can be True, False, Unknown. type: string type: description: Type is the type of the condition. type: string required: - type - status io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIServiceList: description: APIServiceList is a list of APIService objects. 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/api-conventions.md#resources" type: string items: items: $ref: "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIService" type: array 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/api-conventions.md#types-kinds" type: string metadata: $ref: "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" required: - items io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIServiceSpec: description: APIServiceSpec contains information for locating and communicating with a server. Only https is supported, though you are able to disable certificate verification. properties: caBundle: description: CABundle is a PEM encoded CA bundle which will be used to validate an API server's serving certificate. format: byte type: string group: description: Group is the API group name this server hosts type: string groupPriorityMinimum: description: "GroupPriorityMininum is the priority this group should have at least. Higher priority means that the group is preferred by clients over lower priority ones. Note that other versions of this group might specify even higher GroupPriorityMininum values such that the whole group gets a higher priority. The primary sort is based on GroupPriorityMinimum, ordered highest number to lowest (20 before 10). The secondary sort is based on the alphabetical comparison of the name of the object. (v1.bar before v1.foo) We'd recommend something like: *.k8s.io (except extensions) at 18000 and PaaSes (OpenShift, Deis) are recommended to be in the 2000s" format: int32 type: integer insecureSkipTLSVerify: description: InsecureSkipTLSVerify disables TLS certificate verification when communicating with this server. This is strongly discouraged. You should use the CABundle instead. type: boolean service: $ref: "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.ServiceReference" description: Service is a reference to the service for this API server. It must communicate on port 443 If the Service is nil, that means the handling for the API groupversion is handled locally on this server. The call will simply delegate to the normal handler chain to be fulfilled. version: description: Version is the API version this server hosts. For example, "v1" type: string versionPriority: description: VersionPriority controls the ordering of this API version inside of its group. Must be greater than zero. The primary sort is based on VersionPriority, ordered highest to lowest (20 before 10). The secondary sort is based on the alphabetical comparison of the name of the object. (v1.bar before v1.foo) Since it's inside of a group, the number can be small, probably in the 10s. format: int32 type: integer required: - service - caBundle - groupPriorityMinimum - versionPriority io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIServiceStatus: description: APIServiceStatus contains derived information about an API server properties: conditions: description: Current service state of apiService. items: $ref: "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIServiceCondition" type: array x-kubernetes-patch-merge-key: type x-kubernetes-patch-strategy: merge io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.ServiceReference: description: ServiceReference holds a reference to Service.legacy.k8s.io properties: name: description: Name is the name of the service type: string namespace: description: Namespace is the namespace of the service type: string io.k8s.kubernetes.pkg.api.v1.AWSElasticBlockStoreVolumeSource: $ref: "#/definitions/io.k8s.api.core.v1.AWSElasticBlockStoreVolumeSource" description: Deprecated. Please use io.k8s.api.core.v1.AWSElasticBlockStoreVolumeSource instead. io.k8s.kubernetes.pkg.api.v1.Affinity: $ref: "#/definitions/io.k8s.api.core.v1.Affinity" description: Deprecated. Please use io.k8s.api.core.v1.Affinity instead. io.k8s.kubernetes.pkg.api.v1.AttachedVolume: $ref: "#/definitions/io.k8s.api.core.v1.AttachedVolume" description: Deprecated. Please use io.k8s.api.core.v1.AttachedVolume instead. io.k8s.kubernetes.pkg.api.v1.AzureDiskVolumeSource: $ref: "#/definitions/io.k8s.api.core.v1.AzureDiskVolumeSource" description: Deprecated. Please use io.k8s.api.core.v1.AzureDiskVolumeSource instead. io.k8s.kubernetes.pkg.api.v1.AzureFileVolumeSource: $ref: "#/definitions/io.k8s.api.core.v1.AzureFileVolumeSource" description: Deprecated. Please use io.k8s.api.core.v1.AzureFileVolumeSource instead. io.k8s.kubernetes.pkg.api.v1.Binding: $ref: "#/definitions/io.k8s.api.core.v1.Binding" description: Deprecated. Please use io.k8s.api.core.v1.Binding instead. io.k8s.kubernetes.pkg.api.v1.Capabilities: $ref: "#/definitions/io.k8s.api.core.v1.Capabilities" description: Deprecated. Please use io.k8s.api.core.v1.Capabilities instead. io.k8s.kubernetes.pkg.api.v1.CephFSVolumeSource: $ref: "#/definitions/io.k8s.api.core.v1.CephFSVolumeSource" description: Deprecated. Please use io.k8s.api.core.v1.CephFSVolumeSource instead. io.k8s.kubernetes.pkg.api.v1.CinderVolumeSource: $ref: "#/definitions/io.k8s.api.core.v1.CinderVolumeSource" description: Deprecated. Please use io.k8s.api.core.v1.CinderVolumeSource instead. io.k8s.kubernetes.pkg.api.v1.ComponentCondition: $ref: "#/definitions/io.k8s.api.core.v1.ComponentCondition" description: Deprecated. Please use io.k8s.api.core.v1.ComponentCondition instead. io.k8s.kubernetes.pkg.api.v1.ComponentStatus: $ref: "#/definitions/io.k8s.api.core.v1.ComponentStatus" description: Deprecated. Please use io.k8s.api.core.v1.ComponentStatus instead. io.k8s.kubernetes.pkg.api.v1.ComponentStatusList: $ref: "#/definitions/io.k8s.api.core.v1.ComponentStatusList" description: Deprecated. Please use io.k8s.api.core.v1.ComponentStatusList instead. io.k8s.kubernetes.pkg.api.v1.ConfigMap: $ref: "#/definitions/io.k8s.api.core.v1.ConfigMap" description: Deprecated. Please use io.k8s.api.core.v1.ConfigMap instead. io.k8s.kubernetes.pkg.api.v1.ConfigMapEnvSource: $ref: "#/definitions/io.k8s.api.core.v1.ConfigMapEnvSource" description: Deprecated. Please use io.k8s.api.core.v1.ConfigMapEnvSource instead. io.k8s.kubernetes.pkg.api.v1.ConfigMapKeySelector: $ref: "#/definitions/io.k8s.api.core.v1.ConfigMapKeySelector" description: Deprecated. Please use io.k8s.api.core.v1.ConfigMapKeySelector instead. io.k8s.kubernetes.pkg.api.v1.ConfigMapList: $ref: "#/definitions/io.k8s.api.core.v1.ConfigMapList" description: Deprecated. Please use io.k8s.api.core.v1.ConfigMapList instead. io.k8s.kubernetes.pkg.api.v1.ConfigMapProjection: $ref: "#/definitions/io.k8s.api.core.v1.ConfigMapProjection" description: Deprecated. Please use io.k8s.api.core.v1.ConfigMapProjection instead. io.k8s.kubernetes.pkg.api.v1.ConfigMapVolumeSource: $ref: "#/definitions/io.k8s.api.core.v1.ConfigMapVolumeSource" description: Deprecated. Please use io.k8s.api.core.v1.ConfigMapVolumeSource instead. io.k8s.kubernetes.pkg.api.v1.Container: $ref: "#/definitions/io.k8s.api.core.v1.Container" description: Deprecated. Please use io.k8s.api.core.v1.Container instead. io.k8s.kubernetes.pkg.api.v1.ContainerImage: $ref: "#/definitions/io.k8s.api.core.v1.ContainerImage" description: Deprecated. Please use io.k8s.api.core.v1.ContainerImage instead. io.k8s.kubernetes.pkg.api.v1.ContainerPort: $ref: "#/definitions/io.k8s.api.core.v1.ContainerPort" description: Deprecated. Please use io.k8s.api.core.v1.ContainerPort instead. io.k8s.kubernetes.pkg.api.v1.ContainerState: $ref: "#/definitions/io.k8s.api.core.v1.ContainerState" description: Deprecated. Please use io.k8s.api.core.v1.ContainerState instead. io.k8s.kubernetes.pkg.api.v1.ContainerStateRunning: $ref: "#/definitions/io.k8s.api.core.v1.ContainerStateRunning" description: Deprecated. Please use io.k8s.api.core.v1.ContainerStateRunning instead. io.k8s.kubernetes.pkg.api.v1.ContainerStateTerminated: $ref: "#/definitions/io.k8s.api.core.v1.ContainerStateTerminated" description: Deprecated. Please use io.k8s.api.core.v1.ContainerStateTerminated instead. io.k8s.kubernetes.pkg.api.v1.ContainerStateWaiting: $ref: "#/definitions/io.k8s.api.core.v1.ContainerStateWaiting" description: Deprecated. Please use io.k8s.api.core.v1.ContainerStateWaiting instead. io.k8s.kubernetes.pkg.api.v1.ContainerStatus: $ref: "#/definitions/io.k8s.api.core.v1.ContainerStatus" description: Deprecated. Please use io.k8s.api.core.v1.ContainerStatus instead. io.k8s.kubernetes.pkg.api.v1.DaemonEndpoint: $ref: "#/definitions/io.k8s.api.core.v1.DaemonEndpoint" description: Deprecated. Please use io.k8s.api.core.v1.DaemonEndpoint instead. io.k8s.kubernetes.pkg.api.v1.DownwardAPIProjection: $ref: "#/definitions/io.k8s.api.core.v1.DownwardAPIProjection" description: Deprecated. Please use io.k8s.api.core.v1.DownwardAPIProjection instead. io.k8s.kubernetes.pkg.api.v1.DownwardAPIVolumeFile: $ref: "#/definitions/io.k8s.api.core.v1.DownwardAPIVolumeFile" description: Deprecated. Please use io.k8s.api.core.v1.DownwardAPIVolumeFile instead. io.k8s.kubernetes.pkg.api.v1.DownwardAPIVolumeSource: $ref: "#/definitions/io.k8s.api.core.v1.DownwardAPIVolumeSource" description: Deprecated. Please use io.k8s.api.core.v1.DownwardAPIVolumeSource instead. io.k8s.kubernetes.pkg.api.v1.EmptyDirVolumeSource: $ref: "#/definitions/io.k8s.api.core.v1.EmptyDirVolumeSource" description: Deprecated. Please use io.k8s.api.core.v1.EmptyDirVolumeSource instead. io.k8s.kubernetes.pkg.api.v1.EndpointAddress: $ref: "#/definitions/io.k8s.api.core.v1.EndpointAddress" description: Deprecated. Please use io.k8s.api.core.v1.EndpointAddress instead. io.k8s.kubernetes.pkg.api.v1.EndpointPort: $ref: "#/definitions/io.k8s.api.core.v1.EndpointPort" description: Deprecated. Please use io.k8s.api.core.v1.EndpointPort instead. io.k8s.kubernetes.pkg.api.v1.EndpointSubset: $ref: "#/definitions/io.k8s.api.core.v1.EndpointSubset" description: Deprecated. Please use io.k8s.api.core.v1.EndpointSubset instead. io.k8s.kubernetes.pkg.api.v1.Endpoints: $ref: "#/definitions/io.k8s.api.core.v1.Endpoints" description: Deprecated. Please use io.k8s.api.core.v1.Endpoints instead. io.k8s.kubernetes.pkg.api.v1.EndpointsList: $ref: "#/definitions/io.k8s.api.core.v1.EndpointsList" description: Deprecated. Please use io.k8s.api.core.v1.EndpointsList instead. io.k8s.kubernetes.pkg.api.v1.EnvFromSource: $ref: "#/definitions/io.k8s.api.core.v1.EnvFromSource" description: Deprecated. Please use io.k8s.api.core.v1.EnvFromSource instead. io.k8s.kubernetes.pkg.api.v1.EnvVar: $ref: "#/definitions/io.k8s.api.core.v1.EnvVar" description: Deprecated. Please use io.k8s.api.core.v1.EnvVar instead. io.k8s.kubernetes.pkg.api.v1.EnvVarSource: $ref: "#/definitions/io.k8s.api.core.v1.EnvVarSource" description: Deprecated. Please use io.k8s.api.core.v1.EnvVarSource instead. io.k8s.kubernetes.pkg.api.v1.Event: $ref: "#/definitions/io.k8s.api.core.v1.Event" description: Deprecated. Please use io.k8s.api.core.v1.Event instead. io.k8s.kubernetes.pkg.api.v1.EventList: $ref: "#/definitions/io.k8s.api.core.v1.EventList" description: Deprecated. Please use io.k8s.api.core.v1.EventList instead. io.k8s.kubernetes.pkg.api.v1.EventSource: $ref: "#/definitions/io.k8s.api.core.v1.EventSource" description: Deprecated. Please use io.k8s.api.core.v1.EventSource instead. io.k8s.kubernetes.pkg.api.v1.ExecAction: $ref: "#/definitions/io.k8s.api.core.v1.ExecAction" description: Deprecated. Please use io.k8s.api.core.v1.ExecAction instead. io.k8s.kubernetes.pkg.api.v1.FCVolumeSource: $ref: "#/definitions/io.k8s.api.core.v1.FCVolumeSource" description: Deprecated. Please use io.k8s.api.core.v1.FCVolumeSource instead. io.k8s.kubernetes.pkg.api.v1.FlexVolumeSource: $ref: "#/definitions/io.k8s.api.core.v1.FlexVolumeSource" description: Deprecated. Please use io.k8s.api.core.v1.FlexVolumeSource instead. io.k8s.kubernetes.pkg.api.v1.FlockerVolumeSource: $ref: "#/definitions/io.k8s.api.core.v1.FlockerVolumeSource" description: Deprecated. Please use io.k8s.api.core.v1.FlockerVolumeSource instead. io.k8s.kubernetes.pkg.api.v1.GCEPersistentDiskVolumeSource: $ref: "#/definitions/io.k8s.api.core.v1.GCEPersistentDiskVolumeSource" description: Deprecated. Please use io.k8s.api.core.v1.GCEPersistentDiskVolumeSource instead. io.k8s.kubernetes.pkg.api.v1.GitRepoVolumeSource: $ref: "#/definitions/io.k8s.api.core.v1.GitRepoVolumeSource" description: Deprecated. Please use io.k8s.api.core.v1.GitRepoVolumeSource instead. io.k8s.kubernetes.pkg.api.v1.GlusterfsVolumeSource: $ref: "#/definitions/io.k8s.api.core.v1.GlusterfsVolumeSource" description: Deprecated. Please use io.k8s.api.core.v1.GlusterfsVolumeSource instead. io.k8s.kubernetes.pkg.api.v1.HTTPGetAction: $ref: "#/definitions/io.k8s.api.core.v1.HTTPGetAction" description: Deprecated. Please use io.k8s.api.core.v1.HTTPGetAction instead. io.k8s.kubernetes.pkg.api.v1.HTTPHeader: $ref: "#/definitions/io.k8s.api.core.v1.HTTPHeader" description: Deprecated. Please use io.k8s.api.core.v1.HTTPHeader instead. io.k8s.kubernetes.pkg.api.v1.Handler: $ref: "#/definitions/io.k8s.api.core.v1.Handler" description: Deprecated. Please use io.k8s.api.core.v1.Handler instead. io.k8s.kubernetes.pkg.api.v1.HostAlias: $ref: "#/definitions/io.k8s.api.core.v1.HostAlias" description: Deprecated. Please use io.k8s.api.core.v1.HostAlias instead. io.k8s.kubernetes.pkg.api.v1.HostPathVolumeSource: $ref: "#/definitions/io.k8s.api.core.v1.HostPathVolumeSource" description: Deprecated. Please use io.k8s.api.core.v1.HostPathVolumeSource instead. io.k8s.kubernetes.pkg.api.v1.ISCSIVolumeSource: $ref: "#/definitions/io.k8s.api.core.v1.ISCSIVolumeSource" description: Deprecated. Please use io.k8s.api.core.v1.ISCSIVolumeSource instead. io.k8s.kubernetes.pkg.api.v1.KeyToPath: $ref: "#/definitions/io.k8s.api.core.v1.KeyToPath" description: Deprecated. Please use io.k8s.api.core.v1.KeyToPath instead. io.k8s.kubernetes.pkg.api.v1.Lifecycle: $ref: "#/definitions/io.k8s.api.core.v1.Lifecycle" description: Deprecated. Please use io.k8s.api.core.v1.Lifecycle instead. io.k8s.kubernetes.pkg.api.v1.LimitRange: $ref: "#/definitions/io.k8s.api.core.v1.LimitRange" description: Deprecated. Please use io.k8s.api.core.v1.LimitRange instead. io.k8s.kubernetes.pkg.api.v1.LimitRangeItem: $ref: "#/definitions/io.k8s.api.core.v1.LimitRangeItem" description: Deprecated. Please use io.k8s.api.core.v1.LimitRangeItem instead. io.k8s.kubernetes.pkg.api.v1.LimitRangeList: $ref: "#/definitions/io.k8s.api.core.v1.LimitRangeList" description: Deprecated. Please use io.k8s.api.core.v1.LimitRangeList instead. io.k8s.kubernetes.pkg.api.v1.LimitRangeSpec: $ref: "#/definitions/io.k8s.api.core.v1.LimitRangeSpec" description: Deprecated. Please use io.k8s.api.core.v1.LimitRangeSpec instead. io.k8s.kubernetes.pkg.api.v1.LoadBalancerIngress: $ref: "#/definitions/io.k8s.api.core.v1.LoadBalancerIngress" description: Deprecated. Please use io.k8s.api.core.v1.LoadBalancerIngress instead. io.k8s.kubernetes.pkg.api.v1.LoadBalancerStatus: $ref: "#/definitions/io.k8s.api.core.v1.LoadBalancerStatus" description: Deprecated. Please use io.k8s.api.core.v1.LoadBalancerStatus instead. io.k8s.kubernetes.pkg.api.v1.LocalObjectReference: $ref: "#/definitions/io.k8s.api.core.v1.LocalObjectReference" description: Deprecated. Please use io.k8s.api.core.v1.LocalObjectReference instead. io.k8s.kubernetes.pkg.api.v1.LocalVolumeSource: $ref: "#/definitions/io.k8s.api.core.v1.LocalVolumeSource" description: Deprecated. Please use io.k8s.api.core.v1.LocalVolumeSource instead. io.k8s.kubernetes.pkg.api.v1.NFSVolumeSource: $ref: "#/definitions/io.k8s.api.core.v1.NFSVolumeSource" description: Deprecated. Please use io.k8s.api.core.v1.NFSVolumeSource instead. io.k8s.kubernetes.pkg.api.v1.Namespace: $ref: "#/definitions/io.k8s.api.core.v1.Namespace" description: Deprecated. Please use io.k8s.api.core.v1.Namespace instead. io.k8s.kubernetes.pkg.api.v1.NamespaceList: $ref: "#/definitions/io.k8s.api.core.v1.NamespaceList" description: Deprecated. Please use io.k8s.api.core.v1.NamespaceList instead. io.k8s.kubernetes.pkg.api.v1.NamespaceSpec: $ref: "#/definitions/io.k8s.api.core.v1.NamespaceSpec" description: Deprecated. Please use io.k8s.api.core.v1.NamespaceSpec instead. io.k8s.kubernetes.pkg.api.v1.NamespaceStatus: $ref: "#/definitions/io.k8s.api.core.v1.NamespaceStatus" description: Deprecated. Please use io.k8s.api.core.v1.NamespaceStatus instead. io.k8s.kubernetes.pkg.api.v1.Node: $ref: "#/definitions/io.k8s.api.core.v1.Node" description: Deprecated. Please use io.k8s.api.core.v1.Node instead. io.k8s.kubernetes.pkg.api.v1.NodeAddress: $ref: "#/definitions/io.k8s.api.core.v1.NodeAddress" description: Deprecated. Please use io.k8s.api.core.v1.NodeAddress instead. io.k8s.kubernetes.pkg.api.v1.NodeAffinity: $ref: "#/definitions/io.k8s.api.core.v1.NodeAffinity" description: Deprecated. Please use io.k8s.api.core.v1.NodeAffinity instead. io.k8s.kubernetes.pkg.api.v1.NodeCondition: $ref: "#/definitions/io.k8s.api.core.v1.NodeCondition" description: Deprecated. Please use io.k8s.api.core.v1.NodeCondition instead. io.k8s.kubernetes.pkg.api.v1.NodeDaemonEndpoints: $ref: "#/definitions/io.k8s.api.core.v1.NodeDaemonEndpoints" description: Deprecated. Please use io.k8s.api.core.v1.NodeDaemonEndpoints instead. io.k8s.kubernetes.pkg.api.v1.NodeList: $ref: "#/definitions/io.k8s.api.core.v1.NodeList" description: Deprecated. Please use io.k8s.api.core.v1.NodeList instead. io.k8s.kubernetes.pkg.api.v1.NodeSelector: $ref: "#/definitions/io.k8s.api.core.v1.NodeSelector" description: Deprecated. Please use io.k8s.api.core.v1.NodeSelector instead. io.k8s.kubernetes.pkg.api.v1.NodeSelectorRequirement: $ref: "#/definitions/io.k8s.api.core.v1.NodeSelectorRequirement" description: Deprecated. Please use io.k8s.api.core.v1.NodeSelectorRequirement instead. io.k8s.kubernetes.pkg.api.v1.NodeSelectorTerm: $ref: "#/definitions/io.k8s.api.core.v1.NodeSelectorTerm" description: Deprecated. Please use io.k8s.api.core.v1.NodeSelectorTerm instead. io.k8s.kubernetes.pkg.api.v1.NodeSpec: $ref: "#/definitions/io.k8s.api.core.v1.NodeSpec" description: Deprecated. Please use io.k8s.api.core.v1.NodeSpec instead. io.k8s.kubernetes.pkg.api.v1.NodeStatus: $ref: "#/definitions/io.k8s.api.core.v1.NodeStatus" description: Deprecated. Please use io.k8s.api.core.v1.NodeStatus instead. io.k8s.kubernetes.pkg.api.v1.NodeSystemInfo: $ref: "#/definitions/io.k8s.api.core.v1.NodeSystemInfo" description: Deprecated. Please use io.k8s.api.core.v1.NodeSystemInfo instead. io.k8s.kubernetes.pkg.api.v1.ObjectFieldSelector: $ref: "#/definitions/io.k8s.api.core.v1.ObjectFieldSelector" description: Deprecated. Please use io.k8s.api.core.v1.ObjectFieldSelector instead. io.k8s.kubernetes.pkg.api.v1.ObjectReference: $ref: "#/definitions/io.k8s.api.core.v1.ObjectReference" description: Deprecated. Please use io.k8s.api.core.v1.ObjectReference instead. io.k8s.kubernetes.pkg.api.v1.PersistentVolume: $ref: "#/definitions/io.k8s.api.core.v1.PersistentVolume" description: Deprecated. Please use io.k8s.api.core.v1.PersistentVolume instead. io.k8s.kubernetes.pkg.api.v1.PersistentVolumeClaim: $ref: "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaim" description: Deprecated. Please use io.k8s.api.core.v1.PersistentVolumeClaim instead. io.k8s.kubernetes.pkg.api.v1.PersistentVolumeClaimList: $ref: "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaimList" description: Deprecated. Please use io.k8s.api.core.v1.PersistentVolumeClaimList instead. io.k8s.kubernetes.pkg.api.v1.PersistentVolumeClaimSpec: $ref: "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaimSpec" description: Deprecated. Please use io.k8s.api.core.v1.PersistentVolumeClaimSpec instead. io.k8s.kubernetes.pkg.api.v1.PersistentVolumeClaimStatus: $ref: "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaimStatus" description: Deprecated. Please use io.k8s.api.core.v1.PersistentVolumeClaimStatus instead. io.k8s.kubernetes.pkg.api.v1.PersistentVolumeClaimVolumeSource: $ref: "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaimVolumeSource" description: Deprecated. Please use io.k8s.api.core.v1.PersistentVolumeClaimVolumeSource instead. io.k8s.kubernetes.pkg.api.v1.PersistentVolumeList: $ref: "#/definitions/io.k8s.api.core.v1.PersistentVolumeList" description: Deprecated. Please use io.k8s.api.core.v1.PersistentVolumeList instead. io.k8s.kubernetes.pkg.api.v1.PersistentVolumeSpec: $ref: "#/definitions/io.k8s.api.core.v1.PersistentVolumeSpec" description: Deprecated. Please use io.k8s.api.core.v1.PersistentVolumeSpec instead. io.k8s.kubernetes.pkg.api.v1.PersistentVolumeStatus: $ref: "#/definitions/io.k8s.api.core.v1.PersistentVolumeStatus" description: Deprecated. Please use io.k8s.api.core.v1.PersistentVolumeStatus instead. io.k8s.kubernetes.pkg.api.v1.PhotonPersistentDiskVolumeSource: $ref: "#/definitions/io.k8s.api.core.v1.PhotonPersistentDiskVolumeSource" description: Deprecated. Please use io.k8s.api.core.v1.PhotonPersistentDiskVolumeSource instead. io.k8s.kubernetes.pkg.api.v1.Pod: $ref: "#/definitions/io.k8s.api.core.v1.Pod" description: Deprecated. Please use io.k8s.api.core.v1.Pod instead. io.k8s.kubernetes.pkg.api.v1.PodAffinity: $ref: "#/definitions/io.k8s.api.core.v1.PodAffinity" description: Deprecated. Please use io.k8s.api.core.v1.PodAffinity instead. io.k8s.kubernetes.pkg.api.v1.PodAffinityTerm: $ref: "#/definitions/io.k8s.api.core.v1.PodAffinityTerm" description: Deprecated. Please use io.k8s.api.core.v1.PodAffinityTerm instead. io.k8s.kubernetes.pkg.api.v1.PodAntiAffinity: $ref: "#/definitions/io.k8s.api.core.v1.PodAntiAffinity" description: Deprecated. Please use io.k8s.api.core.v1.PodAntiAffinity instead. io.k8s.kubernetes.pkg.api.v1.PodCondition: $ref: "#/definitions/io.k8s.api.core.v1.PodCondition" description: Deprecated. Please use io.k8s.api.core.v1.PodCondition instead. io.k8s.kubernetes.pkg.api.v1.PodList: $ref: "#/definitions/io.k8s.api.core.v1.PodList" description: Deprecated. Please use io.k8s.api.core.v1.PodList instead. io.k8s.kubernetes.pkg.api.v1.PodSecurityContext: $ref: "#/definitions/io.k8s.api.core.v1.PodSecurityContext" description: Deprecated. Please use io.k8s.api.core.v1.PodSecurityContext instead. io.k8s.kubernetes.pkg.api.v1.PodSpec: $ref: "#/definitions/io.k8s.api.core.v1.PodSpec" description: Deprecated. Please use io.k8s.api.core.v1.PodSpec instead. io.k8s.kubernetes.pkg.api.v1.PodStatus: $ref: "#/definitions/io.k8s.api.core.v1.PodStatus" description: Deprecated. Please use io.k8s.api.core.v1.PodStatus instead. io.k8s.kubernetes.pkg.api.v1.PodTemplate: $ref: "#/definitions/io.k8s.api.core.v1.PodTemplate" description: Deprecated. Please use io.k8s.api.core.v1.PodTemplate instead. io.k8s.kubernetes.pkg.api.v1.PodTemplateList: $ref: "#/definitions/io.k8s.api.core.v1.PodTemplateList" description: Deprecated. Please use io.k8s.api.core.v1.PodTemplateList instead. io.k8s.kubernetes.pkg.api.v1.PodTemplateSpec: $ref: "#/definitions/io.k8s.api.core.v1.PodTemplateSpec" description: Deprecated. Please use io.k8s.api.core.v1.PodTemplateSpec instead. io.k8s.kubernetes.pkg.api.v1.PortworxVolumeSource: $ref: "#/definitions/io.k8s.api.core.v1.PortworxVolumeSource" description: Deprecated. Please use io.k8s.api.core.v1.PortworxVolumeSource instead. io.k8s.kubernetes.pkg.api.v1.PreferredSchedulingTerm: $ref: "#/definitions/io.k8s.api.core.v1.PreferredSchedulingTerm" description: Deprecated. Please use io.k8s.api.core.v1.PreferredSchedulingTerm instead. io.k8s.kubernetes.pkg.api.v1.Probe: $ref: "#/definitions/io.k8s.api.core.v1.Probe" description: Deprecated. Please use io.k8s.api.core.v1.Probe instead. io.k8s.kubernetes.pkg.api.v1.ProjectedVolumeSource: $ref: "#/definitions/io.k8s.api.core.v1.ProjectedVolumeSource" description: Deprecated. Please use io.k8s.api.core.v1.ProjectedVolumeSource instead. io.k8s.kubernetes.pkg.api.v1.QuobyteVolumeSource: $ref: "#/definitions/io.k8s.api.core.v1.QuobyteVolumeSource" description: Deprecated. Please use io.k8s.api.core.v1.QuobyteVolumeSource instead. io.k8s.kubernetes.pkg.api.v1.RBDVolumeSource: $ref: "#/definitions/io.k8s.api.core.v1.RBDVolumeSource" description: Deprecated. Please use io.k8s.api.core.v1.RBDVolumeSource instead. io.k8s.kubernetes.pkg.api.v1.ReplicationController: $ref: "#/definitions/io.k8s.api.core.v1.ReplicationController" description: Deprecated. Please use io.k8s.api.core.v1.ReplicationController instead. io.k8s.kubernetes.pkg.api.v1.ReplicationControllerCondition: $ref: "#/definitions/io.k8s.api.core.v1.ReplicationControllerCondition" description: Deprecated. Please use io.k8s.api.core.v1.ReplicationControllerCondition instead. io.k8s.kubernetes.pkg.api.v1.ReplicationControllerList: $ref: "#/definitions/io.k8s.api.core.v1.ReplicationControllerList" description: Deprecated. Please use io.k8s.api.core.v1.ReplicationControllerList instead. io.k8s.kubernetes.pkg.api.v1.ReplicationControllerSpec: $ref: "#/definitions/io.k8s.api.core.v1.ReplicationControllerSpec" description: Deprecated. Please use io.k8s.api.core.v1.ReplicationControllerSpec instead. io.k8s.kubernetes.pkg.api.v1.ReplicationControllerStatus: $ref: "#/definitions/io.k8s.api.core.v1.ReplicationControllerStatus" description: Deprecated. Please use io.k8s.api.core.v1.ReplicationControllerStatus instead. io.k8s.kubernetes.pkg.api.v1.ResourceFieldSelector: $ref: "#/definitions/io.k8s.api.core.v1.ResourceFieldSelector" description: Deprecated. Please use io.k8s.api.core.v1.ResourceFieldSelector instead. io.k8s.kubernetes.pkg.api.v1.ResourceQuota: $ref: "#/definitions/io.k8s.api.core.v1.ResourceQuota" description: Deprecated. Please use io.k8s.api.core.v1.ResourceQuota instead. io.k8s.kubernetes.pkg.api.v1.ResourceQuotaList: $ref: "#/definitions/io.k8s.api.core.v1.ResourceQuotaList" description: Deprecated. Please use io.k8s.api.core.v1.ResourceQuotaList instead. io.k8s.kubernetes.pkg.api.v1.ResourceQuotaSpec: $ref: "#/definitions/io.k8s.api.core.v1.ResourceQuotaSpec" description: Deprecated. Please use io.k8s.api.core.v1.ResourceQuotaSpec instead. io.k8s.kubernetes.pkg.api.v1.ResourceQuotaStatus: $ref: "#/definitions/io.k8s.api.core.v1.ResourceQuotaStatus" description: Deprecated. Please use io.k8s.api.core.v1.ResourceQuotaStatus instead. io.k8s.kubernetes.pkg.api.v1.ResourceRequirements: $ref: "#/definitions/io.k8s.api.core.v1.ResourceRequirements" description: Deprecated. Please use io.k8s.api.core.v1.ResourceRequirements instead. io.k8s.kubernetes.pkg.api.v1.SELinuxOptions: $ref: "#/definitions/io.k8s.api.core.v1.SELinuxOptions" description: Deprecated. Please use io.k8s.api.core.v1.SELinuxOptions instead. io.k8s.kubernetes.pkg.api.v1.ScaleIOVolumeSource: $ref: "#/definitions/io.k8s.api.core.v1.ScaleIOVolumeSource" description: Deprecated. Please use io.k8s.api.core.v1.ScaleIOVolumeSource instead. io.k8s.kubernetes.pkg.api.v1.Secret: $ref: "#/definitions/io.k8s.api.core.v1.Secret" description: Deprecated. Please use io.k8s.api.core.v1.Secret instead. io.k8s.kubernetes.pkg.api.v1.SecretEnvSource: $ref: "#/definitions/io.k8s.api.core.v1.SecretEnvSource" description: Deprecated. Please use io.k8s.api.core.v1.SecretEnvSource instead. io.k8s.kubernetes.pkg.api.v1.SecretKeySelector: $ref: "#/definitions/io.k8s.api.core.v1.SecretKeySelector" description: Deprecated. Please use io.k8s.api.core.v1.SecretKeySelector instead. io.k8s.kubernetes.pkg.api.v1.SecretList: $ref: "#/definitions/io.k8s.api.core.v1.SecretList" description: Deprecated. Please use io.k8s.api.core.v1.SecretList instead. io.k8s.kubernetes.pkg.api.v1.SecretProjection: $ref: "#/definitions/io.k8s.api.core.v1.SecretProjection" description: Deprecated. Please use io.k8s.api.core.v1.SecretProjection instead. io.k8s.kubernetes.pkg.api.v1.SecretVolumeSource: $ref: "#/definitions/io.k8s.api.core.v1.SecretVolumeSource" description: Deprecated. Please use io.k8s.api.core.v1.SecretVolumeSource instead. io.k8s.kubernetes.pkg.api.v1.SecurityContext: $ref: "#/definitions/io.k8s.api.core.v1.SecurityContext" description: Deprecated. Please use io.k8s.api.core.v1.SecurityContext instead. io.k8s.kubernetes.pkg.api.v1.Service: $ref: "#/definitions/io.k8s.api.core.v1.Service" description: Deprecated. Please use io.k8s.api.core.v1.Service instead. io.k8s.kubernetes.pkg.api.v1.ServiceAccount: $ref: "#/definitions/io.k8s.api.core.v1.ServiceAccount" description: Deprecated. Please use io.k8s.api.core.v1.ServiceAccount instead. io.k8s.kubernetes.pkg.api.v1.ServiceAccountList: $ref: "#/definitions/io.k8s.api.core.v1.ServiceAccountList" description: Deprecated. Please use io.k8s.api.core.v1.ServiceAccountList instead. io.k8s.kubernetes.pkg.api.v1.ServiceList: $ref: "#/definitions/io.k8s.api.core.v1.ServiceList" description: Deprecated. Please use io.k8s.api.core.v1.ServiceList instead. io.k8s.kubernetes.pkg.api.v1.ServicePort: $ref: "#/definitions/io.k8s.api.core.v1.ServicePort" description: Deprecated. Please use io.k8s.api.core.v1.ServicePort instead. io.k8s.kubernetes.pkg.api.v1.ServiceSpec: $ref: "#/definitions/io.k8s.api.core.v1.ServiceSpec" description: Deprecated. Please use io.k8s.api.core.v1.ServiceSpec instead. io.k8s.kubernetes.pkg.api.v1.ServiceStatus: $ref: "#/definitions/io.k8s.api.core.v1.ServiceStatus" description: Deprecated. Please use io.k8s.api.core.v1.ServiceStatus instead. io.k8s.kubernetes.pkg.api.v1.StorageOSPersistentVolumeSource: $ref: "#/definitions/io.k8s.api.core.v1.StorageOSPersistentVolumeSource" description: Deprecated. Please use io.k8s.api.core.v1.StorageOSPersistentVolumeSource instead. io.k8s.kubernetes.pkg.api.v1.StorageOSVolumeSource: $ref: "#/definitions/io.k8s.api.core.v1.StorageOSVolumeSource" description: Deprecated. Please use io.k8s.api.core.v1.StorageOSVolumeSource instead. io.k8s.kubernetes.pkg.api.v1.TCPSocketAction: $ref: "#/definitions/io.k8s.api.core.v1.TCPSocketAction" description: Deprecated. Please use io.k8s.api.core.v1.TCPSocketAction instead. io.k8s.kubernetes.pkg.api.v1.Taint: $ref: "#/definitions/io.k8s.api.core.v1.Taint" description: Deprecated. Please use io.k8s.api.core.v1.Taint instead. io.k8s.kubernetes.pkg.api.v1.Toleration: $ref: "#/definitions/io.k8s.api.core.v1.Toleration" description: Deprecated. Please use io.k8s.api.core.v1.Toleration instead. io.k8s.kubernetes.pkg.api.v1.Volume: $ref: "#/definitions/io.k8s.api.core.v1.Volume" description: Deprecated. Please use io.k8s.api.core.v1.Volume instead. io.k8s.kubernetes.pkg.api.v1.VolumeMount: $ref: "#/definitions/io.k8s.api.core.v1.VolumeMount" description: Deprecated. Please use io.k8s.api.core.v1.VolumeMount instead. io.k8s.kubernetes.pkg.api.v1.VolumeProjection: $ref: "#/definitions/io.k8s.api.core.v1.VolumeProjection" description: Deprecated. Please use io.k8s.api.core.v1.VolumeProjection instead. io.k8s.kubernetes.pkg.api.v1.VsphereVirtualDiskVolumeSource: $ref: "#/definitions/io.k8s.api.core.v1.VsphereVirtualDiskVolumeSource" description: Deprecated. Please use io.k8s.api.core.v1.VsphereVirtualDiskVolumeSource instead. io.k8s.kubernetes.pkg.api.v1.WeightedPodAffinityTerm: $ref: "#/definitions/io.k8s.api.core.v1.WeightedPodAffinityTerm" description: Deprecated. Please use io.k8s.api.core.v1.WeightedPodAffinityTerm instead. io.k8s.kubernetes.pkg.apis.admissionregistration.v1alpha1.Initializer: $ref: "#/definitions/io.k8s.api.admissionregistration.v1alpha1.Initializer" description: Deprecated. Please use io.k8s.api.admissionregistration.v1alpha1.Initializer instead. io.k8s.kubernetes.pkg.apis.admissionregistration.v1alpha1.InitializerConfiguration: $ref: "#/definitions/io.k8s.api.admissionregistration.v1alpha1.InitializerConfiguration" description: Deprecated. Please use io.k8s.api.admissionregistration.v1alpha1.InitializerConfiguration instead. io.k8s.kubernetes.pkg.apis.admissionregistration.v1alpha1.InitializerConfigurationList: $ref: "#/definitions/io.k8s.api.admissionregistration.v1alpha1.InitializerConfigurationList" description: Deprecated. Please use io.k8s.api.admissionregistration.v1alpha1.InitializerConfigurationList instead. io.k8s.kubernetes.pkg.apis.admissionregistration.v1alpha1.Rule: $ref: "#/definitions/io.k8s.api.admissionregistration.v1alpha1.Rule" description: Deprecated. Please use io.k8s.api.admissionregistration.v1alpha1.Rule instead. io.k8s.kubernetes.pkg.apis.apps.v1beta1.ControllerRevision: $ref: "#/definitions/io.k8s.api.apps.v1beta1.ControllerRevision" description: Deprecated. Please use io.k8s.api.apps.v1beta1.ControllerRevision instead. io.k8s.kubernetes.pkg.apis.apps.v1beta1.ControllerRevisionList: $ref: "#/definitions/io.k8s.api.apps.v1beta1.ControllerRevisionList" description: Deprecated. Please use io.k8s.api.apps.v1beta1.ControllerRevisionList instead. io.k8s.kubernetes.pkg.apis.apps.v1beta1.Deployment: $ref: "#/definitions/io.k8s.api.apps.v1beta1.Deployment" description: Deprecated. Please use io.k8s.api.apps.v1beta1.Deployment instead. io.k8s.kubernetes.pkg.apis.apps.v1beta1.DeploymentCondition: $ref: "#/definitions/io.k8s.api.apps.v1beta1.DeploymentCondition" description: Deprecated. Please use io.k8s.api.apps.v1beta1.DeploymentCondition instead. io.k8s.kubernetes.pkg.apis.apps.v1beta1.DeploymentList: $ref: "#/definitions/io.k8s.api.apps.v1beta1.DeploymentList" description: Deprecated. Please use io.k8s.api.apps.v1beta1.DeploymentList instead. io.k8s.kubernetes.pkg.apis.apps.v1beta1.DeploymentRollback: $ref: "#/definitions/io.k8s.api.apps.v1beta1.DeploymentRollback" description: Deprecated. Please use io.k8s.api.apps.v1beta1.DeploymentRollback instead. io.k8s.kubernetes.pkg.apis.apps.v1beta1.DeploymentSpec: $ref: "#/definitions/io.k8s.api.apps.v1beta1.DeploymentSpec" description: Deprecated. Please use io.k8s.api.apps.v1beta1.DeploymentSpec instead. io.k8s.kubernetes.pkg.apis.apps.v1beta1.DeploymentStatus: $ref: "#/definitions/io.k8s.api.apps.v1beta1.DeploymentStatus" description: Deprecated. Please use io.k8s.api.apps.v1beta1.DeploymentStatus instead. io.k8s.kubernetes.pkg.apis.apps.v1beta1.DeploymentStrategy: $ref: "#/definitions/io.k8s.api.apps.v1beta1.DeploymentStrategy" description: Deprecated. Please use io.k8s.api.apps.v1beta1.DeploymentStrategy instead. io.k8s.kubernetes.pkg.apis.apps.v1beta1.RollbackConfig: $ref: "#/definitions/io.k8s.api.apps.v1beta1.RollbackConfig" description: Deprecated. Please use io.k8s.api.apps.v1beta1.RollbackConfig instead. io.k8s.kubernetes.pkg.apis.apps.v1beta1.RollingUpdateDeployment: $ref: "#/definitions/io.k8s.api.apps.v1beta1.RollingUpdateDeployment" description: Deprecated. Please use io.k8s.api.apps.v1beta1.RollingUpdateDeployment instead. io.k8s.kubernetes.pkg.apis.apps.v1beta1.RollingUpdateStatefulSetStrategy: $ref: "#/definitions/io.k8s.api.apps.v1beta1.RollingUpdateStatefulSetStrategy" description: Deprecated. Please use io.k8s.api.apps.v1beta1.RollingUpdateStatefulSetStrategy instead. io.k8s.kubernetes.pkg.apis.apps.v1beta1.Scale: $ref: "#/definitions/io.k8s.api.apps.v1beta1.Scale" description: Deprecated. Please use io.k8s.api.apps.v1beta1.Scale instead. io.k8s.kubernetes.pkg.apis.apps.v1beta1.ScaleSpec: $ref: "#/definitions/io.k8s.api.apps.v1beta1.ScaleSpec" description: Deprecated. Please use io.k8s.api.apps.v1beta1.ScaleSpec instead. io.k8s.kubernetes.pkg.apis.apps.v1beta1.ScaleStatus: $ref: "#/definitions/io.k8s.api.apps.v1beta1.ScaleStatus" description: Deprecated. Please use io.k8s.api.apps.v1beta1.ScaleStatus instead. io.k8s.kubernetes.pkg.apis.apps.v1beta1.StatefulSet: $ref: "#/definitions/io.k8s.api.apps.v1beta1.StatefulSet" description: Deprecated. Please use io.k8s.api.apps.v1beta1.StatefulSet instead. io.k8s.kubernetes.pkg.apis.apps.v1beta1.StatefulSetList: $ref: "#/definitions/io.k8s.api.apps.v1beta1.StatefulSetList" description: Deprecated. Please use io.k8s.api.apps.v1beta1.StatefulSetList instead. io.k8s.kubernetes.pkg.apis.apps.v1beta1.StatefulSetSpec: $ref: "#/definitions/io.k8s.api.apps.v1beta1.StatefulSetSpec" description: Deprecated. Please use io.k8s.api.apps.v1beta1.StatefulSetSpec instead. io.k8s.kubernetes.pkg.apis.apps.v1beta1.StatefulSetStatus: $ref: "#/definitions/io.k8s.api.apps.v1beta1.StatefulSetStatus" description: Deprecated. Please use io.k8s.api.apps.v1beta1.StatefulSetStatus instead. io.k8s.kubernetes.pkg.apis.apps.v1beta1.StatefulSetUpdateStrategy: $ref: "#/definitions/io.k8s.api.apps.v1beta1.StatefulSetUpdateStrategy" description: Deprecated. Please use io.k8s.api.apps.v1beta1.StatefulSetUpdateStrategy instead. io.k8s.kubernetes.pkg.apis.authentication.v1.TokenReview: $ref: "#/definitions/io.k8s.api.authentication.v1.TokenReview" description: Deprecated. Please use io.k8s.api.authentication.v1.TokenReview instead. io.k8s.kubernetes.pkg.apis.authentication.v1.TokenReviewSpec: $ref: "#/definitions/io.k8s.api.authentication.v1.TokenReviewSpec" description: Deprecated. Please use io.k8s.api.authentication.v1.TokenReviewSpec instead. io.k8s.kubernetes.pkg.apis.authentication.v1.TokenReviewStatus: $ref: "#/definitions/io.k8s.api.authentication.v1.TokenReviewStatus" description: Deprecated. Please use io.k8s.api.authentication.v1.TokenReviewStatus instead. io.k8s.kubernetes.pkg.apis.authentication.v1.UserInfo: $ref: "#/definitions/io.k8s.api.authentication.v1.UserInfo" description: Deprecated. Please use io.k8s.api.authentication.v1.UserInfo instead. io.k8s.kubernetes.pkg.apis.authentication.v1beta1.TokenReview: $ref: "#/definitions/io.k8s.api.authentication.v1beta1.TokenReview" description: Deprecated. Please use io.k8s.api.authentication.v1beta1.TokenReview instead. io.k8s.kubernetes.pkg.apis.authentication.v1beta1.TokenReviewSpec: $ref: "#/definitions/io.k8s.api.authentication.v1beta1.TokenReviewSpec" description: Deprecated. Please use io.k8s.api.authentication.v1beta1.TokenReviewSpec instead. io.k8s.kubernetes.pkg.apis.authentication.v1beta1.TokenReviewStatus: $ref: "#/definitions/io.k8s.api.authentication.v1beta1.TokenReviewStatus" description: Deprecated. Please use io.k8s.api.authentication.v1beta1.TokenReviewStatus instead. io.k8s.kubernetes.pkg.apis.authentication.v1beta1.UserInfo: $ref: "#/definitions/io.k8s.api.authentication.v1beta1.UserInfo" description: Deprecated. Please use io.k8s.api.authentication.v1beta1.UserInfo instead. io.k8s.kubernetes.pkg.apis.authorization.v1.LocalSubjectAccessReview: $ref: "#/definitions/io.k8s.api.authorization.v1.LocalSubjectAccessReview" description: Deprecated. Please use io.k8s.api.authorization.v1.LocalSubjectAccessReview instead. io.k8s.kubernetes.pkg.apis.authorization.v1.NonResourceAttributes: $ref: "#/definitions/io.k8s.api.authorization.v1.NonResourceAttributes" description: Deprecated. Please use io.k8s.api.authorization.v1.NonResourceAttributes instead. io.k8s.kubernetes.pkg.apis.authorization.v1.ResourceAttributes: $ref: "#/definitions/io.k8s.api.authorization.v1.ResourceAttributes" description: Deprecated. Please use io.k8s.api.authorization.v1.ResourceAttributes instead. io.k8s.kubernetes.pkg.apis.authorization.v1.SelfSubjectAccessReview: $ref: "#/definitions/io.k8s.api.authorization.v1.SelfSubjectAccessReview" description: Deprecated. Please use io.k8s.api.authorization.v1.SelfSubjectAccessReview instead. io.k8s.kubernetes.pkg.apis.authorization.v1.SelfSubjectAccessReviewSpec: $ref: "#/definitions/io.k8s.api.authorization.v1.SelfSubjectAccessReviewSpec" description: Deprecated. Please use io.k8s.api.authorization.v1.SelfSubjectAccessReviewSpec instead. io.k8s.kubernetes.pkg.apis.authorization.v1.SubjectAccessReview: $ref: "#/definitions/io.k8s.api.authorization.v1.SubjectAccessReview" description: Deprecated. Please use io.k8s.api.authorization.v1.SubjectAccessReview instead. io.k8s.kubernetes.pkg.apis.authorization.v1.SubjectAccessReviewSpec: $ref: "#/definitions/io.k8s.api.authorization.v1.SubjectAccessReviewSpec" description: Deprecated. Please use io.k8s.api.authorization.v1.SubjectAccessReviewSpec instead. io.k8s.kubernetes.pkg.apis.authorization.v1.SubjectAccessReviewStatus: $ref: "#/definitions/io.k8s.api.authorization.v1.SubjectAccessReviewStatus" description: Deprecated. Please use io.k8s.api.authorization.v1.SubjectAccessReviewStatus instead. io.k8s.kubernetes.pkg.apis.authorization.v1beta1.LocalSubjectAccessReview: $ref: "#/definitions/io.k8s.api.authorization.v1beta1.LocalSubjectAccessReview" description: Deprecated. Please use io.k8s.api.authorization.v1beta1.LocalSubjectAccessReview instead. io.k8s.kubernetes.pkg.apis.authorization.v1beta1.NonResourceAttributes: $ref: "#/definitions/io.k8s.api.authorization.v1beta1.NonResourceAttributes" description: Deprecated. Please use io.k8s.api.authorization.v1beta1.NonResourceAttributes instead. io.k8s.kubernetes.pkg.apis.authorization.v1beta1.ResourceAttributes: $ref: "#/definitions/io.k8s.api.authorization.v1beta1.ResourceAttributes" description: Deprecated. Please use io.k8s.api.authorization.v1beta1.ResourceAttributes instead. io.k8s.kubernetes.pkg.apis.authorization.v1beta1.SelfSubjectAccessReview: $ref: "#/definitions/io.k8s.api.authorization.v1beta1.SelfSubjectAccessReview" description: Deprecated. Please use io.k8s.api.authorization.v1beta1.SelfSubjectAccessReview instead. io.k8s.kubernetes.pkg.apis.authorization.v1beta1.SelfSubjectAccessReviewSpec: $ref: "#/definitions/io.k8s.api.authorization.v1beta1.SelfSubjectAccessReviewSpec" description: Deprecated. Please use io.k8s.api.authorization.v1beta1.SelfSubjectAccessReviewSpec instead. io.k8s.kubernetes.pkg.apis.authorization.v1beta1.SubjectAccessReview: $ref: "#/definitions/io.k8s.api.authorization.v1beta1.SubjectAccessReview" description: Deprecated. Please use io.k8s.api.authorization.v1beta1.SubjectAccessReview instead. io.k8s.kubernetes.pkg.apis.authorization.v1beta1.SubjectAccessReviewSpec: $ref: "#/definitions/io.k8s.api.authorization.v1beta1.SubjectAccessReviewSpec" description: Deprecated. Please use io.k8s.api.authorization.v1beta1.SubjectAccessReviewSpec instead. io.k8s.kubernetes.pkg.apis.authorization.v1beta1.SubjectAccessReviewStatus: $ref: "#/definitions/io.k8s.api.authorization.v1beta1.SubjectAccessReviewStatus" description: Deprecated. Please use io.k8s.api.authorization.v1beta1.SubjectAccessReviewStatus instead. io.k8s.kubernetes.pkg.apis.autoscaling.v1.CrossVersionObjectReference: $ref: "#/definitions/io.k8s.api.autoscaling.v1.CrossVersionObjectReference" description: Deprecated. Please use io.k8s.api.autoscaling.v1.CrossVersionObjectReference instead. io.k8s.kubernetes.pkg.apis.autoscaling.v1.HorizontalPodAutoscaler: $ref: "#/definitions/io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler" description: Deprecated. Please use io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler instead. io.k8s.kubernetes.pkg.apis.autoscaling.v1.HorizontalPodAutoscalerList: $ref: "#/definitions/io.k8s.api.autoscaling.v1.HorizontalPodAutoscalerList" description: Deprecated. Please use io.k8s.api.autoscaling.v1.HorizontalPodAutoscalerList instead. io.k8s.kubernetes.pkg.apis.autoscaling.v1.HorizontalPodAutoscalerSpec: $ref: "#/definitions/io.k8s.api.autoscaling.v1.HorizontalPodAutoscalerSpec" description: Deprecated. Please use io.k8s.api.autoscaling.v1.HorizontalPodAutoscalerSpec instead. io.k8s.kubernetes.pkg.apis.autoscaling.v1.HorizontalPodAutoscalerStatus: $ref: "#/definitions/io.k8s.api.autoscaling.v1.HorizontalPodAutoscalerStatus" description: Deprecated. Please use io.k8s.api.autoscaling.v1.HorizontalPodAutoscalerStatus instead. io.k8s.kubernetes.pkg.apis.autoscaling.v1.Scale: $ref: "#/definitions/io.k8s.api.autoscaling.v1.Scale" description: Deprecated. Please use io.k8s.api.autoscaling.v1.Scale instead. io.k8s.kubernetes.pkg.apis.autoscaling.v1.ScaleSpec: $ref: "#/definitions/io.k8s.api.autoscaling.v1.ScaleSpec" description: Deprecated. Please use io.k8s.api.autoscaling.v1.ScaleSpec instead. io.k8s.kubernetes.pkg.apis.autoscaling.v1.ScaleStatus: $ref: "#/definitions/io.k8s.api.autoscaling.v1.ScaleStatus" description: Deprecated. Please use io.k8s.api.autoscaling.v1.ScaleStatus instead. io.k8s.kubernetes.pkg.apis.batch.v1.Job: $ref: "#/definitions/io.k8s.api.batch.v1.Job" description: Deprecated. Please use io.k8s.api.batch.v1.Job instead. io.k8s.kubernetes.pkg.apis.batch.v1.JobCondition: $ref: "#/definitions/io.k8s.api.batch.v1.JobCondition" description: Deprecated. Please use io.k8s.api.batch.v1.JobCondition instead. io.k8s.kubernetes.pkg.apis.batch.v1.JobList: $ref: "#/definitions/io.k8s.api.batch.v1.JobList" description: Deprecated. Please use io.k8s.api.batch.v1.JobList instead. io.k8s.kubernetes.pkg.apis.batch.v1.JobSpec: $ref: "#/definitions/io.k8s.api.batch.v1.JobSpec" description: Deprecated. Please use io.k8s.api.batch.v1.JobSpec instead. io.k8s.kubernetes.pkg.apis.batch.v1.JobStatus: $ref: "#/definitions/io.k8s.api.batch.v1.JobStatus" description: Deprecated. Please use io.k8s.api.batch.v1.JobStatus instead. io.k8s.kubernetes.pkg.apis.batch.v2alpha1.CronJob: $ref: "#/definitions/io.k8s.api.batch.v2alpha1.CronJob" description: Deprecated. Please use io.k8s.api.batch.v2alpha1.CronJob instead. io.k8s.kubernetes.pkg.apis.batch.v2alpha1.CronJobList: $ref: "#/definitions/io.k8s.api.batch.v2alpha1.CronJobList" description: Deprecated. Please use io.k8s.api.batch.v2alpha1.CronJobList instead. io.k8s.kubernetes.pkg.apis.batch.v2alpha1.CronJobSpec: $ref: "#/definitions/io.k8s.api.batch.v2alpha1.CronJobSpec" description: Deprecated. Please use io.k8s.api.batch.v2alpha1.CronJobSpec instead. io.k8s.kubernetes.pkg.apis.batch.v2alpha1.CronJobStatus: $ref: "#/definitions/io.k8s.api.batch.v2alpha1.CronJobStatus" description: Deprecated. Please use io.k8s.api.batch.v2alpha1.CronJobStatus instead. io.k8s.kubernetes.pkg.apis.batch.v2alpha1.JobTemplateSpec: $ref: "#/definitions/io.k8s.api.batch.v2alpha1.JobTemplateSpec" description: Deprecated. Please use io.k8s.api.batch.v2alpha1.JobTemplateSpec instead. io.k8s.kubernetes.pkg.apis.certificates.v1beta1.CertificateSigningRequest: $ref: "#/definitions/io.k8s.api.certificates.v1beta1.CertificateSigningRequest" description: Deprecated. Please use io.k8s.api.certificates.v1beta1.CertificateSigningRequest instead. io.k8s.kubernetes.pkg.apis.certificates.v1beta1.CertificateSigningRequestCondition: $ref: "#/definitions/io.k8s.api.certificates.v1beta1.CertificateSigningRequestCondition" description: Deprecated. Please use io.k8s.api.certificates.v1beta1.CertificateSigningRequestCondition instead. io.k8s.kubernetes.pkg.apis.certificates.v1beta1.CertificateSigningRequestList: $ref: "#/definitions/io.k8s.api.certificates.v1beta1.CertificateSigningRequestList" description: Deprecated. Please use io.k8s.api.certificates.v1beta1.CertificateSigningRequestList instead. io.k8s.kubernetes.pkg.apis.certificates.v1beta1.CertificateSigningRequestSpec: $ref: "#/definitions/io.k8s.api.certificates.v1beta1.CertificateSigningRequestSpec" description: Deprecated. Please use io.k8s.api.certificates.v1beta1.CertificateSigningRequestSpec instead. io.k8s.kubernetes.pkg.apis.certificates.v1beta1.CertificateSigningRequestStatus: $ref: "#/definitions/io.k8s.api.certificates.v1beta1.CertificateSigningRequestStatus" description: Deprecated. Please use io.k8s.api.certificates.v1beta1.CertificateSigningRequestStatus instead. io.k8s.kubernetes.pkg.apis.extensions.v1beta1.DaemonSet: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.DaemonSet" description: Deprecated. Please use io.k8s.api.extensions.v1beta1.DaemonSet instead. io.k8s.kubernetes.pkg.apis.extensions.v1beta1.DaemonSetList: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.DaemonSetList" description: Deprecated. Please use io.k8s.api.extensions.v1beta1.DaemonSetList instead. io.k8s.kubernetes.pkg.apis.extensions.v1beta1.DaemonSetSpec: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.DaemonSetSpec" description: Deprecated. Please use io.k8s.api.extensions.v1beta1.DaemonSetSpec instead. io.k8s.kubernetes.pkg.apis.extensions.v1beta1.DaemonSetStatus: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.DaemonSetStatus" description: Deprecated. Please use io.k8s.api.extensions.v1beta1.DaemonSetStatus instead. io.k8s.kubernetes.pkg.apis.extensions.v1beta1.DaemonSetUpdateStrategy: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.DaemonSetUpdateStrategy" description: Deprecated. Please use io.k8s.api.extensions.v1beta1.DaemonSetUpdateStrategy instead. io.k8s.kubernetes.pkg.apis.extensions.v1beta1.Deployment: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.Deployment" description: Deprecated. Please use io.k8s.api.extensions.v1beta1.Deployment instead. io.k8s.kubernetes.pkg.apis.extensions.v1beta1.DeploymentCondition: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.DeploymentCondition" description: Deprecated. Please use io.k8s.api.extensions.v1beta1.DeploymentCondition instead. io.k8s.kubernetes.pkg.apis.extensions.v1beta1.DeploymentList: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.DeploymentList" description: Deprecated. Please use io.k8s.api.extensions.v1beta1.DeploymentList instead. io.k8s.kubernetes.pkg.apis.extensions.v1beta1.DeploymentRollback: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.DeploymentRollback" description: Deprecated. Please use io.k8s.api.extensions.v1beta1.DeploymentRollback instead. io.k8s.kubernetes.pkg.apis.extensions.v1beta1.DeploymentSpec: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.DeploymentSpec" description: Deprecated. Please use io.k8s.api.extensions.v1beta1.DeploymentSpec instead. io.k8s.kubernetes.pkg.apis.extensions.v1beta1.DeploymentStatus: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.DeploymentStatus" description: Deprecated. Please use io.k8s.api.extensions.v1beta1.DeploymentStatus instead. io.k8s.kubernetes.pkg.apis.extensions.v1beta1.DeploymentStrategy: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.DeploymentStrategy" description: Deprecated. Please use io.k8s.api.extensions.v1beta1.DeploymentStrategy instead. io.k8s.kubernetes.pkg.apis.extensions.v1beta1.FSGroupStrategyOptions: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.FSGroupStrategyOptions" description: Deprecated. Please use io.k8s.api.extensions.v1beta1.FSGroupStrategyOptions instead. io.k8s.kubernetes.pkg.apis.extensions.v1beta1.HTTPIngressPath: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.HTTPIngressPath" description: Deprecated. Please use io.k8s.api.extensions.v1beta1.HTTPIngressPath instead. io.k8s.kubernetes.pkg.apis.extensions.v1beta1.HTTPIngressRuleValue: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.HTTPIngressRuleValue" description: Deprecated. Please use io.k8s.api.extensions.v1beta1.HTTPIngressRuleValue instead. io.k8s.kubernetes.pkg.apis.extensions.v1beta1.HostPortRange: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.HostPortRange" description: Deprecated. Please use io.k8s.api.extensions.v1beta1.HostPortRange instead. io.k8s.kubernetes.pkg.apis.extensions.v1beta1.IDRange: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.IDRange" description: Deprecated. Please use io.k8s.api.extensions.v1beta1.IDRange instead. io.k8s.kubernetes.pkg.apis.extensions.v1beta1.Ingress: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.Ingress" description: Deprecated. Please use io.k8s.api.extensions.v1beta1.Ingress instead. io.k8s.kubernetes.pkg.apis.extensions.v1beta1.IngressBackend: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.IngressBackend" description: Deprecated. Please use io.k8s.api.extensions.v1beta1.IngressBackend instead. io.k8s.kubernetes.pkg.apis.extensions.v1beta1.IngressList: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.IngressList" description: Deprecated. Please use io.k8s.api.extensions.v1beta1.IngressList instead. io.k8s.kubernetes.pkg.apis.extensions.v1beta1.IngressRule: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.IngressRule" description: Deprecated. Please use io.k8s.api.extensions.v1beta1.IngressRule instead. io.k8s.kubernetes.pkg.apis.extensions.v1beta1.IngressSpec: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.IngressSpec" description: Deprecated. Please use io.k8s.api.extensions.v1beta1.IngressSpec instead. io.k8s.kubernetes.pkg.apis.extensions.v1beta1.IngressStatus: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.IngressStatus" description: Deprecated. Please use io.k8s.api.extensions.v1beta1.IngressStatus instead. io.k8s.kubernetes.pkg.apis.extensions.v1beta1.IngressTLS: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.IngressTLS" description: Deprecated. Please use io.k8s.api.extensions.v1beta1.IngressTLS instead. io.k8s.kubernetes.pkg.apis.extensions.v1beta1.NetworkPolicy: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.NetworkPolicy" description: Deprecated. Please use io.k8s.api.extensions.v1beta1.NetworkPolicy instead. io.k8s.kubernetes.pkg.apis.extensions.v1beta1.NetworkPolicyIngressRule: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.NetworkPolicyIngressRule" description: Deprecated. Please use io.k8s.api.extensions.v1beta1.NetworkPolicyIngressRule instead. io.k8s.kubernetes.pkg.apis.extensions.v1beta1.NetworkPolicyList: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.NetworkPolicyList" description: Deprecated. Please use io.k8s.api.extensions.v1beta1.NetworkPolicyList instead. io.k8s.kubernetes.pkg.apis.extensions.v1beta1.NetworkPolicyPeer: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.NetworkPolicyPeer" description: Deprecated. Please use io.k8s.api.extensions.v1beta1.NetworkPolicyPeer instead. io.k8s.kubernetes.pkg.apis.extensions.v1beta1.NetworkPolicyPort: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.NetworkPolicyPort" description: Deprecated. Please use io.k8s.api.extensions.v1beta1.NetworkPolicyPort instead. io.k8s.kubernetes.pkg.apis.extensions.v1beta1.NetworkPolicySpec: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.NetworkPolicySpec" description: Deprecated. Please use io.k8s.api.extensions.v1beta1.NetworkPolicySpec instead. io.k8s.kubernetes.pkg.apis.extensions.v1beta1.PodSecurityPolicy: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.PodSecurityPolicy" description: Deprecated. Please use io.k8s.api.extensions.v1beta1.PodSecurityPolicy instead. io.k8s.kubernetes.pkg.apis.extensions.v1beta1.PodSecurityPolicyList: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.PodSecurityPolicyList" description: Deprecated. Please use io.k8s.api.extensions.v1beta1.PodSecurityPolicyList instead. io.k8s.kubernetes.pkg.apis.extensions.v1beta1.PodSecurityPolicySpec: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.PodSecurityPolicySpec" description: Deprecated. Please use io.k8s.api.extensions.v1beta1.PodSecurityPolicySpec instead. io.k8s.kubernetes.pkg.apis.extensions.v1beta1.ReplicaSet: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.ReplicaSet" description: Deprecated. Please use io.k8s.api.extensions.v1beta1.ReplicaSet instead. io.k8s.kubernetes.pkg.apis.extensions.v1beta1.ReplicaSetCondition: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.ReplicaSetCondition" description: Deprecated. Please use io.k8s.api.extensions.v1beta1.ReplicaSetCondition instead. io.k8s.kubernetes.pkg.apis.extensions.v1beta1.ReplicaSetList: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.ReplicaSetList" description: Deprecated. Please use io.k8s.api.extensions.v1beta1.ReplicaSetList instead. io.k8s.kubernetes.pkg.apis.extensions.v1beta1.ReplicaSetSpec: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.ReplicaSetSpec" description: Deprecated. Please use io.k8s.api.extensions.v1beta1.ReplicaSetSpec instead. io.k8s.kubernetes.pkg.apis.extensions.v1beta1.ReplicaSetStatus: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.ReplicaSetStatus" description: Deprecated. Please use io.k8s.api.extensions.v1beta1.ReplicaSetStatus instead. io.k8s.kubernetes.pkg.apis.extensions.v1beta1.RollbackConfig: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.RollbackConfig" description: Deprecated. Please use io.k8s.api.extensions.v1beta1.RollbackConfig instead. io.k8s.kubernetes.pkg.apis.extensions.v1beta1.RollingUpdateDaemonSet: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.RollingUpdateDaemonSet" description: Deprecated. Please use io.k8s.api.extensions.v1beta1.RollingUpdateDaemonSet instead. io.k8s.kubernetes.pkg.apis.extensions.v1beta1.RollingUpdateDeployment: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.RollingUpdateDeployment" description: Deprecated. Please use io.k8s.api.extensions.v1beta1.RollingUpdateDeployment instead. io.k8s.kubernetes.pkg.apis.extensions.v1beta1.RunAsUserStrategyOptions: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.RunAsUserStrategyOptions" description: Deprecated. Please use io.k8s.api.extensions.v1beta1.RunAsUserStrategyOptions instead. io.k8s.kubernetes.pkg.apis.extensions.v1beta1.SELinuxStrategyOptions: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.SELinuxStrategyOptions" description: Deprecated. Please use io.k8s.api.extensions.v1beta1.SELinuxStrategyOptions instead. io.k8s.kubernetes.pkg.apis.extensions.v1beta1.Scale: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.Scale" description: Deprecated. Please use io.k8s.api.extensions.v1beta1.Scale instead. io.k8s.kubernetes.pkg.apis.extensions.v1beta1.ScaleSpec: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.ScaleSpec" description: Deprecated. Please use io.k8s.api.extensions.v1beta1.ScaleSpec instead. io.k8s.kubernetes.pkg.apis.extensions.v1beta1.ScaleStatus: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.ScaleStatus" description: Deprecated. Please use io.k8s.api.extensions.v1beta1.ScaleStatus instead. io.k8s.kubernetes.pkg.apis.extensions.v1beta1.SupplementalGroupsStrategyOptions: $ref: "#/definitions/io.k8s.api.extensions.v1beta1.SupplementalGroupsStrategyOptions" description: Deprecated. Please use io.k8s.api.extensions.v1beta1.SupplementalGroupsStrategyOptions instead. io.k8s.kubernetes.pkg.apis.networking.v1.NetworkPolicy: $ref: "#/definitions/io.k8s.api.networking.v1.NetworkPolicy" description: Deprecated. Please use io.k8s.api.networking.v1.NetworkPolicy instead. io.k8s.kubernetes.pkg.apis.networking.v1.NetworkPolicyIngressRule: $ref: "#/definitions/io.k8s.api.networking.v1.NetworkPolicyIngressRule" description: Deprecated. Please use io.k8s.api.networking.v1.NetworkPolicyIngressRule instead. io.k8s.kubernetes.pkg.apis.networking.v1.NetworkPolicyList: $ref: "#/definitions/io.k8s.api.networking.v1.NetworkPolicyList" description: Deprecated. Please use io.k8s.api.networking.v1.NetworkPolicyList instead. io.k8s.kubernetes.pkg.apis.networking.v1.NetworkPolicyPeer: $ref: "#/definitions/io.k8s.api.networking.v1.NetworkPolicyPeer" description: Deprecated. Please use io.k8s.api.networking.v1.NetworkPolicyPeer instead. io.k8s.kubernetes.pkg.apis.networking.v1.NetworkPolicyPort: $ref: "#/definitions/io.k8s.api.networking.v1.NetworkPolicyPort" description: Deprecated. Please use io.k8s.api.networking.v1.NetworkPolicyPort instead. io.k8s.kubernetes.pkg.apis.networking.v1.NetworkPolicySpec: $ref: "#/definitions/io.k8s.api.networking.v1.NetworkPolicySpec" description: Deprecated. Please use io.k8s.api.networking.v1.NetworkPolicySpec instead. io.k8s.kubernetes.pkg.apis.policy.v1beta1.Eviction: $ref: "#/definitions/io.k8s.api.policy.v1beta1.Eviction" description: Deprecated. Please use io.k8s.api.policy.v1beta1.Eviction instead. io.k8s.kubernetes.pkg.apis.policy.v1beta1.PodDisruptionBudget: $ref: "#/definitions/io.k8s.api.policy.v1beta1.PodDisruptionBudget" description: Deprecated. Please use io.k8s.api.policy.v1beta1.PodDisruptionBudget instead. io.k8s.kubernetes.pkg.apis.policy.v1beta1.PodDisruptionBudgetList: $ref: "#/definitions/io.k8s.api.policy.v1beta1.PodDisruptionBudgetList" description: Deprecated. Please use io.k8s.api.policy.v1beta1.PodDisruptionBudgetList instead. io.k8s.kubernetes.pkg.apis.policy.v1beta1.PodDisruptionBudgetSpec: $ref: "#/definitions/io.k8s.api.policy.v1beta1.PodDisruptionBudgetSpec" description: Deprecated. Please use io.k8s.api.policy.v1beta1.PodDisruptionBudgetSpec instead. io.k8s.kubernetes.pkg.apis.policy.v1beta1.PodDisruptionBudgetStatus: $ref: "#/definitions/io.k8s.api.policy.v1beta1.PodDisruptionBudgetStatus" description: Deprecated. Please use io.k8s.api.policy.v1beta1.PodDisruptionBudgetStatus instead. io.k8s.kubernetes.pkg.apis.rbac.v1alpha1.ClusterRole: $ref: "#/definitions/io.k8s.api.rbac.v1alpha1.ClusterRole" description: Deprecated. Please use io.k8s.api.rbac.v1alpha1.ClusterRole instead. io.k8s.kubernetes.pkg.apis.rbac.v1alpha1.ClusterRoleBinding: $ref: "#/definitions/io.k8s.api.rbac.v1alpha1.ClusterRoleBinding" description: Deprecated. Please use io.k8s.api.rbac.v1alpha1.ClusterRoleBinding instead. io.k8s.kubernetes.pkg.apis.rbac.v1alpha1.ClusterRoleBindingList: $ref: "#/definitions/io.k8s.api.rbac.v1alpha1.ClusterRoleBindingList" description: Deprecated. Please use io.k8s.api.rbac.v1alpha1.ClusterRoleBindingList instead. io.k8s.kubernetes.pkg.apis.rbac.v1alpha1.ClusterRoleList: $ref: "#/definitions/io.k8s.api.rbac.v1alpha1.ClusterRoleList" description: Deprecated. Please use io.k8s.api.rbac.v1alpha1.ClusterRoleList instead. io.k8s.kubernetes.pkg.apis.rbac.v1alpha1.PolicyRule: $ref: "#/definitions/io.k8s.api.rbac.v1alpha1.PolicyRule" description: Deprecated. Please use io.k8s.api.rbac.v1alpha1.PolicyRule instead. io.k8s.kubernetes.pkg.apis.rbac.v1alpha1.Role: $ref: "#/definitions/io.k8s.api.rbac.v1alpha1.Role" description: Deprecated. Please use io.k8s.api.rbac.v1alpha1.Role instead. io.k8s.kubernetes.pkg.apis.rbac.v1alpha1.RoleBinding: $ref: "#/definitions/io.k8s.api.rbac.v1alpha1.RoleBinding" description: Deprecated. Please use io.k8s.api.rbac.v1alpha1.RoleBinding instead. io.k8s.kubernetes.pkg.apis.rbac.v1alpha1.RoleBindingList: $ref: "#/definitions/io.k8s.api.rbac.v1alpha1.RoleBindingList" description: Deprecated. Please use io.k8s.api.rbac.v1alpha1.RoleBindingList instead. io.k8s.kubernetes.pkg.apis.rbac.v1alpha1.RoleList: $ref: "#/definitions/io.k8s.api.rbac.v1alpha1.RoleList" description: Deprecated. Please use io.k8s.api.rbac.v1alpha1.RoleList instead. io.k8s.kubernetes.pkg.apis.rbac.v1alpha1.RoleRef: $ref: "#/definitions/io.k8s.api.rbac.v1alpha1.RoleRef" description: Deprecated. Please use io.k8s.api.rbac.v1alpha1.RoleRef instead. io.k8s.kubernetes.pkg.apis.rbac.v1alpha1.Subject: $ref: "#/definitions/io.k8s.api.rbac.v1alpha1.Subject" description: Deprecated. Please use io.k8s.api.rbac.v1alpha1.Subject instead. io.k8s.kubernetes.pkg.apis.rbac.v1beta1.ClusterRole: $ref: "#/definitions/io.k8s.api.rbac.v1beta1.ClusterRole" description: Deprecated. Please use io.k8s.api.rbac.v1beta1.ClusterRole instead. io.k8s.kubernetes.pkg.apis.rbac.v1beta1.ClusterRoleBinding: $ref: "#/definitions/io.k8s.api.rbac.v1beta1.ClusterRoleBinding" description: Deprecated. Please use io.k8s.api.rbac.v1beta1.ClusterRoleBinding instead. io.k8s.kubernetes.pkg.apis.rbac.v1beta1.ClusterRoleBindingList: $ref: "#/definitions/io.k8s.api.rbac.v1beta1.ClusterRoleBindingList" description: Deprecated. Please use io.k8s.api.rbac.v1beta1.ClusterRoleBindingList instead. io.k8s.kubernetes.pkg.apis.rbac.v1beta1.ClusterRoleList: $ref: "#/definitions/io.k8s.api.rbac.v1beta1.ClusterRoleList" description: Deprecated. Please use io.k8s.api.rbac.v1beta1.ClusterRoleList instead. io.k8s.kubernetes.pkg.apis.rbac.v1beta1.PolicyRule: $ref: "#/definitions/io.k8s.api.rbac.v1beta1.PolicyRule" description: Deprecated. Please use io.k8s.api.rbac.v1beta1.PolicyRule instead. io.k8s.kubernetes.pkg.apis.rbac.v1beta1.Role: $ref: "#/definitions/io.k8s.api.rbac.v1beta1.Role" description: Deprecated. Please use io.k8s.api.rbac.v1beta1.Role instead. io.k8s.kubernetes.pkg.apis.rbac.v1beta1.RoleBinding: $ref: "#/definitions/io.k8s.api.rbac.v1beta1.RoleBinding" description: Deprecated. Please use io.k8s.api.rbac.v1beta1.RoleBinding instead. io.k8s.kubernetes.pkg.apis.rbac.v1beta1.RoleBindingList: $ref: "#/definitions/io.k8s.api.rbac.v1beta1.RoleBindingList" description: Deprecated. Please use io.k8s.api.rbac.v1beta1.RoleBindingList instead. io.k8s.kubernetes.pkg.apis.rbac.v1beta1.RoleList: $ref: "#/definitions/io.k8s.api.rbac.v1beta1.RoleList" description: Deprecated. Please use io.k8s.api.rbac.v1beta1.RoleList instead. io.k8s.kubernetes.pkg.apis.rbac.v1beta1.RoleRef: $ref: "#/definitions/io.k8s.api.rbac.v1beta1.RoleRef" description: Deprecated. Please use io.k8s.api.rbac.v1beta1.RoleRef instead. io.k8s.kubernetes.pkg.apis.rbac.v1beta1.Subject: $ref: "#/definitions/io.k8s.api.rbac.v1beta1.Subject" description: Deprecated. Please use io.k8s.api.rbac.v1beta1.Subject instead. io.k8s.kubernetes.pkg.apis.settings.v1alpha1.PodPreset: $ref: "#/definitions/io.k8s.api.settings.v1alpha1.PodPreset" description: Deprecated. Please use io.k8s.api.settings.v1alpha1.PodPreset instead. io.k8s.kubernetes.pkg.apis.settings.v1alpha1.PodPresetList: $ref: "#/definitions/io.k8s.api.settings.v1alpha1.PodPresetList" description: Deprecated. Please use io.k8s.api.settings.v1alpha1.PodPresetList instead. io.k8s.kubernetes.pkg.apis.settings.v1alpha1.PodPresetSpec: $ref: "#/definitions/io.k8s.api.settings.v1alpha1.PodPresetSpec" description: Deprecated. Please use io.k8s.api.settings.v1alpha1.PodPresetSpec instead. io.k8s.kubernetes.pkg.apis.storage.v1.StorageClass: $ref: "#/definitions/io.k8s.api.storage.v1.StorageClass" description: Deprecated. Please use io.k8s.api.storage.v1.StorageClass instead. io.k8s.kubernetes.pkg.apis.storage.v1.StorageClassList: $ref: "#/definitions/io.k8s.api.storage.v1.StorageClassList" description: Deprecated. Please use io.k8s.api.storage.v1.StorageClassList instead. io.k8s.kubernetes.pkg.apis.storage.v1beta1.StorageClass: $ref: "#/definitions/io.k8s.api.storage.v1beta1.StorageClass" description: Deprecated. Please use io.k8s.api.storage.v1beta1.StorageClass instead. io.k8s.kubernetes.pkg.apis.storage.v1beta1.StorageClassList: $ref: "#/definitions/io.k8s.api.storage.v1beta1.StorageClassList" description: Deprecated. Please use io.k8s.api.storage.v1beta1.StorageClassList instead.