Interface CoreV1Api


@Generated("io.micronaut.openapi.generator.JavaMicronautClientCodegen") @Client("kubernetes-client") public interface CoreV1Api
  • Method Details

    • connectDeleteNamespacedPodProxy

      @Delete("/api/v1/namespaces/{namespace}/pods/{name}/proxy") String connectDeleteNamespacedPodProxy(@PathVariable("name") @NotNull @NotNull String name, @PathVariable("namespace") @NotNull @NotNull String namespace, @QueryValue("path") @Nullable @Nullable String path)
      connect DELETE requests to proxy of Pod
      Parameters:
      name - name of the PodProxyOptions (required)
      namespace - object name and auth scope, such as for teams and projects (required)
      path - Path is the URL path to use for the current proxy request to pod. (optional)
      Returns:
      OK (status code 200) or Unauthorized (status code 401)
    • connectDeleteNamespacedPodProxyWithPath

      @Delete("/api/v1/namespaces/{namespace}/pods/{name}/proxy/{path}") String connectDeleteNamespacedPodProxyWithPath(@PathVariable("name") @NotNull @NotNull String name, @PathVariable("namespace") @NotNull @NotNull String namespace, @PathVariable("path") @NotNull @NotNull String path, @QueryValue("path") @Nullable @Nullable String path2)
      connect DELETE requests to proxy of Pod
      Parameters:
      name - name of the PodProxyOptions (required)
      namespace - object name and auth scope, such as for teams and projects (required)
      path - path to the resource (required)
      path2 - Path is the URL path to use for the current proxy request to pod. (optional)
      Returns:
      OK (status code 200) or Unauthorized (status code 401)
    • connectDeleteNamespacedServiceProxy

      @Delete("/api/v1/namespaces/{namespace}/services/{name}/proxy") String connectDeleteNamespacedServiceProxy(@PathVariable("name") @NotNull @NotNull String name, @PathVariable("namespace") @NotNull @NotNull String namespace, @QueryValue("path") @Nullable @Nullable String path)
      connect DELETE requests to proxy of Service
      Parameters:
      name - name of the ServiceProxyOptions (required)
      namespace - object name and auth scope, such as for teams and projects (required)
      path - 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. (optional)
      Returns:
      OK (status code 200) or Unauthorized (status code 401)
    • connectDeleteNamespacedServiceProxyWithPath

      @Delete("/api/v1/namespaces/{namespace}/services/{name}/proxy/{path}") String connectDeleteNamespacedServiceProxyWithPath(@PathVariable("name") @NotNull @NotNull String name, @PathVariable("namespace") @NotNull @NotNull String namespace, @PathVariable("path") @NotNull @NotNull String path, @QueryValue("path") @Nullable @Nullable String path2)
      connect DELETE requests to proxy of Service
      Parameters:
      name - name of the ServiceProxyOptions (required)
      namespace - object name and auth scope, such as for teams and projects (required)
      path - path to the resource (required)
      path2 - 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. (optional)
      Returns:
      OK (status code 200) or Unauthorized (status code 401)
    • connectDeleteNodeProxy

      @Delete("/api/v1/nodes/{name}/proxy") String connectDeleteNodeProxy(@PathVariable("name") @NotNull @NotNull String name, @QueryValue("path") @Nullable @Nullable String path)
      connect DELETE requests to proxy of Node
      Parameters:
      name - name of the NodeProxyOptions (required)
      path - Path is the URL path to use for the current proxy request to node. (optional)
      Returns:
      OK (status code 200) or Unauthorized (status code 401)
    • connectDeleteNodeProxyWithPath

      @Delete("/api/v1/nodes/{name}/proxy/{path}") String connectDeleteNodeProxyWithPath(@PathVariable("name") @NotNull @NotNull String name, @PathVariable("path") @NotNull @NotNull String path, @QueryValue("path") @Nullable @Nullable String path2)
      connect DELETE requests to proxy of Node
      Parameters:
      name - name of the NodeProxyOptions (required)
      path - path to the resource (required)
      path2 - Path is the URL path to use for the current proxy request to node. (optional)
      Returns:
      OK (status code 200) or Unauthorized (status code 401)
    • connectGetNamespacedPodAttach

      @Get("/api/v1/namespaces/{namespace}/pods/{name}/attach") String connectGetNamespacedPodAttach(@PathVariable("name") @NotNull @NotNull String name, @PathVariable("namespace") @NotNull @NotNull String namespace, @QueryValue("container") @Nullable @Nullable String container, @QueryValue("stderr") @Nullable @Nullable Boolean stderr, @QueryValue("stdin") @Nullable @Nullable Boolean stdin, @QueryValue("stdout") @Nullable @Nullable Boolean stdout, @QueryValue("tty") @Nullable @Nullable Boolean tty)
      connect GET requests to attach of Pod
      Parameters:
      name - name of the PodAttachOptions (required)
      namespace - object name and auth scope, such as for teams and projects (required)
      container - The container in which to execute the command. Defaults to only container if there is only one container in the pod. (optional)
      stderr - Stderr if true indicates that stderr is to be redirected for the attach call. Defaults to true. (optional)
      stdin - Stdin if true, redirects the standard input stream of the pod for this call. Defaults to false. (optional)
      stdout - Stdout if true indicates that stdout is to be redirected for the attach call. Defaults to true. (optional)
      tty - 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. (optional)
      Returns:
      OK (status code 200) or Unauthorized (status code 401)
    • connectGetNamespacedPodExec

      @Get("/api/v1/namespaces/{namespace}/pods/{name}/exec") String connectGetNamespacedPodExec(@PathVariable("name") @NotNull @NotNull String name, @PathVariable("namespace") @NotNull @NotNull String namespace, @QueryValue("command") @Nullable @Nullable String command, @QueryValue("container") @Nullable @Nullable String container, @QueryValue("stderr") @Nullable @Nullable Boolean stderr, @QueryValue("stdin") @Nullable @Nullable Boolean stdin, @QueryValue("stdout") @Nullable @Nullable Boolean stdout, @QueryValue("tty") @Nullable @Nullable Boolean tty)
      connect GET requests to exec of Pod
      Parameters:
      name - name of the PodExecOptions (required)
      namespace - object name and auth scope, such as for teams and projects (required)
      command - Command is the remote command to execute. argv array. Not executed within a shell. (optional)
      container - Container in which to execute the command. Defaults to only container if there is only one container in the pod. (optional)
      stderr - Redirect the standard error stream of the pod for this call. (optional)
      stdin - Redirect the standard input stream of the pod for this call. Defaults to false. (optional)
      stdout - Redirect the standard output stream of the pod for this call. (optional)
      tty - TTY if true indicates that a tty will be allocated for the exec call. Defaults to false. (optional)
      Returns:
      OK (status code 200) or Unauthorized (status code 401)
    • connectGetNamespacedPodPortforward

      @Get("/api/v1/namespaces/{namespace}/pods/{name}/portforward") String connectGetNamespacedPodPortforward(@PathVariable("name") @NotNull @NotNull String name, @PathVariable("namespace") @NotNull @NotNull String namespace, @QueryValue("ports") @Nullable @Nullable Integer ports)
      connect GET requests to portforward of Pod
      Parameters:
      name - name of the PodPortForwardOptions (required)
      namespace - object name and auth scope, such as for teams and projects (required)
      ports - List of ports to forward Required when using WebSockets (optional)
      Returns:
      OK (status code 200) or Unauthorized (status code 401)
    • connectGetNamespacedPodProxy

      @Get("/api/v1/namespaces/{namespace}/pods/{name}/proxy") String connectGetNamespacedPodProxy(@PathVariable("name") @NotNull @NotNull String name, @PathVariable("namespace") @NotNull @NotNull String namespace, @QueryValue("path") @Nullable @Nullable String path)
      connect GET requests to proxy of Pod
      Parameters:
      name - name of the PodProxyOptions (required)
      namespace - object name and auth scope, such as for teams and projects (required)
      path - Path is the URL path to use for the current proxy request to pod. (optional)
      Returns:
      OK (status code 200) or Unauthorized (status code 401)
    • connectGetNamespacedPodProxyWithPath

      @Get("/api/v1/namespaces/{namespace}/pods/{name}/proxy/{path}") String connectGetNamespacedPodProxyWithPath(@PathVariable("name") @NotNull @NotNull String name, @PathVariable("namespace") @NotNull @NotNull String namespace, @PathVariable("path") @NotNull @NotNull String path, @QueryValue("path") @Nullable @Nullable String path2)
      connect GET requests to proxy of Pod
      Parameters:
      name - name of the PodProxyOptions (required)
      namespace - object name and auth scope, such as for teams and projects (required)
      path - path to the resource (required)
      path2 - Path is the URL path to use for the current proxy request to pod. (optional)
      Returns:
      OK (status code 200) or Unauthorized (status code 401)
    • connectGetNamespacedServiceProxy

      @Get("/api/v1/namespaces/{namespace}/services/{name}/proxy") String connectGetNamespacedServiceProxy(@PathVariable("name") @NotNull @NotNull String name, @PathVariable("namespace") @NotNull @NotNull String namespace, @QueryValue("path") @Nullable @Nullable String path)
      connect GET requests to proxy of Service
      Parameters:
      name - name of the ServiceProxyOptions (required)
      namespace - object name and auth scope, such as for teams and projects (required)
      path - 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. (optional)
      Returns:
      OK (status code 200) or Unauthorized (status code 401)
    • connectGetNamespacedServiceProxyWithPath

      @Get("/api/v1/namespaces/{namespace}/services/{name}/proxy/{path}") String connectGetNamespacedServiceProxyWithPath(@PathVariable("name") @NotNull @NotNull String name, @PathVariable("namespace") @NotNull @NotNull String namespace, @PathVariable("path") @NotNull @NotNull String path, @QueryValue("path") @Nullable @Nullable String path2)
      connect GET requests to proxy of Service
      Parameters:
      name - name of the ServiceProxyOptions (required)
      namespace - object name and auth scope, such as for teams and projects (required)
      path - path to the resource (required)
      path2 - 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. (optional)
      Returns:
      OK (status code 200) or Unauthorized (status code 401)
    • connectGetNodeProxy

      @Get("/api/v1/nodes/{name}/proxy") String connectGetNodeProxy(@PathVariable("name") @NotNull @NotNull String name, @QueryValue("path") @Nullable @Nullable String path)
      connect GET requests to proxy of Node
      Parameters:
      name - name of the NodeProxyOptions (required)
      path - Path is the URL path to use for the current proxy request to node. (optional)
      Returns:
      OK (status code 200) or Unauthorized (status code 401)
    • connectGetNodeProxyWithPath

      @Get("/api/v1/nodes/{name}/proxy/{path}") String connectGetNodeProxyWithPath(@PathVariable("name") @NotNull @NotNull String name, @PathVariable("path") @NotNull @NotNull String path, @QueryValue("path") @Nullable @Nullable String path2)
      connect GET requests to proxy of Node
      Parameters:
      name - name of the NodeProxyOptions (required)
      path - path to the resource (required)
      path2 - Path is the URL path to use for the current proxy request to node. (optional)
      Returns:
      OK (status code 200) or Unauthorized (status code 401)
    • connectHeadNamespacedPodProxy

      @Head("/api/v1/namespaces/{namespace}/pods/{name}/proxy") String connectHeadNamespacedPodProxy(@PathVariable("name") @NotNull @NotNull String name, @PathVariable("namespace") @NotNull @NotNull String namespace, @QueryValue("path") @Nullable @Nullable String path)
      connect HEAD requests to proxy of Pod
      Parameters:
      name - name of the PodProxyOptions (required)
      namespace - object name and auth scope, such as for teams and projects (required)
      path - Path is the URL path to use for the current proxy request to pod. (optional)
      Returns:
      OK (status code 200) or Unauthorized (status code 401)
    • connectHeadNamespacedPodProxyWithPath

      @Head("/api/v1/namespaces/{namespace}/pods/{name}/proxy/{path}") String connectHeadNamespacedPodProxyWithPath(@PathVariable("name") @NotNull @NotNull String name, @PathVariable("namespace") @NotNull @NotNull String namespace, @PathVariable("path") @NotNull @NotNull String path, @QueryValue("path") @Nullable @Nullable String path2)
      connect HEAD requests to proxy of Pod
      Parameters:
      name - name of the PodProxyOptions (required)
      namespace - object name and auth scope, such as for teams and projects (required)
      path - path to the resource (required)
      path2 - Path is the URL path to use for the current proxy request to pod. (optional)
      Returns:
      OK (status code 200) or Unauthorized (status code 401)
    • connectHeadNamespacedServiceProxy

      @Head("/api/v1/namespaces/{namespace}/services/{name}/proxy") String connectHeadNamespacedServiceProxy(@PathVariable("name") @NotNull @NotNull String name, @PathVariable("namespace") @NotNull @NotNull String namespace, @QueryValue("path") @Nullable @Nullable String path)
      connect HEAD requests to proxy of Service
      Parameters:
      name - name of the ServiceProxyOptions (required)
      namespace - object name and auth scope, such as for teams and projects (required)
      path - 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. (optional)
      Returns:
      OK (status code 200) or Unauthorized (status code 401)
    • connectHeadNamespacedServiceProxyWithPath

      @Head("/api/v1/namespaces/{namespace}/services/{name}/proxy/{path}") String connectHeadNamespacedServiceProxyWithPath(@PathVariable("name") @NotNull @NotNull String name, @PathVariable("namespace") @NotNull @NotNull String namespace, @PathVariable("path") @NotNull @NotNull String path, @QueryValue("path") @Nullable @Nullable String path2)
      connect HEAD requests to proxy of Service
      Parameters:
      name - name of the ServiceProxyOptions (required)
      namespace - object name and auth scope, such as for teams and projects (required)
      path - path to the resource (required)
      path2 - 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. (optional)
      Returns:
      OK (status code 200) or Unauthorized (status code 401)
    • connectHeadNodeProxy

      @Head("/api/v1/nodes/{name}/proxy") String connectHeadNodeProxy(@PathVariable("name") @NotNull @NotNull String name, @QueryValue("path") @Nullable @Nullable String path)
      connect HEAD requests to proxy of Node
      Parameters:
      name - name of the NodeProxyOptions (required)
      path - Path is the URL path to use for the current proxy request to node. (optional)
      Returns:
      OK (status code 200) or Unauthorized (status code 401)
    • connectHeadNodeProxyWithPath

      @Head("/api/v1/nodes/{name}/proxy/{path}") String connectHeadNodeProxyWithPath(@PathVariable("name") @NotNull @NotNull String name, @PathVariable("path") @NotNull @NotNull String path, @QueryValue("path") @Nullable @Nullable String path2)
      connect HEAD requests to proxy of Node
      Parameters:
      name - name of the NodeProxyOptions (required)
      path - path to the resource (required)
      path2 - Path is the URL path to use for the current proxy request to node. (optional)
      Returns:
      OK (status code 200) or Unauthorized (status code 401)
    • connectOptionsNamespacedPodProxy

      @Options("/api/v1/namespaces/{namespace}/pods/{name}/proxy") String connectOptionsNamespacedPodProxy(@PathVariable("name") @NotNull @NotNull String name, @PathVariable("namespace") @NotNull @NotNull String namespace, @QueryValue("path") @Nullable @Nullable String path)
      connect OPTIONS requests to proxy of Pod
      Parameters:
      name - name of the PodProxyOptions (required)
      namespace - object name and auth scope, such as for teams and projects (required)
      path - Path is the URL path to use for the current proxy request to pod. (optional)
      Returns:
      OK (status code 200) or Unauthorized (status code 401)
    • connectOptionsNamespacedPodProxyWithPath

      @Options("/api/v1/namespaces/{namespace}/pods/{name}/proxy/{path}") String connectOptionsNamespacedPodProxyWithPath(@PathVariable("name") @NotNull @NotNull String name, @PathVariable("namespace") @NotNull @NotNull String namespace, @PathVariable("path") @NotNull @NotNull String path, @QueryValue("path") @Nullable @Nullable String path2)
      connect OPTIONS requests to proxy of Pod
      Parameters:
      name - name of the PodProxyOptions (required)
      namespace - object name and auth scope, such as for teams and projects (required)
      path - path to the resource (required)
      path2 - Path is the URL path to use for the current proxy request to pod. (optional)
      Returns:
      OK (status code 200) or Unauthorized (status code 401)
    • connectOptionsNamespacedServiceProxy

      @Options("/api/v1/namespaces/{namespace}/services/{name}/proxy") String connectOptionsNamespacedServiceProxy(@PathVariable("name") @NotNull @NotNull String name, @PathVariable("namespace") @NotNull @NotNull String namespace, @QueryValue("path") @Nullable @Nullable String path)
      connect OPTIONS requests to proxy of Service
      Parameters:
      name - name of the ServiceProxyOptions (required)
      namespace - object name and auth scope, such as for teams and projects (required)
      path - 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. (optional)
      Returns:
      OK (status code 200) or Unauthorized (status code 401)
    • connectOptionsNamespacedServiceProxyWithPath

      @Options("/api/v1/namespaces/{namespace}/services/{name}/proxy/{path}") String connectOptionsNamespacedServiceProxyWithPath(@PathVariable("name") @NotNull @NotNull String name, @PathVariable("namespace") @NotNull @NotNull String namespace, @PathVariable("path") @NotNull @NotNull String path, @QueryValue("path") @Nullable @Nullable String path2)
      connect OPTIONS requests to proxy of Service
      Parameters:
      name - name of the ServiceProxyOptions (required)
      namespace - object name and auth scope, such as for teams and projects (required)
      path - path to the resource (required)
      path2 - 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. (optional)
      Returns:
      OK (status code 200) or Unauthorized (status code 401)
    • connectOptionsNodeProxy

      @Options("/api/v1/nodes/{name}/proxy") String connectOptionsNodeProxy(@PathVariable("name") @NotNull @NotNull String name, @QueryValue("path") @Nullable @Nullable String path)
      connect OPTIONS requests to proxy of Node
      Parameters:
      name - name of the NodeProxyOptions (required)
      path - Path is the URL path to use for the current proxy request to node. (optional)
      Returns:
      OK (status code 200) or Unauthorized (status code 401)
    • connectOptionsNodeProxyWithPath

      @Options("/api/v1/nodes/{name}/proxy/{path}") String connectOptionsNodeProxyWithPath(@PathVariable("name") @NotNull @NotNull String name, @PathVariable("path") @NotNull @NotNull String path, @QueryValue("path") @Nullable @Nullable String path2)
      connect OPTIONS requests to proxy of Node
      Parameters:
      name - name of the NodeProxyOptions (required)
      path - path to the resource (required)
      path2 - Path is the URL path to use for the current proxy request to node. (optional)
      Returns:
      OK (status code 200) or Unauthorized (status code 401)
    • connectPatchNamespacedPodProxy

      @Patch("/api/v1/namespaces/{namespace}/pods/{name}/proxy") String connectPatchNamespacedPodProxy(@PathVariable("name") @NotNull @NotNull String name, @PathVariable("namespace") @NotNull @NotNull String namespace, @QueryValue("path") @Nullable @Nullable String path)
      connect PATCH requests to proxy of Pod
      Parameters:
      name - name of the PodProxyOptions (required)
      namespace - object name and auth scope, such as for teams and projects (required)
      path - Path is the URL path to use for the current proxy request to pod. (optional)
      Returns:
      OK (status code 200) or Unauthorized (status code 401)
    • connectPatchNamespacedPodProxyWithPath

      @Patch("/api/v1/namespaces/{namespace}/pods/{name}/proxy/{path}") String connectPatchNamespacedPodProxyWithPath(@PathVariable("name") @NotNull @NotNull String name, @PathVariable("namespace") @NotNull @NotNull String namespace, @PathVariable("path") @NotNull @NotNull String path, @QueryValue("path") @Nullable @Nullable String path2)
      connect PATCH requests to proxy of Pod
      Parameters:
      name - name of the PodProxyOptions (required)
      namespace - object name and auth scope, such as for teams and projects (required)
      path - path to the resource (required)
      path2 - Path is the URL path to use for the current proxy request to pod. (optional)
      Returns:
      OK (status code 200) or Unauthorized (status code 401)
    • connectPatchNamespacedServiceProxy

      @Patch("/api/v1/namespaces/{namespace}/services/{name}/proxy") String connectPatchNamespacedServiceProxy(@PathVariable("name") @NotNull @NotNull String name, @PathVariable("namespace") @NotNull @NotNull String namespace, @QueryValue("path") @Nullable @Nullable String path)
      connect PATCH requests to proxy of Service
      Parameters:
      name - name of the ServiceProxyOptions (required)
      namespace - object name and auth scope, such as for teams and projects (required)
      path - 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. (optional)
      Returns:
      OK (status code 200) or Unauthorized (status code 401)
    • connectPatchNamespacedServiceProxyWithPath

      @Patch("/api/v1/namespaces/{namespace}/services/{name}/proxy/{path}") String connectPatchNamespacedServiceProxyWithPath(@PathVariable("name") @NotNull @NotNull String name, @PathVariable("namespace") @NotNull @NotNull String namespace, @PathVariable("path") @NotNull @NotNull String path, @QueryValue("path") @Nullable @Nullable String path2)
      connect PATCH requests to proxy of Service
      Parameters:
      name - name of the ServiceProxyOptions (required)
      namespace - object name and auth scope, such as for teams and projects (required)
      path - path to the resource (required)
      path2 - 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. (optional)
      Returns:
      OK (status code 200) or Unauthorized (status code 401)
    • connectPatchNodeProxy

      @Patch("/api/v1/nodes/{name}/proxy") String connectPatchNodeProxy(@PathVariable("name") @NotNull @NotNull String name, @QueryValue("path") @Nullable @Nullable String path)
      connect PATCH requests to proxy of Node
      Parameters:
      name - name of the NodeProxyOptions (required)
      path - Path is the URL path to use for the current proxy request to node. (optional)
      Returns:
      OK (status code 200) or Unauthorized (status code 401)
    • connectPatchNodeProxyWithPath

      @Patch("/api/v1/nodes/{name}/proxy/{path}") String connectPatchNodeProxyWithPath(@PathVariable("name") @NotNull @NotNull String name, @PathVariable("path") @NotNull @NotNull String path, @QueryValue("path") @Nullable @Nullable String path2)
      connect PATCH requests to proxy of Node
      Parameters:
      name - name of the NodeProxyOptions (required)
      path - path to the resource (required)
      path2 - Path is the URL path to use for the current proxy request to node. (optional)
      Returns:
      OK (status code 200) or Unauthorized (status code 401)
    • connectPostNamespacedPodAttach

      @Post("/api/v1/namespaces/{namespace}/pods/{name}/attach") String connectPostNamespacedPodAttach(@PathVariable("name") @NotNull @NotNull String name, @PathVariable("namespace") @NotNull @NotNull String namespace, @QueryValue("container") @Nullable @Nullable String container, @QueryValue("stderr") @Nullable @Nullable Boolean stderr, @QueryValue("stdin") @Nullable @Nullable Boolean stdin, @QueryValue("stdout") @Nullable @Nullable Boolean stdout, @QueryValue("tty") @Nullable @Nullable Boolean tty)
      connect POST requests to attach of Pod
      Parameters:
      name - name of the PodAttachOptions (required)
      namespace - object name and auth scope, such as for teams and projects (required)
      container - The container in which to execute the command. Defaults to only container if there is only one container in the pod. (optional)
      stderr - Stderr if true indicates that stderr is to be redirected for the attach call. Defaults to true. (optional)
      stdin - Stdin if true, redirects the standard input stream of the pod for this call. Defaults to false. (optional)
      stdout - Stdout if true indicates that stdout is to be redirected for the attach call. Defaults to true. (optional)
      tty - 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. (optional)
      Returns:
      OK (status code 200) or Unauthorized (status code 401)
    • connectPostNamespacedPodExec

      @Post("/api/v1/namespaces/{namespace}/pods/{name}/exec") String connectPostNamespacedPodExec(@PathVariable("name") @NotNull @NotNull String name, @PathVariable("namespace") @NotNull @NotNull String namespace, @QueryValue("command") @Nullable @Nullable String command, @QueryValue("container") @Nullable @Nullable String container, @QueryValue("stderr") @Nullable @Nullable Boolean stderr, @QueryValue("stdin") @Nullable @Nullable Boolean stdin, @QueryValue("stdout") @Nullable @Nullable Boolean stdout, @QueryValue("tty") @Nullable @Nullable Boolean tty)
      connect POST requests to exec of Pod
      Parameters:
      name - name of the PodExecOptions (required)
      namespace - object name and auth scope, such as for teams and projects (required)
      command - Command is the remote command to execute. argv array. Not executed within a shell. (optional)
      container - Container in which to execute the command. Defaults to only container if there is only one container in the pod. (optional)
      stderr - Redirect the standard error stream of the pod for this call. (optional)
      stdin - Redirect the standard input stream of the pod for this call. Defaults to false. (optional)
      stdout - Redirect the standard output stream of the pod for this call. (optional)
      tty - TTY if true indicates that a tty will be allocated for the exec call. Defaults to false. (optional)
      Returns:
      OK (status code 200) or Unauthorized (status code 401)
    • connectPostNamespacedPodPortforward

      @Post("/api/v1/namespaces/{namespace}/pods/{name}/portforward") String connectPostNamespacedPodPortforward(@PathVariable("name") @NotNull @NotNull String name, @PathVariable("namespace") @NotNull @NotNull String namespace, @QueryValue("ports") @Nullable @Nullable Integer ports)
      connect POST requests to portforward of Pod
      Parameters:
      name - name of the PodPortForwardOptions (required)
      namespace - object name and auth scope, such as for teams and projects (required)
      ports - List of ports to forward Required when using WebSockets (optional)
      Returns:
      OK (status code 200) or Unauthorized (status code 401)
    • connectPostNamespacedPodProxy

      @Post("/api/v1/namespaces/{namespace}/pods/{name}/proxy") String connectPostNamespacedPodProxy(@PathVariable("name") @NotNull @NotNull String name, @PathVariable("namespace") @NotNull @NotNull String namespace, @QueryValue("path") @Nullable @Nullable String path)
      connect POST requests to proxy of Pod
      Parameters:
      name - name of the PodProxyOptions (required)
      namespace - object name and auth scope, such as for teams and projects (required)
      path - Path is the URL path to use for the current proxy request to pod. (optional)
      Returns:
      OK (status code 200) or Unauthorized (status code 401)
    • connectPostNamespacedPodProxyWithPath

      @Post("/api/v1/namespaces/{namespace}/pods/{name}/proxy/{path}") String connectPostNamespacedPodProxyWithPath(@PathVariable("name") @NotNull @NotNull String name, @PathVariable("namespace") @NotNull @NotNull String namespace, @PathVariable("path") @NotNull @NotNull String path, @QueryValue("path") @Nullable @Nullable String path2)
      connect POST requests to proxy of Pod
      Parameters:
      name - name of the PodProxyOptions (required)
      namespace - object name and auth scope, such as for teams and projects (required)
      path - path to the resource (required)
      path2 - Path is the URL path to use for the current proxy request to pod. (optional)
      Returns:
      OK (status code 200) or Unauthorized (status code 401)
    • connectPostNamespacedServiceProxy

      @Post("/api/v1/namespaces/{namespace}/services/{name}/proxy") String connectPostNamespacedServiceProxy(@PathVariable("name") @NotNull @NotNull String name, @PathVariable("namespace") @NotNull @NotNull String namespace, @QueryValue("path") @Nullable @Nullable String path)
      connect POST requests to proxy of Service
      Parameters:
      name - name of the ServiceProxyOptions (required)
      namespace - object name and auth scope, such as for teams and projects (required)
      path - 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. (optional)
      Returns:
      OK (status code 200) or Unauthorized (status code 401)
    • connectPostNamespacedServiceProxyWithPath

      @Post("/api/v1/namespaces/{namespace}/services/{name}/proxy/{path}") String connectPostNamespacedServiceProxyWithPath(@PathVariable("name") @NotNull @NotNull String name, @PathVariable("namespace") @NotNull @NotNull String namespace, @PathVariable("path") @NotNull @NotNull String path, @QueryValue("path") @Nullable @Nullable String path2)
      connect POST requests to proxy of Service
      Parameters:
      name - name of the ServiceProxyOptions (required)
      namespace - object name and auth scope, such as for teams and projects (required)
      path - path to the resource (required)
      path2 - 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. (optional)
      Returns:
      OK (status code 200) or Unauthorized (status code 401)
    • connectPostNodeProxy

      @Post("/api/v1/nodes/{name}/proxy") String connectPostNodeProxy(@PathVariable("name") @NotNull @NotNull String name, @QueryValue("path") @Nullable @Nullable String path)
      connect POST requests to proxy of Node
      Parameters:
      name - name of the NodeProxyOptions (required)
      path - Path is the URL path to use for the current proxy request to node. (optional)
      Returns:
      OK (status code 200) or Unauthorized (status code 401)
    • connectPostNodeProxyWithPath

      @Post("/api/v1/nodes/{name}/proxy/{path}") String connectPostNodeProxyWithPath(@PathVariable("name") @NotNull @NotNull String name, @PathVariable("path") @NotNull @NotNull String path, @QueryValue("path") @Nullable @Nullable String path2)
      connect POST requests to proxy of Node
      Parameters:
      name - name of the NodeProxyOptions (required)
      path - path to the resource (required)
      path2 - Path is the URL path to use for the current proxy request to node. (optional)
      Returns:
      OK (status code 200) or Unauthorized (status code 401)
    • connectPutNamespacedPodProxy

      @Put("/api/v1/namespaces/{namespace}/pods/{name}/proxy") String connectPutNamespacedPodProxy(@PathVariable("name") @NotNull @NotNull String name, @PathVariable("namespace") @NotNull @NotNull String namespace, @QueryValue("path") @Nullable @Nullable String path)
      connect PUT requests to proxy of Pod
      Parameters:
      name - name of the PodProxyOptions (required)
      namespace - object name and auth scope, such as for teams and projects (required)
      path - Path is the URL path to use for the current proxy request to pod. (optional)
      Returns:
      OK (status code 200) or Unauthorized (status code 401)
    • connectPutNamespacedPodProxyWithPath

      @Put("/api/v1/namespaces/{namespace}/pods/{name}/proxy/{path}") String connectPutNamespacedPodProxyWithPath(@PathVariable("name") @NotNull @NotNull String name, @PathVariable("namespace") @NotNull @NotNull String namespace, @PathVariable("path") @NotNull @NotNull String path, @QueryValue("path") @Nullable @Nullable String path2)
      connect PUT requests to proxy of Pod
      Parameters:
      name - name of the PodProxyOptions (required)
      namespace - object name and auth scope, such as for teams and projects (required)
      path - path to the resource (required)
      path2 - Path is the URL path to use for the current proxy request to pod. (optional)
      Returns:
      OK (status code 200) or Unauthorized (status code 401)
    • connectPutNamespacedServiceProxy

      @Put("/api/v1/namespaces/{namespace}/services/{name}/proxy") String connectPutNamespacedServiceProxy(@PathVariable("name") @NotNull @NotNull String name, @PathVariable("namespace") @NotNull @NotNull String namespace, @QueryValue("path") @Nullable @Nullable String path)
      connect PUT requests to proxy of Service
      Parameters:
      name - name of the ServiceProxyOptions (required)
      namespace - object name and auth scope, such as for teams and projects (required)
      path - 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. (optional)
      Returns:
      OK (status code 200) or Unauthorized (status code 401)
    • connectPutNamespacedServiceProxyWithPath

      @Put("/api/v1/namespaces/{namespace}/services/{name}/proxy/{path}") String connectPutNamespacedServiceProxyWithPath(@PathVariable("name") @NotNull @NotNull String name, @PathVariable("namespace") @NotNull @NotNull String namespace, @PathVariable("path") @NotNull @NotNull String path, @QueryValue("path") @Nullable @Nullable String path2)
      connect PUT requests to proxy of Service
      Parameters:
      name - name of the ServiceProxyOptions (required)
      namespace - object name and auth scope, such as for teams and projects (required)
      path - path to the resource (required)
      path2 - 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. (optional)
      Returns:
      OK (status code 200) or Unauthorized (status code 401)
    • connectPutNodeProxy

      @Put("/api/v1/nodes/{name}/proxy") String connectPutNodeProxy(@PathVariable("name") @NotNull @NotNull String name, @QueryValue("path") @Nullable @Nullable String path)
      connect PUT requests to proxy of Node
      Parameters:
      name - name of the NodeProxyOptions (required)
      path - Path is the URL path to use for the current proxy request to node. (optional)
      Returns:
      OK (status code 200) or Unauthorized (status code 401)
    • connectPutNodeProxyWithPath

      @Put("/api/v1/nodes/{name}/proxy/{path}") String connectPutNodeProxyWithPath(@PathVariable("name") @NotNull @NotNull String name, @PathVariable("path") @NotNull @NotNull String path, @QueryValue("path") @Nullable @Nullable String path2)
      connect PUT requests to proxy of Node
      Parameters:
      name - name of the NodeProxyOptions (required)
      path - path to the resource (required)
      path2 - Path is the URL path to use for the current proxy request to node. (optional)
      Returns:
      OK (status code 200) or Unauthorized (status code 401)
    • createNamespace

      @Post("/api/v1/namespaces") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf"}) V1Namespace createNamespace(@Body @NotNull @Valid @NotNull @Valid V1Namespace body, @QueryValue("pretty") @Nullable @Nullable String pretty, @QueryValue("dryRun") @Nullable @Nullable String dryRun, @QueryValue("fieldManager") @Nullable @Nullable String fieldManager, @QueryValue("fieldValidation") @Nullable @Nullable String fieldValidation)
      create a Namespace
      Parameters:
      body - (required)
      pretty - If 'true', then the output is pretty printed. (optional)
      dryRun - When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed (optional)
      fieldManager - fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. (optional)
      fieldValidation - fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)
      Returns:
      OK (status code 200) or Created (status code 201) or Accepted (status code 202) or Unauthorized (status code 401)
    • createNamespacedBinding

      @Post("/api/v1/namespaces/{namespace}/bindings") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf"}) V1Binding createNamespacedBinding(@PathVariable("namespace") @NotNull @NotNull String namespace, @Body @NotNull @Valid @NotNull @Valid V1Binding body, @QueryValue("dryRun") @Nullable @Nullable String dryRun, @QueryValue("fieldManager") @Nullable @Nullable String fieldManager, @QueryValue("fieldValidation") @Nullable @Nullable String fieldValidation, @QueryValue("pretty") @Nullable @Nullable String pretty)
      create a Binding
      Parameters:
      namespace - object name and auth scope, such as for teams and projects (required)
      body - (required)
      dryRun - When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed (optional)
      fieldManager - fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. (optional)
      fieldValidation - fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)
      pretty - If 'true', then the output is pretty printed. (optional)
      Returns:
      OK (status code 200) or Created (status code 201) or Accepted (status code 202) or Unauthorized (status code 401)
    • createNamespacedConfigMap

      @Post("/api/v1/namespaces/{namespace}/configmaps") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf"}) V1ConfigMap createNamespacedConfigMap(@PathVariable("namespace") @NotNull @NotNull String namespace, @Body @NotNull @Valid @NotNull @Valid V1ConfigMap body, @QueryValue("pretty") @Nullable @Nullable String pretty, @QueryValue("dryRun") @Nullable @Nullable String dryRun, @QueryValue("fieldManager") @Nullable @Nullable String fieldManager, @QueryValue("fieldValidation") @Nullable @Nullable String fieldValidation)
      create a ConfigMap
      Parameters:
      namespace - object name and auth scope, such as for teams and projects (required)
      body - (required)
      pretty - If 'true', then the output is pretty printed. (optional)
      dryRun - When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed (optional)
      fieldManager - fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. (optional)
      fieldValidation - fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)
      Returns:
      OK (status code 200) or Created (status code 201) or Accepted (status code 202) or Unauthorized (status code 401)
    • createNamespacedEndpoints

      @Post("/api/v1/namespaces/{namespace}/endpoints") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf"}) V1Endpoints createNamespacedEndpoints(@PathVariable("namespace") @NotNull @NotNull String namespace, @Body @NotNull @Valid @NotNull @Valid V1Endpoints body, @QueryValue("pretty") @Nullable @Nullable String pretty, @QueryValue("dryRun") @Nullable @Nullable String dryRun, @QueryValue("fieldManager") @Nullable @Nullable String fieldManager, @QueryValue("fieldValidation") @Nullable @Nullable String fieldValidation)
      create Endpoints
      Parameters:
      namespace - object name and auth scope, such as for teams and projects (required)
      body - (required)
      pretty - If 'true', then the output is pretty printed. (optional)
      dryRun - When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed (optional)
      fieldManager - fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. (optional)
      fieldValidation - fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)
      Returns:
      OK (status code 200) or Created (status code 201) or Accepted (status code 202) or Unauthorized (status code 401)
    • createNamespacedEvent

      @Post("/api/v1/namespaces/{namespace}/events") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf"}) CoreV1Event createNamespacedEvent(@PathVariable("namespace") @NotNull @NotNull String namespace, @Body @NotNull @Valid @NotNull @Valid CoreV1Event body, @QueryValue("pretty") @Nullable @Nullable String pretty, @QueryValue("dryRun") @Nullable @Nullable String dryRun, @QueryValue("fieldManager") @Nullable @Nullable String fieldManager, @QueryValue("fieldValidation") @Nullable @Nullable String fieldValidation)
      create an Event
      Parameters:
      namespace - object name and auth scope, such as for teams and projects (required)
      body - (required)
      pretty - If 'true', then the output is pretty printed. (optional)
      dryRun - When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed (optional)
      fieldManager - fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. (optional)
      fieldValidation - fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)
      Returns:
      OK (status code 200) or Created (status code 201) or Accepted (status code 202) or Unauthorized (status code 401)
    • createNamespacedLimitRange

      @Post("/api/v1/namespaces/{namespace}/limitranges") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf"}) V1LimitRange createNamespacedLimitRange(@PathVariable("namespace") @NotNull @NotNull String namespace, @Body @NotNull @Valid @NotNull @Valid V1LimitRange body, @QueryValue("pretty") @Nullable @Nullable String pretty, @QueryValue("dryRun") @Nullable @Nullable String dryRun, @QueryValue("fieldManager") @Nullable @Nullable String fieldManager, @QueryValue("fieldValidation") @Nullable @Nullable String fieldValidation)
      create a LimitRange
      Parameters:
      namespace - object name and auth scope, such as for teams and projects (required)
      body - (required)
      pretty - If 'true', then the output is pretty printed. (optional)
      dryRun - When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed (optional)
      fieldManager - fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. (optional)
      fieldValidation - fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)
      Returns:
      OK (status code 200) or Created (status code 201) or Accepted (status code 202) or Unauthorized (status code 401)
    • createNamespacedPersistentVolumeClaim

      @Post("/api/v1/namespaces/{namespace}/persistentvolumeclaims") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf"}) V1PersistentVolumeClaim createNamespacedPersistentVolumeClaim(@PathVariable("namespace") @NotNull @NotNull String namespace, @Body @NotNull @Valid @NotNull @Valid V1PersistentVolumeClaim body, @QueryValue("pretty") @Nullable @Nullable String pretty, @QueryValue("dryRun") @Nullable @Nullable String dryRun, @QueryValue("fieldManager") @Nullable @Nullable String fieldManager, @QueryValue("fieldValidation") @Nullable @Nullable String fieldValidation)
      create a PersistentVolumeClaim
      Parameters:
      namespace - object name and auth scope, such as for teams and projects (required)
      body - (required)
      pretty - If 'true', then the output is pretty printed. (optional)
      dryRun - When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed (optional)
      fieldManager - fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. (optional)
      fieldValidation - fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)
      Returns:
      OK (status code 200) or Created (status code 201) or Accepted (status code 202) or Unauthorized (status code 401)
    • createNamespacedPod

      @Post("/api/v1/namespaces/{namespace}/pods") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf"}) V1Pod createNamespacedPod(@PathVariable("namespace") @NotNull @NotNull String namespace, @Body @NotNull @Valid @NotNull @Valid V1Pod body, @QueryValue("pretty") @Nullable @Nullable String pretty, @QueryValue("dryRun") @Nullable @Nullable String dryRun, @QueryValue("fieldManager") @Nullable @Nullable String fieldManager, @QueryValue("fieldValidation") @Nullable @Nullable String fieldValidation)
      create a Pod
      Parameters:
      namespace - object name and auth scope, such as for teams and projects (required)
      body - (required)
      pretty - If 'true', then the output is pretty printed. (optional)
      dryRun - When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed (optional)
      fieldManager - fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. (optional)
      fieldValidation - fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)
      Returns:
      OK (status code 200) or Created (status code 201) or Accepted (status code 202) or Unauthorized (status code 401)
    • createNamespacedPodBinding

      @Post("/api/v1/namespaces/{namespace}/pods/{name}/binding") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf"}) V1Binding createNamespacedPodBinding(@PathVariable("name") @NotNull @NotNull String name, @PathVariable("namespace") @NotNull @NotNull String namespace, @Body @NotNull @Valid @NotNull @Valid V1Binding body, @QueryValue("dryRun") @Nullable @Nullable String dryRun, @QueryValue("fieldManager") @Nullable @Nullable String fieldManager, @QueryValue("fieldValidation") @Nullable @Nullable String fieldValidation, @QueryValue("pretty") @Nullable @Nullable String pretty)
      create binding of a Pod
      Parameters:
      name - name of the Binding (required)
      namespace - object name and auth scope, such as for teams and projects (required)
      body - (required)
      dryRun - When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed (optional)
      fieldManager - fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. (optional)
      fieldValidation - fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)
      pretty - If 'true', then the output is pretty printed. (optional)
      Returns:
      OK (status code 200) or Created (status code 201) or Accepted (status code 202) or Unauthorized (status code 401)
    • createNamespacedPodEviction

      @Post("/api/v1/namespaces/{namespace}/pods/{name}/eviction") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf"}) V1Eviction createNamespacedPodEviction(@PathVariable("name") @NotNull @NotNull String name, @PathVariable("namespace") @NotNull @NotNull String namespace, @Body @NotNull @Valid @NotNull @Valid V1Eviction body, @QueryValue("dryRun") @Nullable @Nullable String dryRun, @QueryValue("fieldManager") @Nullable @Nullable String fieldManager, @QueryValue("fieldValidation") @Nullable @Nullable String fieldValidation, @QueryValue("pretty") @Nullable @Nullable String pretty)
      create eviction of a Pod
      Parameters:
      name - name of the Eviction (required)
      namespace - object name and auth scope, such as for teams and projects (required)
      body - (required)
      dryRun - When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed (optional)
      fieldManager - fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. (optional)
      fieldValidation - fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)
      pretty - If 'true', then the output is pretty printed. (optional)
      Returns:
      OK (status code 200) or Created (status code 201) or Accepted (status code 202) or Unauthorized (status code 401)
    • createNamespacedPodTemplate

      @Post("/api/v1/namespaces/{namespace}/podtemplates") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf"}) V1PodTemplate createNamespacedPodTemplate(@PathVariable("namespace") @NotNull @NotNull String namespace, @Body @NotNull @Valid @NotNull @Valid V1PodTemplate body, @QueryValue("pretty") @Nullable @Nullable String pretty, @QueryValue("dryRun") @Nullable @Nullable String dryRun, @QueryValue("fieldManager") @Nullable @Nullable String fieldManager, @QueryValue("fieldValidation") @Nullable @Nullable String fieldValidation)
      create a PodTemplate
      Parameters:
      namespace - object name and auth scope, such as for teams and projects (required)
      body - (required)
      pretty - If 'true', then the output is pretty printed. (optional)
      dryRun - When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed (optional)
      fieldManager - fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. (optional)
      fieldValidation - fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)
      Returns:
      OK (status code 200) or Created (status code 201) or Accepted (status code 202) or Unauthorized (status code 401)
    • createNamespacedReplicationController

      @Post("/api/v1/namespaces/{namespace}/replicationcontrollers") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf"}) V1ReplicationController createNamespacedReplicationController(@PathVariable("namespace") @NotNull @NotNull String namespace, @Body @NotNull @Valid @NotNull @Valid V1ReplicationController body, @QueryValue("pretty") @Nullable @Nullable String pretty, @QueryValue("dryRun") @Nullable @Nullable String dryRun, @QueryValue("fieldManager") @Nullable @Nullable String fieldManager, @QueryValue("fieldValidation") @Nullable @Nullable String fieldValidation)
      create a ReplicationController
      Parameters:
      namespace - object name and auth scope, such as for teams and projects (required)
      body - (required)
      pretty - If 'true', then the output is pretty printed. (optional)
      dryRun - When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed (optional)
      fieldManager - fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. (optional)
      fieldValidation - fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)
      Returns:
      OK (status code 200) or Created (status code 201) or Accepted (status code 202) or Unauthorized (status code 401)
    • createNamespacedResourceQuota

      @Post("/api/v1/namespaces/{namespace}/resourcequotas") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf"}) V1ResourceQuota createNamespacedResourceQuota(@PathVariable("namespace") @NotNull @NotNull String namespace, @Body @NotNull @Valid @NotNull @Valid V1ResourceQuota body, @QueryValue("pretty") @Nullable @Nullable String pretty, @QueryValue("dryRun") @Nullable @Nullable String dryRun, @QueryValue("fieldManager") @Nullable @Nullable String fieldManager, @QueryValue("fieldValidation") @Nullable @Nullable String fieldValidation)
      create a ResourceQuota
      Parameters:
      namespace - object name and auth scope, such as for teams and projects (required)
      body - (required)
      pretty - If 'true', then the output is pretty printed. (optional)
      dryRun - When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed (optional)
      fieldManager - fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. (optional)
      fieldValidation - fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)
      Returns:
      OK (status code 200) or Created (status code 201) or Accepted (status code 202) or Unauthorized (status code 401)
    • createNamespacedSecret

      @Post("/api/v1/namespaces/{namespace}/secrets") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf"}) V1Secret createNamespacedSecret(@PathVariable("namespace") @NotNull @NotNull String namespace, @Body @NotNull @Valid @NotNull @Valid V1Secret body, @QueryValue("pretty") @Nullable @Nullable String pretty, @QueryValue("dryRun") @Nullable @Nullable String dryRun, @QueryValue("fieldManager") @Nullable @Nullable String fieldManager, @QueryValue("fieldValidation") @Nullable @Nullable String fieldValidation)
      create a Secret
      Parameters:
      namespace - object name and auth scope, such as for teams and projects (required)
      body - (required)
      pretty - If 'true', then the output is pretty printed. (optional)
      dryRun - When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed (optional)
      fieldManager - fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. (optional)
      fieldValidation - fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)
      Returns:
      OK (status code 200) or Created (status code 201) or Accepted (status code 202) or Unauthorized (status code 401)
    • createNamespacedService

      @Post("/api/v1/namespaces/{namespace}/services") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf"}) V1Service createNamespacedService(@PathVariable("namespace") @NotNull @NotNull String namespace, @Body @NotNull @Valid @NotNull @Valid V1Service body, @QueryValue("pretty") @Nullable @Nullable String pretty, @QueryValue("dryRun") @Nullable @Nullable String dryRun, @QueryValue("fieldManager") @Nullable @Nullable String fieldManager, @QueryValue("fieldValidation") @Nullable @Nullable String fieldValidation)
      create a Service
      Parameters:
      namespace - object name and auth scope, such as for teams and projects (required)
      body - (required)
      pretty - If 'true', then the output is pretty printed. (optional)
      dryRun - When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed (optional)
      fieldManager - fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. (optional)
      fieldValidation - fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)
      Returns:
      OK (status code 200) or Created (status code 201) or Accepted (status code 202) or Unauthorized (status code 401)
    • createNamespacedServiceAccount

      @Post("/api/v1/namespaces/{namespace}/serviceaccounts") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf"}) V1ServiceAccount createNamespacedServiceAccount(@PathVariable("namespace") @NotNull @NotNull String namespace, @Body @NotNull @Valid @NotNull @Valid V1ServiceAccount body, @QueryValue("pretty") @Nullable @Nullable String pretty, @QueryValue("dryRun") @Nullable @Nullable String dryRun, @QueryValue("fieldManager") @Nullable @Nullable String fieldManager, @QueryValue("fieldValidation") @Nullable @Nullable String fieldValidation)
      create a ServiceAccount
      Parameters:
      namespace - object name and auth scope, such as for teams and projects (required)
      body - (required)
      pretty - If 'true', then the output is pretty printed. (optional)
      dryRun - When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed (optional)
      fieldManager - fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. (optional)
      fieldValidation - fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)
      Returns:
      OK (status code 200) or Created (status code 201) or Accepted (status code 202) or Unauthorized (status code 401)
    • createNamespacedServiceAccountToken

      @Post("/api/v1/namespaces/{namespace}/serviceaccounts/{name}/token") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf"}) AuthenticationV1TokenRequest createNamespacedServiceAccountToken(@PathVariable("name") @NotNull @NotNull String name, @PathVariable("namespace") @NotNull @NotNull String namespace, @Body @NotNull @Valid @NotNull @Valid AuthenticationV1TokenRequest body, @QueryValue("dryRun") @Nullable @Nullable String dryRun, @QueryValue("fieldManager") @Nullable @Nullable String fieldManager, @QueryValue("fieldValidation") @Nullable @Nullable String fieldValidation, @QueryValue("pretty") @Nullable @Nullable String pretty)
      create token of a ServiceAccount
      Parameters:
      name - name of the TokenRequest (required)
      namespace - object name and auth scope, such as for teams and projects (required)
      body - (required)
      dryRun - When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed (optional)
      fieldManager - fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. (optional)
      fieldValidation - fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)
      pretty - If 'true', then the output is pretty printed. (optional)
      Returns:
      OK (status code 200) or Created (status code 201) or Accepted (status code 202) or Unauthorized (status code 401)
    • createNode

      @Post("/api/v1/nodes") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf"}) V1Node createNode(@Body @NotNull @Valid @NotNull @Valid V1Node body, @QueryValue("pretty") @Nullable @Nullable String pretty, @QueryValue("dryRun") @Nullable @Nullable String dryRun, @QueryValue("fieldManager") @Nullable @Nullable String fieldManager, @QueryValue("fieldValidation") @Nullable @Nullable String fieldValidation)
      create a Node
      Parameters:
      body - (required)
      pretty - If 'true', then the output is pretty printed. (optional)
      dryRun - When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed (optional)
      fieldManager - fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. (optional)
      fieldValidation - fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)
      Returns:
      OK (status code 200) or Created (status code 201) or Accepted (status code 202) or Unauthorized (status code 401)
    • createPersistentVolume

      @Post("/api/v1/persistentvolumes") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf"}) V1PersistentVolume createPersistentVolume(@Body @NotNull @Valid @NotNull @Valid V1PersistentVolume body, @QueryValue("pretty") @Nullable @Nullable String pretty, @QueryValue("dryRun") @Nullable @Nullable String dryRun, @QueryValue("fieldManager") @Nullable @Nullable String fieldManager, @QueryValue("fieldValidation") @Nullable @Nullable String fieldValidation)
      create a PersistentVolume
      Parameters:
      body - (required)
      pretty - If 'true', then the output is pretty printed. (optional)
      dryRun - When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed (optional)
      fieldManager - fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. (optional)
      fieldValidation - fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)
      Returns:
      OK (status code 200) or Created (status code 201) or Accepted (status code 202) or Unauthorized (status code 401)
    • deleteCollectionNamespacedConfigMap

      @Delete("/api/v1/namespaces/{namespace}/configmaps") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf"}) V1Status deleteCollectionNamespacedConfigMap(@PathVariable("namespace") @NotNull @NotNull String namespace, @QueryValue("pretty") @Nullable @Nullable String pretty, @QueryValue("continue") @Nullable @Nullable String _continue, @QueryValue("dryRun") @Nullable @Nullable String dryRun, @QueryValue("fieldSelector") @Nullable @Nullable String fieldSelector, @QueryValue("gracePeriodSeconds") @Nullable @Nullable Integer gracePeriodSeconds, @QueryValue("labelSelector") @Nullable @Nullable String labelSelector, @QueryValue("limit") @Nullable @Nullable Integer limit, @QueryValue("orphanDependents") @Nullable @Nullable Boolean orphanDependents, @QueryValue("propagationPolicy") @Nullable @Nullable String propagationPolicy, @QueryValue("resourceVersion") @Nullable @Nullable String resourceVersion, @QueryValue("resourceVersionMatch") @Nullable @Nullable String resourceVersionMatch, @QueryValue("sendInitialEvents") @Nullable @Nullable Boolean sendInitialEvents, @QueryValue("timeoutSeconds") @Nullable @Nullable Integer timeoutSeconds, @Body @Nullable @Valid @Nullable @Valid V1DeleteOptions body)
      delete collection of ConfigMap
      Parameters:
      namespace - object name and auth scope, such as for teams and projects (required)
      pretty - If 'true', then the output is pretty printed. (optional)
      _continue - The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. (optional)
      dryRun - When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed (optional)
      fieldSelector - A selector to restrict the list of returned objects by their fields. Defaults to everything. (optional)
      gracePeriodSeconds - The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. (optional)
      labelSelector - A selector to restrict the list of returned objects by their labels. Defaults to everything. (optional)
      limit - limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. (optional)
      orphanDependents - 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. (optional)
      propagationPolicy - Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. 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. (optional)
      resourceVersion - resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset (optional)
      resourceVersionMatch - resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset (optional)
      sendInitialEvents - `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan is interpreted as \"data at least as new as the provided `resourceVersion`\" and the bookmark event is send when the state is synced to a `resourceVersion` at least as fresh as the one provided by the ListOptions. If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the bookmark event is send when the state is synced at least to the moment when request started being processed. - `resourceVersionMatch` set to any other value or unset Invalid error is returned. Defaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise. (optional)
      timeoutSeconds - Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. (optional)
      body - (optional)
      Returns:
      OK (status code 200) or Unauthorized (status code 401)
    • deleteCollectionNamespacedEndpoints

      @Delete("/api/v1/namespaces/{namespace}/endpoints") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf"}) V1Status deleteCollectionNamespacedEndpoints(@PathVariable("namespace") @NotNull @NotNull String namespace, @QueryValue("pretty") @Nullable @Nullable String pretty, @QueryValue("continue") @Nullable @Nullable String _continue, @QueryValue("dryRun") @Nullable @Nullable String dryRun, @QueryValue("fieldSelector") @Nullable @Nullable String fieldSelector, @QueryValue("gracePeriodSeconds") @Nullable @Nullable Integer gracePeriodSeconds, @QueryValue("labelSelector") @Nullable @Nullable String labelSelector, @QueryValue("limit") @Nullable @Nullable Integer limit, @QueryValue("orphanDependents") @Nullable @Nullable Boolean orphanDependents, @QueryValue("propagationPolicy") @Nullable @Nullable String propagationPolicy, @QueryValue("resourceVersion") @Nullable @Nullable String resourceVersion, @QueryValue("resourceVersionMatch") @Nullable @Nullable String resourceVersionMatch, @QueryValue("sendInitialEvents") @Nullable @Nullable Boolean sendInitialEvents, @QueryValue("timeoutSeconds") @Nullable @Nullable Integer timeoutSeconds, @Body @Nullable @Valid @Nullable @Valid V1DeleteOptions body)
      delete collection of Endpoints
      Parameters:
      namespace - object name and auth scope, such as for teams and projects (required)
      pretty - If 'true', then the output is pretty printed. (optional)
      _continue - The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. (optional)
      dryRun - When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed (optional)
      fieldSelector - A selector to restrict the list of returned objects by their fields. Defaults to everything. (optional)
      gracePeriodSeconds - The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. (optional)
      labelSelector - A selector to restrict the list of returned objects by their labels. Defaults to everything. (optional)
      limit - limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. (optional)
      orphanDependents - 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. (optional)
      propagationPolicy - Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. 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. (optional)
      resourceVersion - resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset (optional)
      resourceVersionMatch - resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset (optional)
      sendInitialEvents - `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan is interpreted as \"data at least as new as the provided `resourceVersion`\" and the bookmark event is send when the state is synced to a `resourceVersion` at least as fresh as the one provided by the ListOptions. If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the bookmark event is send when the state is synced at least to the moment when request started being processed. - `resourceVersionMatch` set to any other value or unset Invalid error is returned. Defaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise. (optional)
      timeoutSeconds - Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. (optional)
      body - (optional)
      Returns:
      OK (status code 200) or Unauthorized (status code 401)
    • deleteCollectionNamespacedEvent

      @Delete("/api/v1/namespaces/{namespace}/events") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf"}) V1Status deleteCollectionNamespacedEvent(@PathVariable("namespace") @NotNull @NotNull String namespace, @QueryValue("pretty") @Nullable @Nullable String pretty, @QueryValue("continue") @Nullable @Nullable String _continue, @QueryValue("dryRun") @Nullable @Nullable String dryRun, @QueryValue("fieldSelector") @Nullable @Nullable String fieldSelector, @QueryValue("gracePeriodSeconds") @Nullable @Nullable Integer gracePeriodSeconds, @QueryValue("labelSelector") @Nullable @Nullable String labelSelector, @QueryValue("limit") @Nullable @Nullable Integer limit, @QueryValue("orphanDependents") @Nullable @Nullable Boolean orphanDependents, @QueryValue("propagationPolicy") @Nullable @Nullable String propagationPolicy, @QueryValue("resourceVersion") @Nullable @Nullable String resourceVersion, @QueryValue("resourceVersionMatch") @Nullable @Nullable String resourceVersionMatch, @QueryValue("sendInitialEvents") @Nullable @Nullable Boolean sendInitialEvents, @QueryValue("timeoutSeconds") @Nullable @Nullable Integer timeoutSeconds, @Body @Nullable @Valid @Nullable @Valid V1DeleteOptions body)
      delete collection of Event
      Parameters:
      namespace - object name and auth scope, such as for teams and projects (required)
      pretty - If 'true', then the output is pretty printed. (optional)
      _continue - The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. (optional)
      dryRun - When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed (optional)
      fieldSelector - A selector to restrict the list of returned objects by their fields. Defaults to everything. (optional)
      gracePeriodSeconds - The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. (optional)
      labelSelector - A selector to restrict the list of returned objects by their labels. Defaults to everything. (optional)
      limit - limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. (optional)
      orphanDependents - 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. (optional)
      propagationPolicy - Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. 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. (optional)
      resourceVersion - resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset (optional)
      resourceVersionMatch - resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset (optional)
      sendInitialEvents - `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan is interpreted as \"data at least as new as the provided `resourceVersion`\" and the bookmark event is send when the state is synced to a `resourceVersion` at least as fresh as the one provided by the ListOptions. If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the bookmark event is send when the state is synced at least to the moment when request started being processed. - `resourceVersionMatch` set to any other value or unset Invalid error is returned. Defaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise. (optional)
      timeoutSeconds - Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. (optional)
      body - (optional)
      Returns:
      OK (status code 200) or Unauthorized (status code 401)
    • deleteCollectionNamespacedLimitRange

      @Delete("/api/v1/namespaces/{namespace}/limitranges") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf"}) V1Status deleteCollectionNamespacedLimitRange(@PathVariable("namespace") @NotNull @NotNull String namespace, @QueryValue("pretty") @Nullable @Nullable String pretty, @QueryValue("continue") @Nullable @Nullable String _continue, @QueryValue("dryRun") @Nullable @Nullable String dryRun, @QueryValue("fieldSelector") @Nullable @Nullable String fieldSelector, @QueryValue("gracePeriodSeconds") @Nullable @Nullable Integer gracePeriodSeconds, @QueryValue("labelSelector") @Nullable @Nullable String labelSelector, @QueryValue("limit") @Nullable @Nullable Integer limit, @QueryValue("orphanDependents") @Nullable @Nullable Boolean orphanDependents, @QueryValue("propagationPolicy") @Nullable @Nullable String propagationPolicy, @QueryValue("resourceVersion") @Nullable @Nullable String resourceVersion, @QueryValue("resourceVersionMatch") @Nullable @Nullable String resourceVersionMatch, @QueryValue("sendInitialEvents") @Nullable @Nullable Boolean sendInitialEvents, @QueryValue("timeoutSeconds") @Nullable @Nullable Integer timeoutSeconds, @Body @Nullable @Valid @Nullable @Valid V1DeleteOptions body)
      delete collection of LimitRange
      Parameters:
      namespace - object name and auth scope, such as for teams and projects (required)
      pretty - If 'true', then the output is pretty printed. (optional)
      _continue - The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. (optional)
      dryRun - When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed (optional)
      fieldSelector - A selector to restrict the list of returned objects by their fields. Defaults to everything. (optional)
      gracePeriodSeconds - The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. (optional)
      labelSelector - A selector to restrict the list of returned objects by their labels. Defaults to everything. (optional)
      limit - limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. (optional)
      orphanDependents - 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. (optional)
      propagationPolicy - Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. 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. (optional)
      resourceVersion - resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset (optional)
      resourceVersionMatch - resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset (optional)
      sendInitialEvents - `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan is interpreted as \"data at least as new as the provided `resourceVersion`\" and the bookmark event is send when the state is synced to a `resourceVersion` at least as fresh as the one provided by the ListOptions. If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the bookmark event is send when the state is synced at least to the moment when request started being processed. - `resourceVersionMatch` set to any other value or unset Invalid error is returned. Defaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise. (optional)
      timeoutSeconds - Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. (optional)
      body - (optional)
      Returns:
      OK (status code 200) or Unauthorized (status code 401)
    • deleteCollectionNamespacedPersistentVolumeClaim

      @Delete("/api/v1/namespaces/{namespace}/persistentvolumeclaims") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf"}) V1Status deleteCollectionNamespacedPersistentVolumeClaim(@PathVariable("namespace") @NotNull @NotNull String namespace, @QueryValue("pretty") @Nullable @Nullable String pretty, @QueryValue("continue") @Nullable @Nullable String _continue, @QueryValue("dryRun") @Nullable @Nullable String dryRun, @QueryValue("fieldSelector") @Nullable @Nullable String fieldSelector, @QueryValue("gracePeriodSeconds") @Nullable @Nullable Integer gracePeriodSeconds, @QueryValue("labelSelector") @Nullable @Nullable String labelSelector, @QueryValue("limit") @Nullable @Nullable Integer limit, @QueryValue("orphanDependents") @Nullable @Nullable Boolean orphanDependents, @QueryValue("propagationPolicy") @Nullable @Nullable String propagationPolicy, @QueryValue("resourceVersion") @Nullable @Nullable String resourceVersion, @QueryValue("resourceVersionMatch") @Nullable @Nullable String resourceVersionMatch, @QueryValue("sendInitialEvents") @Nullable @Nullable Boolean sendInitialEvents, @QueryValue("timeoutSeconds") @Nullable @Nullable Integer timeoutSeconds, @Body @Nullable @Valid @Nullable @Valid V1DeleteOptions body)
      delete collection of PersistentVolumeClaim
      Parameters:
      namespace - object name and auth scope, such as for teams and projects (required)
      pretty - If 'true', then the output is pretty printed. (optional)
      _continue - The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. (optional)
      dryRun - When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed (optional)
      fieldSelector - A selector to restrict the list of returned objects by their fields. Defaults to everything. (optional)
      gracePeriodSeconds - The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. (optional)
      labelSelector - A selector to restrict the list of returned objects by their labels. Defaults to everything. (optional)
      limit - limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. (optional)
      orphanDependents - 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. (optional)
      propagationPolicy - Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. 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. (optional)
      resourceVersion - resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset (optional)
      resourceVersionMatch - resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset (optional)
      sendInitialEvents - `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan is interpreted as \"data at least as new as the provided `resourceVersion`\" and the bookmark event is send when the state is synced to a `resourceVersion` at least as fresh as the one provided by the ListOptions. If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the bookmark event is send when the state is synced at least to the moment when request started being processed. - `resourceVersionMatch` set to any other value or unset Invalid error is returned. Defaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise. (optional)
      timeoutSeconds - Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. (optional)
      body - (optional)
      Returns:
      OK (status code 200) or Unauthorized (status code 401)
    • deleteCollectionNamespacedPod

      @Delete("/api/v1/namespaces/{namespace}/pods") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf"}) V1Status deleteCollectionNamespacedPod(@PathVariable("namespace") @NotNull @NotNull String namespace, @QueryValue("pretty") @Nullable @Nullable String pretty, @QueryValue("continue") @Nullable @Nullable String _continue, @QueryValue("dryRun") @Nullable @Nullable String dryRun, @QueryValue("fieldSelector") @Nullable @Nullable String fieldSelector, @QueryValue("gracePeriodSeconds") @Nullable @Nullable Integer gracePeriodSeconds, @QueryValue("labelSelector") @Nullable @Nullable String labelSelector, @QueryValue("limit") @Nullable @Nullable Integer limit, @QueryValue("orphanDependents") @Nullable @Nullable Boolean orphanDependents, @QueryValue("propagationPolicy") @Nullable @Nullable String propagationPolicy, @QueryValue("resourceVersion") @Nullable @Nullable String resourceVersion, @QueryValue("resourceVersionMatch") @Nullable @Nullable String resourceVersionMatch, @QueryValue("sendInitialEvents") @Nullable @Nullable Boolean sendInitialEvents, @QueryValue("timeoutSeconds") @Nullable @Nullable Integer timeoutSeconds, @Body @Nullable @Valid @Nullable @Valid V1DeleteOptions body)
      delete collection of Pod
      Parameters:
      namespace - object name and auth scope, such as for teams and projects (required)
      pretty - If 'true', then the output is pretty printed. (optional)
      _continue - The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. (optional)
      dryRun - When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed (optional)
      fieldSelector - A selector to restrict the list of returned objects by their fields. Defaults to everything. (optional)
      gracePeriodSeconds - The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. (optional)
      labelSelector - A selector to restrict the list of returned objects by their labels. Defaults to everything. (optional)
      limit - limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. (optional)
      orphanDependents - 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. (optional)
      propagationPolicy - Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. 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. (optional)
      resourceVersion - resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset (optional)
      resourceVersionMatch - resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset (optional)
      sendInitialEvents - `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan is interpreted as \"data at least as new as the provided `resourceVersion`\" and the bookmark event is send when the state is synced to a `resourceVersion` at least as fresh as the one provided by the ListOptions. If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the bookmark event is send when the state is synced at least to the moment when request started being processed. - `resourceVersionMatch` set to any other value or unset Invalid error is returned. Defaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise. (optional)
      timeoutSeconds - Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. (optional)
      body - (optional)
      Returns:
      OK (status code 200) or Unauthorized (status code 401)
    • deleteCollectionNamespacedPodTemplate

      @Delete("/api/v1/namespaces/{namespace}/podtemplates") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf"}) V1Status deleteCollectionNamespacedPodTemplate(@PathVariable("namespace") @NotNull @NotNull String namespace, @QueryValue("pretty") @Nullable @Nullable String pretty, @QueryValue("continue") @Nullable @Nullable String _continue, @QueryValue("dryRun") @Nullable @Nullable String dryRun, @QueryValue("fieldSelector") @Nullable @Nullable String fieldSelector, @QueryValue("gracePeriodSeconds") @Nullable @Nullable Integer gracePeriodSeconds, @QueryValue("labelSelector") @Nullable @Nullable String labelSelector, @QueryValue("limit") @Nullable @Nullable Integer limit, @QueryValue("orphanDependents") @Nullable @Nullable Boolean orphanDependents, @QueryValue("propagationPolicy") @Nullable @Nullable String propagationPolicy, @QueryValue("resourceVersion") @Nullable @Nullable String resourceVersion, @QueryValue("resourceVersionMatch") @Nullable @Nullable String resourceVersionMatch, @QueryValue("sendInitialEvents") @Nullable @Nullable Boolean sendInitialEvents, @QueryValue("timeoutSeconds") @Nullable @Nullable Integer timeoutSeconds, @Body @Nullable @Valid @Nullable @Valid V1DeleteOptions body)
      delete collection of PodTemplate
      Parameters:
      namespace - object name and auth scope, such as for teams and projects (required)
      pretty - If 'true', then the output is pretty printed. (optional)
      _continue - The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. (optional)
      dryRun - When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed (optional)
      fieldSelector - A selector to restrict the list of returned objects by their fields. Defaults to everything. (optional)
      gracePeriodSeconds - The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. (optional)
      labelSelector - A selector to restrict the list of returned objects by their labels. Defaults to everything. (optional)
      limit - limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. (optional)
      orphanDependents - 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. (optional)
      propagationPolicy - Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. 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. (optional)
      resourceVersion - resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset (optional)
      resourceVersionMatch - resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset (optional)
      sendInitialEvents - `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan is interpreted as \"data at least as new as the provided `resourceVersion`\" and the bookmark event is send when the state is synced to a `resourceVersion` at least as fresh as the one provided by the ListOptions. If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the bookmark event is send when the state is synced at least to the moment when request started being processed. - `resourceVersionMatch` set to any other value or unset Invalid error is returned. Defaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise. (optional)
      timeoutSeconds - Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. (optional)
      body - (optional)
      Returns:
      OK (status code 200) or Unauthorized (status code 401)
    • deleteCollectionNamespacedReplicationController

      @Delete("/api/v1/namespaces/{namespace}/replicationcontrollers") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf"}) V1Status deleteCollectionNamespacedReplicationController(@PathVariable("namespace") @NotNull @NotNull String namespace, @QueryValue("pretty") @Nullable @Nullable String pretty, @QueryValue("continue") @Nullable @Nullable String _continue, @QueryValue("dryRun") @Nullable @Nullable String dryRun, @QueryValue("fieldSelector") @Nullable @Nullable String fieldSelector, @QueryValue("gracePeriodSeconds") @Nullable @Nullable Integer gracePeriodSeconds, @QueryValue("labelSelector") @Nullable @Nullable String labelSelector, @QueryValue("limit") @Nullable @Nullable Integer limit, @QueryValue("orphanDependents") @Nullable @Nullable Boolean orphanDependents, @QueryValue("propagationPolicy") @Nullable @Nullable String propagationPolicy, @QueryValue("resourceVersion") @Nullable @Nullable String resourceVersion, @QueryValue("resourceVersionMatch") @Nullable @Nullable String resourceVersionMatch, @QueryValue("sendInitialEvents") @Nullable @Nullable Boolean sendInitialEvents, @QueryValue("timeoutSeconds") @Nullable @Nullable Integer timeoutSeconds, @Body @Nullable @Valid @Nullable @Valid V1DeleteOptions body)
      delete collection of ReplicationController
      Parameters:
      namespace - object name and auth scope, such as for teams and projects (required)
      pretty - If 'true', then the output is pretty printed. (optional)
      _continue - The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. (optional)
      dryRun - When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed (optional)
      fieldSelector - A selector to restrict the list of returned objects by their fields. Defaults to everything. (optional)
      gracePeriodSeconds - The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. (optional)
      labelSelector - A selector to restrict the list of returned objects by their labels. Defaults to everything. (optional)
      limit - limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. (optional)
      orphanDependents - 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. (optional)
      propagationPolicy - Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. 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. (optional)
      resourceVersion - resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset (optional)
      resourceVersionMatch - resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset (optional)
      sendInitialEvents - `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan is interpreted as \"data at least as new as the provided `resourceVersion`\" and the bookmark event is send when the state is synced to a `resourceVersion` at least as fresh as the one provided by the ListOptions. If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the bookmark event is send when the state is synced at least to the moment when request started being processed. - `resourceVersionMatch` set to any other value or unset Invalid error is returned. Defaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise. (optional)
      timeoutSeconds - Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. (optional)
      body - (optional)
      Returns:
      OK (status code 200) or Unauthorized (status code 401)
    • deleteCollectionNamespacedResourceQuota

      @Delete("/api/v1/namespaces/{namespace}/resourcequotas") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf"}) V1Status deleteCollectionNamespacedResourceQuota(@PathVariable("namespace") @NotNull @NotNull String namespace, @QueryValue("pretty") @Nullable @Nullable String pretty, @QueryValue("continue") @Nullable @Nullable String _continue, @QueryValue("dryRun") @Nullable @Nullable String dryRun, @QueryValue("fieldSelector") @Nullable @Nullable String fieldSelector, @QueryValue("gracePeriodSeconds") @Nullable @Nullable Integer gracePeriodSeconds, @QueryValue("labelSelector") @Nullable @Nullable String labelSelector, @QueryValue("limit") @Nullable @Nullable Integer limit, @QueryValue("orphanDependents") @Nullable @Nullable Boolean orphanDependents, @QueryValue("propagationPolicy") @Nullable @Nullable String propagationPolicy, @QueryValue("resourceVersion") @Nullable @Nullable String resourceVersion, @QueryValue("resourceVersionMatch") @Nullable @Nullable String resourceVersionMatch, @QueryValue("sendInitialEvents") @Nullable @Nullable Boolean sendInitialEvents, @QueryValue("timeoutSeconds") @Nullable @Nullable Integer timeoutSeconds, @Body @Nullable @Valid @Nullable @Valid V1DeleteOptions body)
      delete collection of ResourceQuota
      Parameters:
      namespace - object name and auth scope, such as for teams and projects (required)
      pretty - If 'true', then the output is pretty printed. (optional)
      _continue - The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. (optional)
      dryRun - When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed (optional)
      fieldSelector - A selector to restrict the list of returned objects by their fields. Defaults to everything. (optional)
      gracePeriodSeconds - The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. (optional)
      labelSelector - A selector to restrict the list of returned objects by their labels. Defaults to everything. (optional)
      limit - limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. (optional)
      orphanDependents - 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. (optional)
      propagationPolicy - Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. 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. (optional)
      resourceVersion - resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset (optional)
      resourceVersionMatch - resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset (optional)
      sendInitialEvents - `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan is interpreted as \"data at least as new as the provided `resourceVersion`\" and the bookmark event is send when the state is synced to a `resourceVersion` at least as fresh as the one provided by the ListOptions. If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the bookmark event is send when the state is synced at least to the moment when request started being processed. - `resourceVersionMatch` set to any other value or unset Invalid error is returned. Defaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise. (optional)
      timeoutSeconds - Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. (optional)
      body - (optional)
      Returns:
      OK (status code 200) or Unauthorized (status code 401)
    • deleteCollectionNamespacedSecret

      @Delete("/api/v1/namespaces/{namespace}/secrets") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf"}) V1Status deleteCollectionNamespacedSecret(@PathVariable("namespace") @NotNull @NotNull String namespace, @QueryValue("pretty") @Nullable @Nullable String pretty, @QueryValue("continue") @Nullable @Nullable String _continue, @QueryValue("dryRun") @Nullable @Nullable String dryRun, @QueryValue("fieldSelector") @Nullable @Nullable String fieldSelector, @QueryValue("gracePeriodSeconds") @Nullable @Nullable Integer gracePeriodSeconds, @QueryValue("labelSelector") @Nullable @Nullable String labelSelector, @QueryValue("limit") @Nullable @Nullable Integer limit, @QueryValue("orphanDependents") @Nullable @Nullable Boolean orphanDependents, @QueryValue("propagationPolicy") @Nullable @Nullable String propagationPolicy, @QueryValue("resourceVersion") @Nullable @Nullable String resourceVersion, @QueryValue("resourceVersionMatch") @Nullable @Nullable String resourceVersionMatch, @QueryValue("sendInitialEvents") @Nullable @Nullable Boolean sendInitialEvents, @QueryValue("timeoutSeconds") @Nullable @Nullable Integer timeoutSeconds, @Body @Nullable @Valid @Nullable @Valid V1DeleteOptions body)
      delete collection of Secret
      Parameters:
      namespace - object name and auth scope, such as for teams and projects (required)
      pretty - If 'true', then the output is pretty printed. (optional)
      _continue - The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. (optional)
      dryRun - When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed (optional)
      fieldSelector - A selector to restrict the list of returned objects by their fields. Defaults to everything. (optional)
      gracePeriodSeconds - The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. (optional)
      labelSelector - A selector to restrict the list of returned objects by their labels. Defaults to everything. (optional)
      limit - limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. (optional)
      orphanDependents - 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. (optional)
      propagationPolicy - Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. 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. (optional)
      resourceVersion - resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset (optional)
      resourceVersionMatch - resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset (optional)
      sendInitialEvents - `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan is interpreted as \"data at least as new as the provided `resourceVersion`\" and the bookmark event is send when the state is synced to a `resourceVersion` at least as fresh as the one provided by the ListOptions. If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the bookmark event is send when the state is synced at least to the moment when request started being processed. - `resourceVersionMatch` set to any other value or unset Invalid error is returned. Defaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise. (optional)
      timeoutSeconds - Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. (optional)
      body - (optional)
      Returns:
      OK (status code 200) or Unauthorized (status code 401)
    • deleteCollectionNamespacedService

      @Delete("/api/v1/namespaces/{namespace}/services") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf"}) V1Status deleteCollectionNamespacedService(@PathVariable("namespace") @NotNull @NotNull String namespace, @QueryValue("pretty") @Nullable @Nullable String pretty, @QueryValue("continue") @Nullable @Nullable String _continue, @QueryValue("dryRun") @Nullable @Nullable String dryRun, @QueryValue("fieldSelector") @Nullable @Nullable String fieldSelector, @QueryValue("gracePeriodSeconds") @Nullable @Nullable Integer gracePeriodSeconds, @QueryValue("labelSelector") @Nullable @Nullable String labelSelector, @QueryValue("limit") @Nullable @Nullable Integer limit, @QueryValue("orphanDependents") @Nullable @Nullable Boolean orphanDependents, @QueryValue("propagationPolicy") @Nullable @Nullable String propagationPolicy, @QueryValue("resourceVersion") @Nullable @Nullable String resourceVersion, @QueryValue("resourceVersionMatch") @Nullable @Nullable String resourceVersionMatch, @QueryValue("sendInitialEvents") @Nullable @Nullable Boolean sendInitialEvents, @QueryValue("timeoutSeconds") @Nullable @Nullable Integer timeoutSeconds, @Body @Nullable @Valid @Nullable @Valid V1DeleteOptions body)
      delete collection of Service
      Parameters:
      namespace - object name and auth scope, such as for teams and projects (required)
      pretty - If 'true', then the output is pretty printed. (optional)
      _continue - The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. (optional)
      dryRun - When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed (optional)
      fieldSelector - A selector to restrict the list of returned objects by their fields. Defaults to everything. (optional)
      gracePeriodSeconds - The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. (optional)
      labelSelector - A selector to restrict the list of returned objects by their labels. Defaults to everything. (optional)
      limit - limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. (optional)
      orphanDependents - 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. (optional)
      propagationPolicy - Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. 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. (optional)
      resourceVersion - resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset (optional)
      resourceVersionMatch - resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset (optional)
      sendInitialEvents - `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan is interpreted as \"data at least as new as the provided `resourceVersion`\" and the bookmark event is send when the state is synced to a `resourceVersion` at least as fresh as the one provided by the ListOptions. If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the bookmark event is send when the state is synced at least to the moment when request started being processed. - `resourceVersionMatch` set to any other value or unset Invalid error is returned. Defaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise. (optional)
      timeoutSeconds - Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. (optional)
      body - (optional)
      Returns:
      OK (status code 200) or Unauthorized (status code 401)
    • deleteCollectionNamespacedServiceAccount

      @Delete("/api/v1/namespaces/{namespace}/serviceaccounts") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf"}) V1Status deleteCollectionNamespacedServiceAccount(@PathVariable("namespace") @NotNull @NotNull String namespace, @QueryValue("pretty") @Nullable @Nullable String pretty, @QueryValue("continue") @Nullable @Nullable String _continue, @QueryValue("dryRun") @Nullable @Nullable String dryRun, @QueryValue("fieldSelector") @Nullable @Nullable String fieldSelector, @QueryValue("gracePeriodSeconds") @Nullable @Nullable Integer gracePeriodSeconds, @QueryValue("labelSelector") @Nullable @Nullable String labelSelector, @QueryValue("limit") @Nullable @Nullable Integer limit, @QueryValue("orphanDependents") @Nullable @Nullable Boolean orphanDependents, @QueryValue("propagationPolicy") @Nullable @Nullable String propagationPolicy, @QueryValue("resourceVersion") @Nullable @Nullable String resourceVersion, @QueryValue("resourceVersionMatch") @Nullable @Nullable String resourceVersionMatch, @QueryValue("sendInitialEvents") @Nullable @Nullable Boolean sendInitialEvents, @QueryValue("timeoutSeconds") @Nullable @Nullable Integer timeoutSeconds, @Body @Nullable @Valid @Nullable @Valid V1DeleteOptions body)
      delete collection of ServiceAccount
      Parameters:
      namespace - object name and auth scope, such as for teams and projects (required)
      pretty - If 'true', then the output is pretty printed. (optional)
      _continue - The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. (optional)
      dryRun - When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed (optional)
      fieldSelector - A selector to restrict the list of returned objects by their fields. Defaults to everything. (optional)
      gracePeriodSeconds - The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. (optional)
      labelSelector - A selector to restrict the list of returned objects by their labels. Defaults to everything. (optional)
      limit - limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. (optional)
      orphanDependents - 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. (optional)
      propagationPolicy - Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. 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. (optional)
      resourceVersion - resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset (optional)
      resourceVersionMatch - resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset (optional)
      sendInitialEvents - `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan is interpreted as \"data at least as new as the provided `resourceVersion`\" and the bookmark event is send when the state is synced to a `resourceVersion` at least as fresh as the one provided by the ListOptions. If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the bookmark event is send when the state is synced at least to the moment when request started being processed. - `resourceVersionMatch` set to any other value or unset Invalid error is returned. Defaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise. (optional)
      timeoutSeconds - Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. (optional)
      body - (optional)
      Returns:
      OK (status code 200) or Unauthorized (status code 401)
    • deleteCollectionNode

      @Delete("/api/v1/nodes") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf"}) V1Status deleteCollectionNode(@QueryValue("pretty") @Nullable @Nullable String pretty, @QueryValue("continue") @Nullable @Nullable String _continue, @QueryValue("dryRun") @Nullable @Nullable String dryRun, @QueryValue("fieldSelector") @Nullable @Nullable String fieldSelector, @QueryValue("gracePeriodSeconds") @Nullable @Nullable Integer gracePeriodSeconds, @QueryValue("labelSelector") @Nullable @Nullable String labelSelector, @QueryValue("limit") @Nullable @Nullable Integer limit, @QueryValue("orphanDependents") @Nullable @Nullable Boolean orphanDependents, @QueryValue("propagationPolicy") @Nullable @Nullable String propagationPolicy, @QueryValue("resourceVersion") @Nullable @Nullable String resourceVersion, @QueryValue("resourceVersionMatch") @Nullable @Nullable String resourceVersionMatch, @QueryValue("sendInitialEvents") @Nullable @Nullable Boolean sendInitialEvents, @QueryValue("timeoutSeconds") @Nullable @Nullable Integer timeoutSeconds, @Body @Nullable @Valid @Nullable @Valid V1DeleteOptions body)
      delete collection of Node
      Parameters:
      pretty - If 'true', then the output is pretty printed. (optional)
      _continue - The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. (optional)
      dryRun - When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed (optional)
      fieldSelector - A selector to restrict the list of returned objects by their fields. Defaults to everything. (optional)
      gracePeriodSeconds - The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. (optional)
      labelSelector - A selector to restrict the list of returned objects by their labels. Defaults to everything. (optional)
      limit - limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. (optional)
      orphanDependents - 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. (optional)
      propagationPolicy - Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. 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. (optional)
      resourceVersion - resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset (optional)
      resourceVersionMatch - resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset (optional)
      sendInitialEvents - `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan is interpreted as \"data at least as new as the provided `resourceVersion`\" and the bookmark event is send when the state is synced to a `resourceVersion` at least as fresh as the one provided by the ListOptions. If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the bookmark event is send when the state is synced at least to the moment when request started being processed. - `resourceVersionMatch` set to any other value or unset Invalid error is returned. Defaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise. (optional)
      timeoutSeconds - Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. (optional)
      body - (optional)
      Returns:
      OK (status code 200) or Unauthorized (status code 401)
    • deleteCollectionPersistentVolume

      @Delete("/api/v1/persistentvolumes") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf"}) V1Status deleteCollectionPersistentVolume(@QueryValue("pretty") @Nullable @Nullable String pretty, @QueryValue("continue") @Nullable @Nullable String _continue, @QueryValue("dryRun") @Nullable @Nullable String dryRun, @QueryValue("fieldSelector") @Nullable @Nullable String fieldSelector, @QueryValue("gracePeriodSeconds") @Nullable @Nullable Integer gracePeriodSeconds, @QueryValue("labelSelector") @Nullable @Nullable String labelSelector, @QueryValue("limit") @Nullable @Nullable Integer limit, @QueryValue("orphanDependents") @Nullable @Nullable Boolean orphanDependents, @QueryValue("propagationPolicy") @Nullable @Nullable String propagationPolicy, @QueryValue("resourceVersion") @Nullable @Nullable String resourceVersion, @QueryValue("resourceVersionMatch") @Nullable @Nullable String resourceVersionMatch, @QueryValue("sendInitialEvents") @Nullable @Nullable Boolean sendInitialEvents, @QueryValue("timeoutSeconds") @Nullable @Nullable Integer timeoutSeconds, @Body @Nullable @Valid @Nullable @Valid V1DeleteOptions body)
      delete collection of PersistentVolume
      Parameters:
      pretty - If 'true', then the output is pretty printed. (optional)
      _continue - The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. (optional)
      dryRun - When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed (optional)
      fieldSelector - A selector to restrict the list of returned objects by their fields. Defaults to everything. (optional)
      gracePeriodSeconds - The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. (optional)
      labelSelector - A selector to restrict the list of returned objects by their labels. Defaults to everything. (optional)
      limit - limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. (optional)
      orphanDependents - 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. (optional)
      propagationPolicy - Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. 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. (optional)
      resourceVersion - resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset (optional)
      resourceVersionMatch - resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset (optional)
      sendInitialEvents - `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan is interpreted as \"data at least as new as the provided `resourceVersion`\" and the bookmark event is send when the state is synced to a `resourceVersion` at least as fresh as the one provided by the ListOptions. If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the bookmark event is send when the state is synced at least to the moment when request started being processed. - `resourceVersionMatch` set to any other value or unset Invalid error is returned. Defaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise. (optional)
      timeoutSeconds - Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. (optional)
      body - (optional)
      Returns:
      OK (status code 200) or Unauthorized (status code 401)
    • deleteNamespace

      @Delete("/api/v1/namespaces/{name}") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf"}) V1Status deleteNamespace(@PathVariable("name") @NotNull @NotNull String name, @QueryValue("pretty") @Nullable @Nullable String pretty, @QueryValue("dryRun") @Nullable @Nullable String dryRun, @QueryValue("gracePeriodSeconds") @Nullable @Nullable Integer gracePeriodSeconds, @QueryValue("orphanDependents") @Nullable @Nullable Boolean orphanDependents, @QueryValue("propagationPolicy") @Nullable @Nullable String propagationPolicy, @Body @Nullable @Valid @Nullable @Valid V1DeleteOptions body)
      delete a Namespace
      Parameters:
      name - name of the Namespace (required)
      pretty - If 'true', then the output is pretty printed. (optional)
      dryRun - When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed (optional)
      gracePeriodSeconds - The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. (optional)
      orphanDependents - 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. (optional)
      propagationPolicy - Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. 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. (optional)
      body - (optional)
      Returns:
      OK (status code 200) or Accepted (status code 202) or Unauthorized (status code 401)
    • deleteNamespacedConfigMap

      @Delete("/api/v1/namespaces/{namespace}/configmaps/{name}") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf"}) V1Status deleteNamespacedConfigMap(@PathVariable("name") @NotNull @NotNull String name, @PathVariable("namespace") @NotNull @NotNull String namespace, @QueryValue("pretty") @Nullable @Nullable String pretty, @QueryValue("dryRun") @Nullable @Nullable String dryRun, @QueryValue("gracePeriodSeconds") @Nullable @Nullable Integer gracePeriodSeconds, @QueryValue("orphanDependents") @Nullable @Nullable Boolean orphanDependents, @QueryValue("propagationPolicy") @Nullable @Nullable String propagationPolicy, @Body @Nullable @Valid @Nullable @Valid V1DeleteOptions body)
      delete a ConfigMap
      Parameters:
      name - name of the ConfigMap (required)
      namespace - object name and auth scope, such as for teams and projects (required)
      pretty - If 'true', then the output is pretty printed. (optional)
      dryRun - When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed (optional)
      gracePeriodSeconds - The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. (optional)
      orphanDependents - 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. (optional)
      propagationPolicy - Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. 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. (optional)
      body - (optional)
      Returns:
      OK (status code 200) or Accepted (status code 202) or Unauthorized (status code 401)
    • deleteNamespacedEndpoints

      @Delete("/api/v1/namespaces/{namespace}/endpoints/{name}") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf"}) V1Status deleteNamespacedEndpoints(@PathVariable("name") @NotNull @NotNull String name, @PathVariable("namespace") @NotNull @NotNull String namespace, @QueryValue("pretty") @Nullable @Nullable String pretty, @QueryValue("dryRun") @Nullable @Nullable String dryRun, @QueryValue("gracePeriodSeconds") @Nullable @Nullable Integer gracePeriodSeconds, @QueryValue("orphanDependents") @Nullable @Nullable Boolean orphanDependents, @QueryValue("propagationPolicy") @Nullable @Nullable String propagationPolicy, @Body @Nullable @Valid @Nullable @Valid V1DeleteOptions body)
      delete Endpoints
      Parameters:
      name - name of the Endpoints (required)
      namespace - object name and auth scope, such as for teams and projects (required)
      pretty - If 'true', then the output is pretty printed. (optional)
      dryRun - When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed (optional)
      gracePeriodSeconds - The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. (optional)
      orphanDependents - 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. (optional)
      propagationPolicy - Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. 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. (optional)
      body - (optional)
      Returns:
      OK (status code 200) or Accepted (status code 202) or Unauthorized (status code 401)
    • deleteNamespacedEvent

      @Delete("/api/v1/namespaces/{namespace}/events/{name}") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf"}) V1Status deleteNamespacedEvent(@PathVariable("name") @NotNull @NotNull String name, @PathVariable("namespace") @NotNull @NotNull String namespace, @QueryValue("pretty") @Nullable @Nullable String pretty, @QueryValue("dryRun") @Nullable @Nullable String dryRun, @QueryValue("gracePeriodSeconds") @Nullable @Nullable Integer gracePeriodSeconds, @QueryValue("orphanDependents") @Nullable @Nullable Boolean orphanDependents, @QueryValue("propagationPolicy") @Nullable @Nullable String propagationPolicy, @Body @Nullable @Valid @Nullable @Valid V1DeleteOptions body)
      delete an Event
      Parameters:
      name - name of the Event (required)
      namespace - object name and auth scope, such as for teams and projects (required)
      pretty - If 'true', then the output is pretty printed. (optional)
      dryRun - When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed (optional)
      gracePeriodSeconds - The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. (optional)
      orphanDependents - 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. (optional)
      propagationPolicy - Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. 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. (optional)
      body - (optional)
      Returns:
      OK (status code 200) or Accepted (status code 202) or Unauthorized (status code 401)
    • deleteNamespacedLimitRange

      @Delete("/api/v1/namespaces/{namespace}/limitranges/{name}") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf"}) V1Status deleteNamespacedLimitRange(@PathVariable("name") @NotNull @NotNull String name, @PathVariable("namespace") @NotNull @NotNull String namespace, @QueryValue("pretty") @Nullable @Nullable String pretty, @QueryValue("dryRun") @Nullable @Nullable String dryRun, @QueryValue("gracePeriodSeconds") @Nullable @Nullable Integer gracePeriodSeconds, @QueryValue("orphanDependents") @Nullable @Nullable Boolean orphanDependents, @QueryValue("propagationPolicy") @Nullable @Nullable String propagationPolicy, @Body @Nullable @Valid @Nullable @Valid V1DeleteOptions body)
      delete a LimitRange
      Parameters:
      name - name of the LimitRange (required)
      namespace - object name and auth scope, such as for teams and projects (required)
      pretty - If 'true', then the output is pretty printed. (optional)
      dryRun - When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed (optional)
      gracePeriodSeconds - The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. (optional)
      orphanDependents - 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. (optional)
      propagationPolicy - Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. 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. (optional)
      body - (optional)
      Returns:
      OK (status code 200) or Accepted (status code 202) or Unauthorized (status code 401)
    • deleteNamespacedPersistentVolumeClaim

      @Delete("/api/v1/namespaces/{namespace}/persistentvolumeclaims/{name}") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf"}) V1PersistentVolumeClaim deleteNamespacedPersistentVolumeClaim(@PathVariable("name") @NotNull @NotNull String name, @PathVariable("namespace") @NotNull @NotNull String namespace, @QueryValue("pretty") @Nullable @Nullable String pretty, @QueryValue("dryRun") @Nullable @Nullable String dryRun, @QueryValue("gracePeriodSeconds") @Nullable @Nullable Integer gracePeriodSeconds, @QueryValue("orphanDependents") @Nullable @Nullable Boolean orphanDependents, @QueryValue("propagationPolicy") @Nullable @Nullable String propagationPolicy, @Body @Nullable @Valid @Nullable @Valid V1DeleteOptions body)
      delete a PersistentVolumeClaim
      Parameters:
      name - name of the PersistentVolumeClaim (required)
      namespace - object name and auth scope, such as for teams and projects (required)
      pretty - If 'true', then the output is pretty printed. (optional)
      dryRun - When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed (optional)
      gracePeriodSeconds - The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. (optional)
      orphanDependents - 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. (optional)
      propagationPolicy - Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. 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. (optional)
      body - (optional)
      Returns:
      OK (status code 200) or Accepted (status code 202) or Unauthorized (status code 401)
    • deleteNamespacedPod

      @Delete("/api/v1/namespaces/{namespace}/pods/{name}") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf"}) V1Pod deleteNamespacedPod(@PathVariable("name") @NotNull @NotNull String name, @PathVariable("namespace") @NotNull @NotNull String namespace, @QueryValue("pretty") @Nullable @Nullable String pretty, @QueryValue("dryRun") @Nullable @Nullable String dryRun, @QueryValue("gracePeriodSeconds") @Nullable @Nullable Integer gracePeriodSeconds, @QueryValue("orphanDependents") @Nullable @Nullable Boolean orphanDependents, @QueryValue("propagationPolicy") @Nullable @Nullable String propagationPolicy, @Body @Nullable @Valid @Nullable @Valid V1DeleteOptions body)
      delete a Pod
      Parameters:
      name - name of the Pod (required)
      namespace - object name and auth scope, such as for teams and projects (required)
      pretty - If 'true', then the output is pretty printed. (optional)
      dryRun - When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed (optional)
      gracePeriodSeconds - The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. (optional)
      orphanDependents - 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. (optional)
      propagationPolicy - Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. 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. (optional)
      body - (optional)
      Returns:
      OK (status code 200) or Accepted (status code 202) or Unauthorized (status code 401)
    • deleteNamespacedPodTemplate

      @Delete("/api/v1/namespaces/{namespace}/podtemplates/{name}") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf"}) V1PodTemplate deleteNamespacedPodTemplate(@PathVariable("name") @NotNull @NotNull String name, @PathVariable("namespace") @NotNull @NotNull String namespace, @QueryValue("pretty") @Nullable @Nullable String pretty, @QueryValue("dryRun") @Nullable @Nullable String dryRun, @QueryValue("gracePeriodSeconds") @Nullable @Nullable Integer gracePeriodSeconds, @QueryValue("orphanDependents") @Nullable @Nullable Boolean orphanDependents, @QueryValue("propagationPolicy") @Nullable @Nullable String propagationPolicy, @Body @Nullable @Valid @Nullable @Valid V1DeleteOptions body)
      delete a PodTemplate
      Parameters:
      name - name of the PodTemplate (required)
      namespace - object name and auth scope, such as for teams and projects (required)
      pretty - If 'true', then the output is pretty printed. (optional)
      dryRun - When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed (optional)
      gracePeriodSeconds - The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. (optional)
      orphanDependents - 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. (optional)
      propagationPolicy - Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. 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. (optional)
      body - (optional)
      Returns:
      OK (status code 200) or Accepted (status code 202) or Unauthorized (status code 401)
    • deleteNamespacedReplicationController

      @Delete("/api/v1/namespaces/{namespace}/replicationcontrollers/{name}") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf"}) V1Status deleteNamespacedReplicationController(@PathVariable("name") @NotNull @NotNull String name, @PathVariable("namespace") @NotNull @NotNull String namespace, @QueryValue("pretty") @Nullable @Nullable String pretty, @QueryValue("dryRun") @Nullable @Nullable String dryRun, @QueryValue("gracePeriodSeconds") @Nullable @Nullable Integer gracePeriodSeconds, @QueryValue("orphanDependents") @Nullable @Nullable Boolean orphanDependents, @QueryValue("propagationPolicy") @Nullable @Nullable String propagationPolicy, @Body @Nullable @Valid @Nullable @Valid V1DeleteOptions body)
      delete a ReplicationController
      Parameters:
      name - name of the ReplicationController (required)
      namespace - object name and auth scope, such as for teams and projects (required)
      pretty - If 'true', then the output is pretty printed. (optional)
      dryRun - When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed (optional)
      gracePeriodSeconds - The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. (optional)
      orphanDependents - 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. (optional)
      propagationPolicy - Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. 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. (optional)
      body - (optional)
      Returns:
      OK (status code 200) or Accepted (status code 202) or Unauthorized (status code 401)
    • deleteNamespacedResourceQuota

      @Delete("/api/v1/namespaces/{namespace}/resourcequotas/{name}") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf"}) V1ResourceQuota deleteNamespacedResourceQuota(@PathVariable("name") @NotNull @NotNull String name, @PathVariable("namespace") @NotNull @NotNull String namespace, @QueryValue("pretty") @Nullable @Nullable String pretty, @QueryValue("dryRun") @Nullable @Nullable String dryRun, @QueryValue("gracePeriodSeconds") @Nullable @Nullable Integer gracePeriodSeconds, @QueryValue("orphanDependents") @Nullable @Nullable Boolean orphanDependents, @QueryValue("propagationPolicy") @Nullable @Nullable String propagationPolicy, @Body @Nullable @Valid @Nullable @Valid V1DeleteOptions body)
      delete a ResourceQuota
      Parameters:
      name - name of the ResourceQuota (required)
      namespace - object name and auth scope, such as for teams and projects (required)
      pretty - If 'true', then the output is pretty printed. (optional)
      dryRun - When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed (optional)
      gracePeriodSeconds - The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. (optional)
      orphanDependents - 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. (optional)
      propagationPolicy - Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. 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. (optional)
      body - (optional)
      Returns:
      OK (status code 200) or Accepted (status code 202) or Unauthorized (status code 401)
    • deleteNamespacedSecret

      @Delete("/api/v1/namespaces/{namespace}/secrets/{name}") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf"}) V1Status deleteNamespacedSecret(@PathVariable("name") @NotNull @NotNull String name, @PathVariable("namespace") @NotNull @NotNull String namespace, @QueryValue("pretty") @Nullable @Nullable String pretty, @QueryValue("dryRun") @Nullable @Nullable String dryRun, @QueryValue("gracePeriodSeconds") @Nullable @Nullable Integer gracePeriodSeconds, @QueryValue("orphanDependents") @Nullable @Nullable Boolean orphanDependents, @QueryValue("propagationPolicy") @Nullable @Nullable String propagationPolicy, @Body @Nullable @Valid @Nullable @Valid V1DeleteOptions body)
      delete a Secret
      Parameters:
      name - name of the Secret (required)
      namespace - object name and auth scope, such as for teams and projects (required)
      pretty - If 'true', then the output is pretty printed. (optional)
      dryRun - When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed (optional)
      gracePeriodSeconds - The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. (optional)
      orphanDependents - 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. (optional)
      propagationPolicy - Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. 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. (optional)
      body - (optional)
      Returns:
      OK (status code 200) or Accepted (status code 202) or Unauthorized (status code 401)
    • deleteNamespacedService

      @Delete("/api/v1/namespaces/{namespace}/services/{name}") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf"}) V1Service deleteNamespacedService(@PathVariable("name") @NotNull @NotNull String name, @PathVariable("namespace") @NotNull @NotNull String namespace, @QueryValue("pretty") @Nullable @Nullable String pretty, @QueryValue("dryRun") @Nullable @Nullable String dryRun, @QueryValue("gracePeriodSeconds") @Nullable @Nullable Integer gracePeriodSeconds, @QueryValue("orphanDependents") @Nullable @Nullable Boolean orphanDependents, @QueryValue("propagationPolicy") @Nullable @Nullable String propagationPolicy, @Body @Nullable @Valid @Nullable @Valid V1DeleteOptions body)
      delete a Service
      Parameters:
      name - name of the Service (required)
      namespace - object name and auth scope, such as for teams and projects (required)
      pretty - If 'true', then the output is pretty printed. (optional)
      dryRun - When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed (optional)
      gracePeriodSeconds - The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. (optional)
      orphanDependents - 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. (optional)
      propagationPolicy - Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. 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. (optional)
      body - (optional)
      Returns:
      OK (status code 200) or Accepted (status code 202) or Unauthorized (status code 401)
    • deleteNamespacedServiceAccount

      @Delete("/api/v1/namespaces/{namespace}/serviceaccounts/{name}") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf"}) V1ServiceAccount deleteNamespacedServiceAccount(@PathVariable("name") @NotNull @NotNull String name, @PathVariable("namespace") @NotNull @NotNull String namespace, @QueryValue("pretty") @Nullable @Nullable String pretty, @QueryValue("dryRun") @Nullable @Nullable String dryRun, @QueryValue("gracePeriodSeconds") @Nullable @Nullable Integer gracePeriodSeconds, @QueryValue("orphanDependents") @Nullable @Nullable Boolean orphanDependents, @QueryValue("propagationPolicy") @Nullable @Nullable String propagationPolicy, @Body @Nullable @Valid @Nullable @Valid V1DeleteOptions body)
      delete a ServiceAccount
      Parameters:
      name - name of the ServiceAccount (required)
      namespace - object name and auth scope, such as for teams and projects (required)
      pretty - If 'true', then the output is pretty printed. (optional)
      dryRun - When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed (optional)
      gracePeriodSeconds - The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. (optional)
      orphanDependents - 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. (optional)
      propagationPolicy - Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. 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. (optional)
      body - (optional)
      Returns:
      OK (status code 200) or Accepted (status code 202) or Unauthorized (status code 401)
    • deleteNode

      @Delete("/api/v1/nodes/{name}") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf"}) V1Status deleteNode(@PathVariable("name") @NotNull @NotNull String name, @QueryValue("pretty") @Nullable @Nullable String pretty, @QueryValue("dryRun") @Nullable @Nullable String dryRun, @QueryValue("gracePeriodSeconds") @Nullable @Nullable Integer gracePeriodSeconds, @QueryValue("orphanDependents") @Nullable @Nullable Boolean orphanDependents, @QueryValue("propagationPolicy") @Nullable @Nullable String propagationPolicy, @Body @Nullable @Valid @Nullable @Valid V1DeleteOptions body)
      delete a Node
      Parameters:
      name - name of the Node (required)
      pretty - If 'true', then the output is pretty printed. (optional)
      dryRun - When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed (optional)
      gracePeriodSeconds - The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. (optional)
      orphanDependents - 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. (optional)
      propagationPolicy - Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. 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. (optional)
      body - (optional)
      Returns:
      OK (status code 200) or Accepted (status code 202) or Unauthorized (status code 401)
    • deletePersistentVolume

      @Delete("/api/v1/persistentvolumes/{name}") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf"}) V1PersistentVolume deletePersistentVolume(@PathVariable("name") @NotNull @NotNull String name, @QueryValue("pretty") @Nullable @Nullable String pretty, @QueryValue("dryRun") @Nullable @Nullable String dryRun, @QueryValue("gracePeriodSeconds") @Nullable @Nullable Integer gracePeriodSeconds, @QueryValue("orphanDependents") @Nullable @Nullable Boolean orphanDependents, @QueryValue("propagationPolicy") @Nullable @Nullable String propagationPolicy, @Body @Nullable @Valid @Nullable @Valid V1DeleteOptions body)
      delete a PersistentVolume
      Parameters:
      name - name of the PersistentVolume (required)
      pretty - If 'true', then the output is pretty printed. (optional)
      dryRun - When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed (optional)
      gracePeriodSeconds - The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. (optional)
      orphanDependents - 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. (optional)
      propagationPolicy - Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. 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. (optional)
      body - (optional)
      Returns:
      OK (status code 200) or Accepted (status code 202) or Unauthorized (status code 401)
    • getAPIResources

      @Get("/api/v1/") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf"}) V1APIResourceList getAPIResources()
      get available resources
      Returns:
      OK (status code 200) or Unauthorized (status code 401)
    • listComponentStatus

      @Get("/api/v1/componentstatuses") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf","application/json;stream=watch","application/vnd.kubernetes.protobuf;stream=watch"}) V1ComponentStatusList listComponentStatus(@QueryValue("allowWatchBookmarks") @Nullable @Nullable Boolean allowWatchBookmarks, @QueryValue("continue") @Nullable @Nullable String _continue, @QueryValue("fieldSelector") @Nullable @Nullable String fieldSelector, @QueryValue("labelSelector") @Nullable @Nullable String labelSelector, @QueryValue("limit") @Nullable @Nullable Integer limit, @QueryValue("pretty") @Nullable @Nullable String pretty, @QueryValue("resourceVersion") @Nullable @Nullable String resourceVersion, @QueryValue("resourceVersionMatch") @Nullable @Nullable String resourceVersionMatch, @QueryValue("sendInitialEvents") @Nullable @Nullable Boolean sendInitialEvents, @QueryValue("timeoutSeconds") @Nullable @Nullable Integer timeoutSeconds, @QueryValue("watch") @Nullable @Nullable Boolean watch)
      list objects of kind ComponentStatus
      Parameters:
      allowWatchBookmarks - allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. (optional)
      _continue - The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. (optional)
      fieldSelector - A selector to restrict the list of returned objects by their fields. Defaults to everything. (optional)
      labelSelector - A selector to restrict the list of returned objects by their labels. Defaults to everything. (optional)
      limit - limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. (optional)
      pretty - If 'true', then the output is pretty printed. (optional)
      resourceVersion - resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset (optional)
      resourceVersionMatch - resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset (optional)
      sendInitialEvents - `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan is interpreted as \"data at least as new as the provided `resourceVersion`\" and the bookmark event is send when the state is synced to a `resourceVersion` at least as fresh as the one provided by the ListOptions. If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the bookmark event is send when the state is synced at least to the moment when request started being processed. - `resourceVersionMatch` set to any other value or unset Invalid error is returned. Defaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise. (optional)
      timeoutSeconds - Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. (optional)
      watch - Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. (optional)
      Returns:
      OK (status code 200) or Unauthorized (status code 401)
    • listConfigMapForAllNamespaces

      @Get("/api/v1/configmaps") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf","application/json;stream=watch","application/vnd.kubernetes.protobuf;stream=watch"}) V1ConfigMapList listConfigMapForAllNamespaces(@QueryValue("allowWatchBookmarks") @Nullable @Nullable Boolean allowWatchBookmarks, @QueryValue("continue") @Nullable @Nullable String _continue, @QueryValue("fieldSelector") @Nullable @Nullable String fieldSelector, @QueryValue("labelSelector") @Nullable @Nullable String labelSelector, @QueryValue("limit") @Nullable @Nullable Integer limit, @QueryValue("pretty") @Nullable @Nullable String pretty, @QueryValue("resourceVersion") @Nullable @Nullable String resourceVersion, @QueryValue("resourceVersionMatch") @Nullable @Nullable String resourceVersionMatch, @QueryValue("sendInitialEvents") @Nullable @Nullable Boolean sendInitialEvents, @QueryValue("timeoutSeconds") @Nullable @Nullable Integer timeoutSeconds, @QueryValue("watch") @Nullable @Nullable Boolean watch)
      list or watch objects of kind ConfigMap
      Parameters:
      allowWatchBookmarks - allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. (optional)
      _continue - The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. (optional)
      fieldSelector - A selector to restrict the list of returned objects by their fields. Defaults to everything. (optional)
      labelSelector - A selector to restrict the list of returned objects by their labels. Defaults to everything. (optional)
      limit - limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. (optional)
      pretty - If 'true', then the output is pretty printed. (optional)
      resourceVersion - resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset (optional)
      resourceVersionMatch - resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset (optional)
      sendInitialEvents - `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan is interpreted as \"data at least as new as the provided `resourceVersion`\" and the bookmark event is send when the state is synced to a `resourceVersion` at least as fresh as the one provided by the ListOptions. If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the bookmark event is send when the state is synced at least to the moment when request started being processed. - `resourceVersionMatch` set to any other value or unset Invalid error is returned. Defaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise. (optional)
      timeoutSeconds - Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. (optional)
      watch - Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. (optional)
      Returns:
      OK (status code 200) or Unauthorized (status code 401)
    • listEndpointsForAllNamespaces

      @Get("/api/v1/endpoints") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf","application/json;stream=watch","application/vnd.kubernetes.protobuf;stream=watch"}) V1EndpointsList listEndpointsForAllNamespaces(@QueryValue("allowWatchBookmarks") @Nullable @Nullable Boolean allowWatchBookmarks, @QueryValue("continue") @Nullable @Nullable String _continue, @QueryValue("fieldSelector") @Nullable @Nullable String fieldSelector, @QueryValue("labelSelector") @Nullable @Nullable String labelSelector, @QueryValue("limit") @Nullable @Nullable Integer limit, @QueryValue("pretty") @Nullable @Nullable String pretty, @QueryValue("resourceVersion") @Nullable @Nullable String resourceVersion, @QueryValue("resourceVersionMatch") @Nullable @Nullable String resourceVersionMatch, @QueryValue("sendInitialEvents") @Nullable @Nullable Boolean sendInitialEvents, @QueryValue("timeoutSeconds") @Nullable @Nullable Integer timeoutSeconds, @QueryValue("watch") @Nullable @Nullable Boolean watch)
      list or watch objects of kind Endpoints
      Parameters:
      allowWatchBookmarks - allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. (optional)
      _continue - The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. (optional)
      fieldSelector - A selector to restrict the list of returned objects by their fields. Defaults to everything. (optional)
      labelSelector - A selector to restrict the list of returned objects by their labels. Defaults to everything. (optional)
      limit - limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. (optional)
      pretty - If 'true', then the output is pretty printed. (optional)
      resourceVersion - resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset (optional)
      resourceVersionMatch - resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset (optional)
      sendInitialEvents - `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan is interpreted as \"data at least as new as the provided `resourceVersion`\" and the bookmark event is send when the state is synced to a `resourceVersion` at least as fresh as the one provided by the ListOptions. If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the bookmark event is send when the state is synced at least to the moment when request started being processed. - `resourceVersionMatch` set to any other value or unset Invalid error is returned. Defaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise. (optional)
      timeoutSeconds - Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. (optional)
      watch - Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. (optional)
      Returns:
      OK (status code 200) or Unauthorized (status code 401)
    • listEventForAllNamespaces

      @Get("/api/v1/events") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf","application/json;stream=watch","application/vnd.kubernetes.protobuf;stream=watch"}) CoreV1EventList listEventForAllNamespaces(@QueryValue("allowWatchBookmarks") @Nullable @Nullable Boolean allowWatchBookmarks, @QueryValue("continue") @Nullable @Nullable String _continue, @QueryValue("fieldSelector") @Nullable @Nullable String fieldSelector, @QueryValue("labelSelector") @Nullable @Nullable String labelSelector, @QueryValue("limit") @Nullable @Nullable Integer limit, @QueryValue("pretty") @Nullable @Nullable String pretty, @QueryValue("resourceVersion") @Nullable @Nullable String resourceVersion, @QueryValue("resourceVersionMatch") @Nullable @Nullable String resourceVersionMatch, @QueryValue("sendInitialEvents") @Nullable @Nullable Boolean sendInitialEvents, @QueryValue("timeoutSeconds") @Nullable @Nullable Integer timeoutSeconds, @QueryValue("watch") @Nullable @Nullable Boolean watch)
      list or watch objects of kind Event
      Parameters:
      allowWatchBookmarks - allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. (optional)
      _continue - The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. (optional)
      fieldSelector - A selector to restrict the list of returned objects by their fields. Defaults to everything. (optional)
      labelSelector - A selector to restrict the list of returned objects by their labels. Defaults to everything. (optional)
      limit - limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. (optional)
      pretty - If 'true', then the output is pretty printed. (optional)
      resourceVersion - resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset (optional)
      resourceVersionMatch - resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset (optional)
      sendInitialEvents - `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan is interpreted as \"data at least as new as the provided `resourceVersion`\" and the bookmark event is send when the state is synced to a `resourceVersion` at least as fresh as the one provided by the ListOptions. If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the bookmark event is send when the state is synced at least to the moment when request started being processed. - `resourceVersionMatch` set to any other value or unset Invalid error is returned. Defaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise. (optional)
      timeoutSeconds - Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. (optional)
      watch - Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. (optional)
      Returns:
      OK (status code 200) or Unauthorized (status code 401)
    • listLimitRangeForAllNamespaces

      @Get("/api/v1/limitranges") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf","application/json;stream=watch","application/vnd.kubernetes.protobuf;stream=watch"}) V1LimitRangeList listLimitRangeForAllNamespaces(@QueryValue("allowWatchBookmarks") @Nullable @Nullable Boolean allowWatchBookmarks, @QueryValue("continue") @Nullable @Nullable String _continue, @QueryValue("fieldSelector") @Nullable @Nullable String fieldSelector, @QueryValue("labelSelector") @Nullable @Nullable String labelSelector, @QueryValue("limit") @Nullable @Nullable Integer limit, @QueryValue("pretty") @Nullable @Nullable String pretty, @QueryValue("resourceVersion") @Nullable @Nullable String resourceVersion, @QueryValue("resourceVersionMatch") @Nullable @Nullable String resourceVersionMatch, @QueryValue("sendInitialEvents") @Nullable @Nullable Boolean sendInitialEvents, @QueryValue("timeoutSeconds") @Nullable @Nullable Integer timeoutSeconds, @QueryValue("watch") @Nullable @Nullable Boolean watch)
      list or watch objects of kind LimitRange
      Parameters:
      allowWatchBookmarks - allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. (optional)
      _continue - The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. (optional)
      fieldSelector - A selector to restrict the list of returned objects by their fields. Defaults to everything. (optional)
      labelSelector - A selector to restrict the list of returned objects by their labels. Defaults to everything. (optional)
      limit - limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. (optional)
      pretty - If 'true', then the output is pretty printed. (optional)
      resourceVersion - resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset (optional)
      resourceVersionMatch - resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset (optional)
      sendInitialEvents - `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan is interpreted as \"data at least as new as the provided `resourceVersion`\" and the bookmark event is send when the state is synced to a `resourceVersion` at least as fresh as the one provided by the ListOptions. If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the bookmark event is send when the state is synced at least to the moment when request started being processed. - `resourceVersionMatch` set to any other value or unset Invalid error is returned. Defaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise. (optional)
      timeoutSeconds - Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. (optional)
      watch - Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. (optional)
      Returns:
      OK (status code 200) or Unauthorized (status code 401)
    • listNamespace

      @Get("/api/v1/namespaces") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf","application/json;stream=watch","application/vnd.kubernetes.protobuf;stream=watch"}) V1NamespaceList listNamespace(@QueryValue("pretty") @Nullable @Nullable String pretty, @QueryValue("allowWatchBookmarks") @Nullable @Nullable Boolean allowWatchBookmarks, @QueryValue("continue") @Nullable @Nullable String _continue, @QueryValue("fieldSelector") @Nullable @Nullable String fieldSelector, @QueryValue("labelSelector") @Nullable @Nullable String labelSelector, @QueryValue("limit") @Nullable @Nullable Integer limit, @QueryValue("resourceVersion") @Nullable @Nullable String resourceVersion, @QueryValue("resourceVersionMatch") @Nullable @Nullable String resourceVersionMatch, @QueryValue("sendInitialEvents") @Nullable @Nullable Boolean sendInitialEvents, @QueryValue("timeoutSeconds") @Nullable @Nullable Integer timeoutSeconds, @QueryValue("watch") @Nullable @Nullable Boolean watch)
      list or watch objects of kind Namespace
      Parameters:
      pretty - If 'true', then the output is pretty printed. (optional)
      allowWatchBookmarks - allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. (optional)
      _continue - The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. (optional)
      fieldSelector - A selector to restrict the list of returned objects by their fields. Defaults to everything. (optional)
      labelSelector - A selector to restrict the list of returned objects by their labels. Defaults to everything. (optional)
      limit - limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. (optional)
      resourceVersion - resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset (optional)
      resourceVersionMatch - resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset (optional)
      sendInitialEvents - `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan is interpreted as \"data at least as new as the provided `resourceVersion`\" and the bookmark event is send when the state is synced to a `resourceVersion` at least as fresh as the one provided by the ListOptions. If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the bookmark event is send when the state is synced at least to the moment when request started being processed. - `resourceVersionMatch` set to any other value or unset Invalid error is returned. Defaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise. (optional)
      timeoutSeconds - Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. (optional)
      watch - Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. (optional)
      Returns:
      OK (status code 200) or Unauthorized (status code 401)
    • listNamespacedConfigMap

      @Get("/api/v1/namespaces/{namespace}/configmaps") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf","application/json;stream=watch","application/vnd.kubernetes.protobuf;stream=watch"}) V1ConfigMapList listNamespacedConfigMap(@PathVariable("namespace") @NotNull @NotNull String namespace, @QueryValue("pretty") @Nullable @Nullable String pretty, @QueryValue("allowWatchBookmarks") @Nullable @Nullable Boolean allowWatchBookmarks, @QueryValue("continue") @Nullable @Nullable String _continue, @QueryValue("fieldSelector") @Nullable @Nullable String fieldSelector, @QueryValue("labelSelector") @Nullable @Nullable String labelSelector, @QueryValue("limit") @Nullable @Nullable Integer limit, @QueryValue("resourceVersion") @Nullable @Nullable String resourceVersion, @QueryValue("resourceVersionMatch") @Nullable @Nullable String resourceVersionMatch, @QueryValue("sendInitialEvents") @Nullable @Nullable Boolean sendInitialEvents, @QueryValue("timeoutSeconds") @Nullable @Nullable Integer timeoutSeconds, @QueryValue("watch") @Nullable @Nullable Boolean watch)
      list or watch objects of kind ConfigMap
      Parameters:
      namespace - object name and auth scope, such as for teams and projects (required)
      pretty - If 'true', then the output is pretty printed. (optional)
      allowWatchBookmarks - allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. (optional)
      _continue - The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. (optional)
      fieldSelector - A selector to restrict the list of returned objects by their fields. Defaults to everything. (optional)
      labelSelector - A selector to restrict the list of returned objects by their labels. Defaults to everything. (optional)
      limit - limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. (optional)
      resourceVersion - resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset (optional)
      resourceVersionMatch - resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset (optional)
      sendInitialEvents - `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan is interpreted as \"data at least as new as the provided `resourceVersion`\" and the bookmark event is send when the state is synced to a `resourceVersion` at least as fresh as the one provided by the ListOptions. If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the bookmark event is send when the state is synced at least to the moment when request started being processed. - `resourceVersionMatch` set to any other value or unset Invalid error is returned. Defaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise. (optional)
      timeoutSeconds - Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. (optional)
      watch - Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. (optional)
      Returns:
      OK (status code 200) or Unauthorized (status code 401)
    • listNamespacedEndpoints

      @Get("/api/v1/namespaces/{namespace}/endpoints") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf","application/json;stream=watch","application/vnd.kubernetes.protobuf;stream=watch"}) V1EndpointsList listNamespacedEndpoints(@PathVariable("namespace") @NotNull @NotNull String namespace, @QueryValue("pretty") @Nullable @Nullable String pretty, @QueryValue("allowWatchBookmarks") @Nullable @Nullable Boolean allowWatchBookmarks, @QueryValue("continue") @Nullable @Nullable String _continue, @QueryValue("fieldSelector") @Nullable @Nullable String fieldSelector, @QueryValue("labelSelector") @Nullable @Nullable String labelSelector, @QueryValue("limit") @Nullable @Nullable Integer limit, @QueryValue("resourceVersion") @Nullable @Nullable String resourceVersion, @QueryValue("resourceVersionMatch") @Nullable @Nullable String resourceVersionMatch, @QueryValue("sendInitialEvents") @Nullable @Nullable Boolean sendInitialEvents, @QueryValue("timeoutSeconds") @Nullable @Nullable Integer timeoutSeconds, @QueryValue("watch") @Nullable @Nullable Boolean watch)
      list or watch objects of kind Endpoints
      Parameters:
      namespace - object name and auth scope, such as for teams and projects (required)
      pretty - If 'true', then the output is pretty printed. (optional)
      allowWatchBookmarks - allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. (optional)
      _continue - The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. (optional)
      fieldSelector - A selector to restrict the list of returned objects by their fields. Defaults to everything. (optional)
      labelSelector - A selector to restrict the list of returned objects by their labels. Defaults to everything. (optional)
      limit - limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. (optional)
      resourceVersion - resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset (optional)
      resourceVersionMatch - resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset (optional)
      sendInitialEvents - `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan is interpreted as \"data at least as new as the provided `resourceVersion`\" and the bookmark event is send when the state is synced to a `resourceVersion` at least as fresh as the one provided by the ListOptions. If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the bookmark event is send when the state is synced at least to the moment when request started being processed. - `resourceVersionMatch` set to any other value or unset Invalid error is returned. Defaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise. (optional)
      timeoutSeconds - Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. (optional)
      watch - Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. (optional)
      Returns:
      OK (status code 200) or Unauthorized (status code 401)
    • listNamespacedEvent

      @Get("/api/v1/namespaces/{namespace}/events") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf","application/json;stream=watch","application/vnd.kubernetes.protobuf;stream=watch"}) CoreV1EventList listNamespacedEvent(@PathVariable("namespace") @NotNull @NotNull String namespace, @QueryValue("pretty") @Nullable @Nullable String pretty, @QueryValue("allowWatchBookmarks") @Nullable @Nullable Boolean allowWatchBookmarks, @QueryValue("continue") @Nullable @Nullable String _continue, @QueryValue("fieldSelector") @Nullable @Nullable String fieldSelector, @QueryValue("labelSelector") @Nullable @Nullable String labelSelector, @QueryValue("limit") @Nullable @Nullable Integer limit, @QueryValue("resourceVersion") @Nullable @Nullable String resourceVersion, @QueryValue("resourceVersionMatch") @Nullable @Nullable String resourceVersionMatch, @QueryValue("sendInitialEvents") @Nullable @Nullable Boolean sendInitialEvents, @QueryValue("timeoutSeconds") @Nullable @Nullable Integer timeoutSeconds, @QueryValue("watch") @Nullable @Nullable Boolean watch)
      list or watch objects of kind Event
      Parameters:
      namespace - object name and auth scope, such as for teams and projects (required)
      pretty - If 'true', then the output is pretty printed. (optional)
      allowWatchBookmarks - allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. (optional)
      _continue - The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. (optional)
      fieldSelector - A selector to restrict the list of returned objects by their fields. Defaults to everything. (optional)
      labelSelector - A selector to restrict the list of returned objects by their labels. Defaults to everything. (optional)
      limit - limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. (optional)
      resourceVersion - resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset (optional)
      resourceVersionMatch - resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset (optional)
      sendInitialEvents - `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan is interpreted as \"data at least as new as the provided `resourceVersion`\" and the bookmark event is send when the state is synced to a `resourceVersion` at least as fresh as the one provided by the ListOptions. If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the bookmark event is send when the state is synced at least to the moment when request started being processed. - `resourceVersionMatch` set to any other value or unset Invalid error is returned. Defaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise. (optional)
      timeoutSeconds - Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. (optional)
      watch - Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. (optional)
      Returns:
      OK (status code 200) or Unauthorized (status code 401)
    • listNamespacedLimitRange

      @Get("/api/v1/namespaces/{namespace}/limitranges") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf","application/json;stream=watch","application/vnd.kubernetes.protobuf;stream=watch"}) V1LimitRangeList listNamespacedLimitRange(@PathVariable("namespace") @NotNull @NotNull String namespace, @QueryValue("pretty") @Nullable @Nullable String pretty, @QueryValue("allowWatchBookmarks") @Nullable @Nullable Boolean allowWatchBookmarks, @QueryValue("continue") @Nullable @Nullable String _continue, @QueryValue("fieldSelector") @Nullable @Nullable String fieldSelector, @QueryValue("labelSelector") @Nullable @Nullable String labelSelector, @QueryValue("limit") @Nullable @Nullable Integer limit, @QueryValue("resourceVersion") @Nullable @Nullable String resourceVersion, @QueryValue("resourceVersionMatch") @Nullable @Nullable String resourceVersionMatch, @QueryValue("sendInitialEvents") @Nullable @Nullable Boolean sendInitialEvents, @QueryValue("timeoutSeconds") @Nullable @Nullable Integer timeoutSeconds, @QueryValue("watch") @Nullable @Nullable Boolean watch)
      list or watch objects of kind LimitRange
      Parameters:
      namespace - object name and auth scope, such as for teams and projects (required)
      pretty - If 'true', then the output is pretty printed. (optional)
      allowWatchBookmarks - allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. (optional)
      _continue - The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. (optional)
      fieldSelector - A selector to restrict the list of returned objects by their fields. Defaults to everything. (optional)
      labelSelector - A selector to restrict the list of returned objects by their labels. Defaults to everything. (optional)
      limit - limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. (optional)
      resourceVersion - resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset (optional)
      resourceVersionMatch - resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset (optional)
      sendInitialEvents - `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan is interpreted as \"data at least as new as the provided `resourceVersion`\" and the bookmark event is send when the state is synced to a `resourceVersion` at least as fresh as the one provided by the ListOptions. If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the bookmark event is send when the state is synced at least to the moment when request started being processed. - `resourceVersionMatch` set to any other value or unset Invalid error is returned. Defaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise. (optional)
      timeoutSeconds - Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. (optional)
      watch - Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. (optional)
      Returns:
      OK (status code 200) or Unauthorized (status code 401)
    • listNamespacedPersistentVolumeClaim

      @Get("/api/v1/namespaces/{namespace}/persistentvolumeclaims") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf","application/json;stream=watch","application/vnd.kubernetes.protobuf;stream=watch"}) V1PersistentVolumeClaimList listNamespacedPersistentVolumeClaim(@PathVariable("namespace") @NotNull @NotNull String namespace, @QueryValue("pretty") @Nullable @Nullable String pretty, @QueryValue("allowWatchBookmarks") @Nullable @Nullable Boolean allowWatchBookmarks, @QueryValue("continue") @Nullable @Nullable String _continue, @QueryValue("fieldSelector") @Nullable @Nullable String fieldSelector, @QueryValue("labelSelector") @Nullable @Nullable String labelSelector, @QueryValue("limit") @Nullable @Nullable Integer limit, @QueryValue("resourceVersion") @Nullable @Nullable String resourceVersion, @QueryValue("resourceVersionMatch") @Nullable @Nullable String resourceVersionMatch, @QueryValue("sendInitialEvents") @Nullable @Nullable Boolean sendInitialEvents, @QueryValue("timeoutSeconds") @Nullable @Nullable Integer timeoutSeconds, @QueryValue("watch") @Nullable @Nullable Boolean watch)
      list or watch objects of kind PersistentVolumeClaim
      Parameters:
      namespace - object name and auth scope, such as for teams and projects (required)
      pretty - If 'true', then the output is pretty printed. (optional)
      allowWatchBookmarks - allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. (optional)
      _continue - The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. (optional)
      fieldSelector - A selector to restrict the list of returned objects by their fields. Defaults to everything. (optional)
      labelSelector - A selector to restrict the list of returned objects by their labels. Defaults to everything. (optional)
      limit - limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. (optional)
      resourceVersion - resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset (optional)
      resourceVersionMatch - resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset (optional)
      sendInitialEvents - `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan is interpreted as \"data at least as new as the provided `resourceVersion`\" and the bookmark event is send when the state is synced to a `resourceVersion` at least as fresh as the one provided by the ListOptions. If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the bookmark event is send when the state is synced at least to the moment when request started being processed. - `resourceVersionMatch` set to any other value or unset Invalid error is returned. Defaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise. (optional)
      timeoutSeconds - Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. (optional)
      watch - Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. (optional)
      Returns:
      OK (status code 200) or Unauthorized (status code 401)
    • listNamespacedPod

      @Get("/api/v1/namespaces/{namespace}/pods") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf","application/json;stream=watch","application/vnd.kubernetes.protobuf;stream=watch"}) V1PodList listNamespacedPod(@PathVariable("namespace") @NotNull @NotNull String namespace, @QueryValue("pretty") @Nullable @Nullable String pretty, @QueryValue("allowWatchBookmarks") @Nullable @Nullable Boolean allowWatchBookmarks, @QueryValue("continue") @Nullable @Nullable String _continue, @QueryValue("fieldSelector") @Nullable @Nullable String fieldSelector, @QueryValue("labelSelector") @Nullable @Nullable String labelSelector, @QueryValue("limit") @Nullable @Nullable Integer limit, @QueryValue("resourceVersion") @Nullable @Nullable String resourceVersion, @QueryValue("resourceVersionMatch") @Nullable @Nullable String resourceVersionMatch, @QueryValue("sendInitialEvents") @Nullable @Nullable Boolean sendInitialEvents, @QueryValue("timeoutSeconds") @Nullable @Nullable Integer timeoutSeconds, @QueryValue("watch") @Nullable @Nullable Boolean watch)
      list or watch objects of kind Pod
      Parameters:
      namespace - object name and auth scope, such as for teams and projects (required)
      pretty - If 'true', then the output is pretty printed. (optional)
      allowWatchBookmarks - allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. (optional)
      _continue - The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. (optional)
      fieldSelector - A selector to restrict the list of returned objects by their fields. Defaults to everything. (optional)
      labelSelector - A selector to restrict the list of returned objects by their labels. Defaults to everything. (optional)
      limit - limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. (optional)
      resourceVersion - resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset (optional)
      resourceVersionMatch - resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset (optional)
      sendInitialEvents - `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan is interpreted as \"data at least as new as the provided `resourceVersion`\" and the bookmark event is send when the state is synced to a `resourceVersion` at least as fresh as the one provided by the ListOptions. If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the bookmark event is send when the state is synced at least to the moment when request started being processed. - `resourceVersionMatch` set to any other value or unset Invalid error is returned. Defaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise. (optional)
      timeoutSeconds - Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. (optional)
      watch - Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. (optional)
      Returns:
      OK (status code 200) or Unauthorized (status code 401)
    • listNamespacedPodTemplate

      @Get("/api/v1/namespaces/{namespace}/podtemplates") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf","application/json;stream=watch","application/vnd.kubernetes.protobuf;stream=watch"}) V1PodTemplateList listNamespacedPodTemplate(@PathVariable("namespace") @NotNull @NotNull String namespace, @QueryValue("pretty") @Nullable @Nullable String pretty, @QueryValue("allowWatchBookmarks") @Nullable @Nullable Boolean allowWatchBookmarks, @QueryValue("continue") @Nullable @Nullable String _continue, @QueryValue("fieldSelector") @Nullable @Nullable String fieldSelector, @QueryValue("labelSelector") @Nullable @Nullable String labelSelector, @QueryValue("limit") @Nullable @Nullable Integer limit, @QueryValue("resourceVersion") @Nullable @Nullable String resourceVersion, @QueryValue("resourceVersionMatch") @Nullable @Nullable String resourceVersionMatch, @QueryValue("sendInitialEvents") @Nullable @Nullable Boolean sendInitialEvents, @QueryValue("timeoutSeconds") @Nullable @Nullable Integer timeoutSeconds, @QueryValue("watch") @Nullable @Nullable Boolean watch)
      list or watch objects of kind PodTemplate
      Parameters:
      namespace - object name and auth scope, such as for teams and projects (required)
      pretty - If 'true', then the output is pretty printed. (optional)
      allowWatchBookmarks - allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. (optional)
      _continue - The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. (optional)
      fieldSelector - A selector to restrict the list of returned objects by their fields. Defaults to everything. (optional)
      labelSelector - A selector to restrict the list of returned objects by their labels. Defaults to everything. (optional)
      limit - limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. (optional)
      resourceVersion - resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset (optional)
      resourceVersionMatch - resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset (optional)
      sendInitialEvents - `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan is interpreted as \"data at least as new as the provided `resourceVersion`\" and the bookmark event is send when the state is synced to a `resourceVersion` at least as fresh as the one provided by the ListOptions. If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the bookmark event is send when the state is synced at least to the moment when request started being processed. - `resourceVersionMatch` set to any other value or unset Invalid error is returned. Defaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise. (optional)
      timeoutSeconds - Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. (optional)
      watch - Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. (optional)
      Returns:
      OK (status code 200) or Unauthorized (status code 401)
    • listNamespacedReplicationController

      @Get("/api/v1/namespaces/{namespace}/replicationcontrollers") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf","application/json;stream=watch","application/vnd.kubernetes.protobuf;stream=watch"}) V1ReplicationControllerList listNamespacedReplicationController(@PathVariable("namespace") @NotNull @NotNull String namespace, @QueryValue("pretty") @Nullable @Nullable String pretty, @QueryValue("allowWatchBookmarks") @Nullable @Nullable Boolean allowWatchBookmarks, @QueryValue("continue") @Nullable @Nullable String _continue, @QueryValue("fieldSelector") @Nullable @Nullable String fieldSelector, @QueryValue("labelSelector") @Nullable @Nullable String labelSelector, @QueryValue("limit") @Nullable @Nullable Integer limit, @QueryValue("resourceVersion") @Nullable @Nullable String resourceVersion, @QueryValue("resourceVersionMatch") @Nullable @Nullable String resourceVersionMatch, @QueryValue("sendInitialEvents") @Nullable @Nullable Boolean sendInitialEvents, @QueryValue("timeoutSeconds") @Nullable @Nullable Integer timeoutSeconds, @QueryValue("watch") @Nullable @Nullable Boolean watch)
      list or watch objects of kind ReplicationController
      Parameters:
      namespace - object name and auth scope, such as for teams and projects (required)
      pretty - If 'true', then the output is pretty printed. (optional)
      allowWatchBookmarks - allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. (optional)
      _continue - The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. (optional)
      fieldSelector - A selector to restrict the list of returned objects by their fields. Defaults to everything. (optional)
      labelSelector - A selector to restrict the list of returned objects by their labels. Defaults to everything. (optional)
      limit - limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. (optional)
      resourceVersion - resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset (optional)
      resourceVersionMatch - resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset (optional)
      sendInitialEvents - `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan is interpreted as \"data at least as new as the provided `resourceVersion`\" and the bookmark event is send when the state is synced to a `resourceVersion` at least as fresh as the one provided by the ListOptions. If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the bookmark event is send when the state is synced at least to the moment when request started being processed. - `resourceVersionMatch` set to any other value or unset Invalid error is returned. Defaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise. (optional)
      timeoutSeconds - Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. (optional)
      watch - Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. (optional)
      Returns:
      OK (status code 200) or Unauthorized (status code 401)
    • listNamespacedResourceQuota

      @Get("/api/v1/namespaces/{namespace}/resourcequotas") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf","application/json;stream=watch","application/vnd.kubernetes.protobuf;stream=watch"}) V1ResourceQuotaList listNamespacedResourceQuota(@PathVariable("namespace") @NotNull @NotNull String namespace, @QueryValue("pretty") @Nullable @Nullable String pretty, @QueryValue("allowWatchBookmarks") @Nullable @Nullable Boolean allowWatchBookmarks, @QueryValue("continue") @Nullable @Nullable String _continue, @QueryValue("fieldSelector") @Nullable @Nullable String fieldSelector, @QueryValue("labelSelector") @Nullable @Nullable String labelSelector, @QueryValue("limit") @Nullable @Nullable Integer limit, @QueryValue("resourceVersion") @Nullable @Nullable String resourceVersion, @QueryValue("resourceVersionMatch") @Nullable @Nullable String resourceVersionMatch, @QueryValue("sendInitialEvents") @Nullable @Nullable Boolean sendInitialEvents, @QueryValue("timeoutSeconds") @Nullable @Nullable Integer timeoutSeconds, @QueryValue("watch") @Nullable @Nullable Boolean watch)
      list or watch objects of kind ResourceQuota
      Parameters:
      namespace - object name and auth scope, such as for teams and projects (required)
      pretty - If 'true', then the output is pretty printed. (optional)
      allowWatchBookmarks - allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. (optional)
      _continue - The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. (optional)
      fieldSelector - A selector to restrict the list of returned objects by their fields. Defaults to everything. (optional)
      labelSelector - A selector to restrict the list of returned objects by their labels. Defaults to everything. (optional)
      limit - limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. (optional)
      resourceVersion - resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset (optional)
      resourceVersionMatch - resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset (optional)
      sendInitialEvents - `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan is interpreted as \"data at least as new as the provided `resourceVersion`\" and the bookmark event is send when the state is synced to a `resourceVersion` at least as fresh as the one provided by the ListOptions. If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the bookmark event is send when the state is synced at least to the moment when request started being processed. - `resourceVersionMatch` set to any other value or unset Invalid error is returned. Defaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise. (optional)
      timeoutSeconds - Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. (optional)
      watch - Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. (optional)
      Returns:
      OK (status code 200) or Unauthorized (status code 401)
    • listNamespacedSecret

      @Get("/api/v1/namespaces/{namespace}/secrets") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf","application/json;stream=watch","application/vnd.kubernetes.protobuf;stream=watch"}) V1SecretList listNamespacedSecret(@PathVariable("namespace") @NotNull @NotNull String namespace, @QueryValue("pretty") @Nullable @Nullable String pretty, @QueryValue("allowWatchBookmarks") @Nullable @Nullable Boolean allowWatchBookmarks, @QueryValue("continue") @Nullable @Nullable String _continue, @QueryValue("fieldSelector") @Nullable @Nullable String fieldSelector, @QueryValue("labelSelector") @Nullable @Nullable String labelSelector, @QueryValue("limit") @Nullable @Nullable Integer limit, @QueryValue("resourceVersion") @Nullable @Nullable String resourceVersion, @QueryValue("resourceVersionMatch") @Nullable @Nullable String resourceVersionMatch, @QueryValue("sendInitialEvents") @Nullable @Nullable Boolean sendInitialEvents, @QueryValue("timeoutSeconds") @Nullable @Nullable Integer timeoutSeconds, @QueryValue("watch") @Nullable @Nullable Boolean watch)
      list or watch objects of kind Secret
      Parameters:
      namespace - object name and auth scope, such as for teams and projects (required)
      pretty - If 'true', then the output is pretty printed. (optional)
      allowWatchBookmarks - allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. (optional)
      _continue - The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. (optional)
      fieldSelector - A selector to restrict the list of returned objects by their fields. Defaults to everything. (optional)
      labelSelector - A selector to restrict the list of returned objects by their labels. Defaults to everything. (optional)
      limit - limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. (optional)
      resourceVersion - resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset (optional)
      resourceVersionMatch - resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset (optional)
      sendInitialEvents - `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan is interpreted as \"data at least as new as the provided `resourceVersion`\" and the bookmark event is send when the state is synced to a `resourceVersion` at least as fresh as the one provided by the ListOptions. If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the bookmark event is send when the state is synced at least to the moment when request started being processed. - `resourceVersionMatch` set to any other value or unset Invalid error is returned. Defaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise. (optional)
      timeoutSeconds - Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. (optional)
      watch - Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. (optional)
      Returns:
      OK (status code 200) or Unauthorized (status code 401)
    • listNamespacedService

      @Get("/api/v1/namespaces/{namespace}/services") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf","application/json;stream=watch","application/vnd.kubernetes.protobuf;stream=watch"}) V1ServiceList listNamespacedService(@PathVariable("namespace") @NotNull @NotNull String namespace, @QueryValue("pretty") @Nullable @Nullable String pretty, @QueryValue("allowWatchBookmarks") @Nullable @Nullable Boolean allowWatchBookmarks, @QueryValue("continue") @Nullable @Nullable String _continue, @QueryValue("fieldSelector") @Nullable @Nullable String fieldSelector, @QueryValue("labelSelector") @Nullable @Nullable String labelSelector, @QueryValue("limit") @Nullable @Nullable Integer limit, @QueryValue("resourceVersion") @Nullable @Nullable String resourceVersion, @QueryValue("resourceVersionMatch") @Nullable @Nullable String resourceVersionMatch, @QueryValue("sendInitialEvents") @Nullable @Nullable Boolean sendInitialEvents, @QueryValue("timeoutSeconds") @Nullable @Nullable Integer timeoutSeconds, @QueryValue("watch") @Nullable @Nullable Boolean watch)
      list or watch objects of kind Service
      Parameters:
      namespace - object name and auth scope, such as for teams and projects (required)
      pretty - If 'true', then the output is pretty printed. (optional)
      allowWatchBookmarks - allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. (optional)
      _continue - The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. (optional)
      fieldSelector - A selector to restrict the list of returned objects by their fields. Defaults to everything. (optional)
      labelSelector - A selector to restrict the list of returned objects by their labels. Defaults to everything. (optional)
      limit - limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. (optional)
      resourceVersion - resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset (optional)
      resourceVersionMatch - resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset (optional)
      sendInitialEvents - `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan is interpreted as \"data at least as new as the provided `resourceVersion`\" and the bookmark event is send when the state is synced to a `resourceVersion` at least as fresh as the one provided by the ListOptions. If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the bookmark event is send when the state is synced at least to the moment when request started being processed. - `resourceVersionMatch` set to any other value or unset Invalid error is returned. Defaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise. (optional)
      timeoutSeconds - Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. (optional)
      watch - Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. (optional)
      Returns:
      OK (status code 200) or Unauthorized (status code 401)
    • listNamespacedServiceAccount

      @Get("/api/v1/namespaces/{namespace}/serviceaccounts") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf","application/json;stream=watch","application/vnd.kubernetes.protobuf;stream=watch"}) V1ServiceAccountList listNamespacedServiceAccount(@PathVariable("namespace") @NotNull @NotNull String namespace, @QueryValue("pretty") @Nullable @Nullable String pretty, @QueryValue("allowWatchBookmarks") @Nullable @Nullable Boolean allowWatchBookmarks, @QueryValue("continue") @Nullable @Nullable String _continue, @QueryValue("fieldSelector") @Nullable @Nullable String fieldSelector, @QueryValue("labelSelector") @Nullable @Nullable String labelSelector, @QueryValue("limit") @Nullable @Nullable Integer limit, @QueryValue("resourceVersion") @Nullable @Nullable String resourceVersion, @QueryValue("resourceVersionMatch") @Nullable @Nullable String resourceVersionMatch, @QueryValue("sendInitialEvents") @Nullable @Nullable Boolean sendInitialEvents, @QueryValue("timeoutSeconds") @Nullable @Nullable Integer timeoutSeconds, @QueryValue("watch") @Nullable @Nullable Boolean watch)
      list or watch objects of kind ServiceAccount
      Parameters:
      namespace - object name and auth scope, such as for teams and projects (required)
      pretty - If 'true', then the output is pretty printed. (optional)
      allowWatchBookmarks - allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. (optional)
      _continue - The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. (optional)
      fieldSelector - A selector to restrict the list of returned objects by their fields. Defaults to everything. (optional)
      labelSelector - A selector to restrict the list of returned objects by their labels. Defaults to everything. (optional)
      limit - limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. (optional)
      resourceVersion - resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset (optional)
      resourceVersionMatch - resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset (optional)
      sendInitialEvents - `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan is interpreted as \"data at least as new as the provided `resourceVersion`\" and the bookmark event is send when the state is synced to a `resourceVersion` at least as fresh as the one provided by the ListOptions. If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the bookmark event is send when the state is synced at least to the moment when request started being processed. - `resourceVersionMatch` set to any other value or unset Invalid error is returned. Defaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise. (optional)
      timeoutSeconds - Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. (optional)
      watch - Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. (optional)
      Returns:
      OK (status code 200) or Unauthorized (status code 401)
    • listNode

      @Get("/api/v1/nodes") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf","application/json;stream=watch","application/vnd.kubernetes.protobuf;stream=watch"}) V1NodeList listNode(@QueryValue("pretty") @Nullable @Nullable String pretty, @QueryValue("allowWatchBookmarks") @Nullable @Nullable Boolean allowWatchBookmarks, @QueryValue("continue") @Nullable @Nullable String _continue, @QueryValue("fieldSelector") @Nullable @Nullable String fieldSelector, @QueryValue("labelSelector") @Nullable @Nullable String labelSelector, @QueryValue("limit") @Nullable @Nullable Integer limit, @QueryValue("resourceVersion") @Nullable @Nullable String resourceVersion, @QueryValue("resourceVersionMatch") @Nullable @Nullable String resourceVersionMatch, @QueryValue("sendInitialEvents") @Nullable @Nullable Boolean sendInitialEvents, @QueryValue("timeoutSeconds") @Nullable @Nullable Integer timeoutSeconds, @QueryValue("watch") @Nullable @Nullable Boolean watch)
      list or watch objects of kind Node
      Parameters:
      pretty - If 'true', then the output is pretty printed. (optional)
      allowWatchBookmarks - allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. (optional)
      _continue - The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. (optional)
      fieldSelector - A selector to restrict the list of returned objects by their fields. Defaults to everything. (optional)
      labelSelector - A selector to restrict the list of returned objects by their labels. Defaults to everything. (optional)
      limit - limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. (optional)
      resourceVersion - resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset (optional)
      resourceVersionMatch - resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset (optional)
      sendInitialEvents - `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan is interpreted as \"data at least as new as the provided `resourceVersion`\" and the bookmark event is send when the state is synced to a `resourceVersion` at least as fresh as the one provided by the ListOptions. If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the bookmark event is send when the state is synced at least to the moment when request started being processed. - `resourceVersionMatch` set to any other value or unset Invalid error is returned. Defaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise. (optional)
      timeoutSeconds - Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. (optional)
      watch - Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. (optional)
      Returns:
      OK (status code 200) or Unauthorized (status code 401)
    • listPersistentVolume

      @Get("/api/v1/persistentvolumes") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf","application/json;stream=watch","application/vnd.kubernetes.protobuf;stream=watch"}) V1PersistentVolumeList listPersistentVolume(@QueryValue("pretty") @Nullable @Nullable String pretty, @QueryValue("allowWatchBookmarks") @Nullable @Nullable Boolean allowWatchBookmarks, @QueryValue("continue") @Nullable @Nullable String _continue, @QueryValue("fieldSelector") @Nullable @Nullable String fieldSelector, @QueryValue("labelSelector") @Nullable @Nullable String labelSelector, @QueryValue("limit") @Nullable @Nullable Integer limit, @QueryValue("resourceVersion") @Nullable @Nullable String resourceVersion, @QueryValue("resourceVersionMatch") @Nullable @Nullable String resourceVersionMatch, @QueryValue("sendInitialEvents") @Nullable @Nullable Boolean sendInitialEvents, @QueryValue("timeoutSeconds") @Nullable @Nullable Integer timeoutSeconds, @QueryValue("watch") @Nullable @Nullable Boolean watch)
      list or watch objects of kind PersistentVolume
      Parameters:
      pretty - If 'true', then the output is pretty printed. (optional)
      allowWatchBookmarks - allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. (optional)
      _continue - The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. (optional)
      fieldSelector - A selector to restrict the list of returned objects by their fields. Defaults to everything. (optional)
      labelSelector - A selector to restrict the list of returned objects by their labels. Defaults to everything. (optional)
      limit - limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. (optional)
      resourceVersion - resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset (optional)
      resourceVersionMatch - resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset (optional)
      sendInitialEvents - `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan is interpreted as \"data at least as new as the provided `resourceVersion`\" and the bookmark event is send when the state is synced to a `resourceVersion` at least as fresh as the one provided by the ListOptions. If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the bookmark event is send when the state is synced at least to the moment when request started being processed. - `resourceVersionMatch` set to any other value or unset Invalid error is returned. Defaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise. (optional)
      timeoutSeconds - Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. (optional)
      watch - Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. (optional)
      Returns:
      OK (status code 200) or Unauthorized (status code 401)
    • listPersistentVolumeClaimForAllNamespaces

      @Get("/api/v1/persistentvolumeclaims") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf","application/json;stream=watch","application/vnd.kubernetes.protobuf;stream=watch"}) V1PersistentVolumeClaimList listPersistentVolumeClaimForAllNamespaces(@QueryValue("allowWatchBookmarks") @Nullable @Nullable Boolean allowWatchBookmarks, @QueryValue("continue") @Nullable @Nullable String _continue, @QueryValue("fieldSelector") @Nullable @Nullable String fieldSelector, @QueryValue("labelSelector") @Nullable @Nullable String labelSelector, @QueryValue("limit") @Nullable @Nullable Integer limit, @QueryValue("pretty") @Nullable @Nullable String pretty, @QueryValue("resourceVersion") @Nullable @Nullable String resourceVersion, @QueryValue("resourceVersionMatch") @Nullable @Nullable String resourceVersionMatch, @QueryValue("sendInitialEvents") @Nullable @Nullable Boolean sendInitialEvents, @QueryValue("timeoutSeconds") @Nullable @Nullable Integer timeoutSeconds, @QueryValue("watch") @Nullable @Nullable Boolean watch)
      list or watch objects of kind PersistentVolumeClaim
      Parameters:
      allowWatchBookmarks - allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. (optional)
      _continue - The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. (optional)
      fieldSelector - A selector to restrict the list of returned objects by their fields. Defaults to everything. (optional)
      labelSelector - A selector to restrict the list of returned objects by their labels. Defaults to everything. (optional)
      limit - limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. (optional)
      pretty - If 'true', then the output is pretty printed. (optional)
      resourceVersion - resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset (optional)
      resourceVersionMatch - resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset (optional)
      sendInitialEvents - `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan is interpreted as \"data at least as new as the provided `resourceVersion`\" and the bookmark event is send when the state is synced to a `resourceVersion` at least as fresh as the one provided by the ListOptions. If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the bookmark event is send when the state is synced at least to the moment when request started being processed. - `resourceVersionMatch` set to any other value or unset Invalid error is returned. Defaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise. (optional)
      timeoutSeconds - Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. (optional)
      watch - Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. (optional)
      Returns:
      OK (status code 200) or Unauthorized (status code 401)
    • listPodForAllNamespaces

      @Get("/api/v1/pods") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf","application/json;stream=watch","application/vnd.kubernetes.protobuf;stream=watch"}) V1PodList listPodForAllNamespaces(@QueryValue("allowWatchBookmarks") @Nullable @Nullable Boolean allowWatchBookmarks, @QueryValue("continue") @Nullable @Nullable String _continue, @QueryValue("fieldSelector") @Nullable @Nullable String fieldSelector, @QueryValue("labelSelector") @Nullable @Nullable String labelSelector, @QueryValue("limit") @Nullable @Nullable Integer limit, @QueryValue("pretty") @Nullable @Nullable String pretty, @QueryValue("resourceVersion") @Nullable @Nullable String resourceVersion, @QueryValue("resourceVersionMatch") @Nullable @Nullable String resourceVersionMatch, @QueryValue("sendInitialEvents") @Nullable @Nullable Boolean sendInitialEvents, @QueryValue("timeoutSeconds") @Nullable @Nullable Integer timeoutSeconds, @QueryValue("watch") @Nullable @Nullable Boolean watch)
      list or watch objects of kind Pod
      Parameters:
      allowWatchBookmarks - allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. (optional)
      _continue - The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. (optional)
      fieldSelector - A selector to restrict the list of returned objects by their fields. Defaults to everything. (optional)
      labelSelector - A selector to restrict the list of returned objects by their labels. Defaults to everything. (optional)
      limit - limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. (optional)
      pretty - If 'true', then the output is pretty printed. (optional)
      resourceVersion - resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset (optional)
      resourceVersionMatch - resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset (optional)
      sendInitialEvents - `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan is interpreted as \"data at least as new as the provided `resourceVersion`\" and the bookmark event is send when the state is synced to a `resourceVersion` at least as fresh as the one provided by the ListOptions. If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the bookmark event is send when the state is synced at least to the moment when request started being processed. - `resourceVersionMatch` set to any other value or unset Invalid error is returned. Defaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise. (optional)
      timeoutSeconds - Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. (optional)
      watch - Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. (optional)
      Returns:
      OK (status code 200) or Unauthorized (status code 401)
    • listPodTemplateForAllNamespaces

      @Get("/api/v1/podtemplates") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf","application/json;stream=watch","application/vnd.kubernetes.protobuf;stream=watch"}) V1PodTemplateList listPodTemplateForAllNamespaces(@QueryValue("allowWatchBookmarks") @Nullable @Nullable Boolean allowWatchBookmarks, @QueryValue("continue") @Nullable @Nullable String _continue, @QueryValue("fieldSelector") @Nullable @Nullable String fieldSelector, @QueryValue("labelSelector") @Nullable @Nullable String labelSelector, @QueryValue("limit") @Nullable @Nullable Integer limit, @QueryValue("pretty") @Nullable @Nullable String pretty, @QueryValue("resourceVersion") @Nullable @Nullable String resourceVersion, @QueryValue("resourceVersionMatch") @Nullable @Nullable String resourceVersionMatch, @QueryValue("sendInitialEvents") @Nullable @Nullable Boolean sendInitialEvents, @QueryValue("timeoutSeconds") @Nullable @Nullable Integer timeoutSeconds, @QueryValue("watch") @Nullable @Nullable Boolean watch)
      list or watch objects of kind PodTemplate
      Parameters:
      allowWatchBookmarks - allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. (optional)
      _continue - The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. (optional)
      fieldSelector - A selector to restrict the list of returned objects by their fields. Defaults to everything. (optional)
      labelSelector - A selector to restrict the list of returned objects by their labels. Defaults to everything. (optional)
      limit - limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. (optional)
      pretty - If 'true', then the output is pretty printed. (optional)
      resourceVersion - resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset (optional)
      resourceVersionMatch - resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset (optional)
      sendInitialEvents - `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan is interpreted as \"data at least as new as the provided `resourceVersion`\" and the bookmark event is send when the state is synced to a `resourceVersion` at least as fresh as the one provided by the ListOptions. If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the bookmark event is send when the state is synced at least to the moment when request started being processed. - `resourceVersionMatch` set to any other value or unset Invalid error is returned. Defaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise. (optional)
      timeoutSeconds - Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. (optional)
      watch - Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. (optional)
      Returns:
      OK (status code 200) or Unauthorized (status code 401)
    • listReplicationControllerForAllNamespaces

      @Get("/api/v1/replicationcontrollers") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf","application/json;stream=watch","application/vnd.kubernetes.protobuf;stream=watch"}) V1ReplicationControllerList listReplicationControllerForAllNamespaces(@QueryValue("allowWatchBookmarks") @Nullable @Nullable Boolean allowWatchBookmarks, @QueryValue("continue") @Nullable @Nullable String _continue, @QueryValue("fieldSelector") @Nullable @Nullable String fieldSelector, @QueryValue("labelSelector") @Nullable @Nullable String labelSelector, @QueryValue("limit") @Nullable @Nullable Integer limit, @QueryValue("pretty") @Nullable @Nullable String pretty, @QueryValue("resourceVersion") @Nullable @Nullable String resourceVersion, @QueryValue("resourceVersionMatch") @Nullable @Nullable String resourceVersionMatch, @QueryValue("sendInitialEvents") @Nullable @Nullable Boolean sendInitialEvents, @QueryValue("timeoutSeconds") @Nullable @Nullable Integer timeoutSeconds, @QueryValue("watch") @Nullable @Nullable Boolean watch)
      list or watch objects of kind ReplicationController
      Parameters:
      allowWatchBookmarks - allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. (optional)
      _continue - The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. (optional)
      fieldSelector - A selector to restrict the list of returned objects by their fields. Defaults to everything. (optional)
      labelSelector - A selector to restrict the list of returned objects by their labels. Defaults to everything. (optional)
      limit - limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. (optional)
      pretty - If 'true', then the output is pretty printed. (optional)
      resourceVersion - resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset (optional)
      resourceVersionMatch - resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset (optional)
      sendInitialEvents - `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan is interpreted as \"data at least as new as the provided `resourceVersion`\" and the bookmark event is send when the state is synced to a `resourceVersion` at least as fresh as the one provided by the ListOptions. If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the bookmark event is send when the state is synced at least to the moment when request started being processed. - `resourceVersionMatch` set to any other value or unset Invalid error is returned. Defaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise. (optional)
      timeoutSeconds - Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. (optional)
      watch - Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. (optional)
      Returns:
      OK (status code 200) or Unauthorized (status code 401)
    • listResourceQuotaForAllNamespaces

      @Get("/api/v1/resourcequotas") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf","application/json;stream=watch","application/vnd.kubernetes.protobuf;stream=watch"}) V1ResourceQuotaList listResourceQuotaForAllNamespaces(@QueryValue("allowWatchBookmarks") @Nullable @Nullable Boolean allowWatchBookmarks, @QueryValue("continue") @Nullable @Nullable String _continue, @QueryValue("fieldSelector") @Nullable @Nullable String fieldSelector, @QueryValue("labelSelector") @Nullable @Nullable String labelSelector, @QueryValue("limit") @Nullable @Nullable Integer limit, @QueryValue("pretty") @Nullable @Nullable String pretty, @QueryValue("resourceVersion") @Nullable @Nullable String resourceVersion, @QueryValue("resourceVersionMatch") @Nullable @Nullable String resourceVersionMatch, @QueryValue("sendInitialEvents") @Nullable @Nullable Boolean sendInitialEvents, @QueryValue("timeoutSeconds") @Nullable @Nullable Integer timeoutSeconds, @QueryValue("watch") @Nullable @Nullable Boolean watch)
      list or watch objects of kind ResourceQuota
      Parameters:
      allowWatchBookmarks - allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. (optional)
      _continue - The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. (optional)
      fieldSelector - A selector to restrict the list of returned objects by their fields. Defaults to everything. (optional)
      labelSelector - A selector to restrict the list of returned objects by their labels. Defaults to everything. (optional)
      limit - limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. (optional)
      pretty - If 'true', then the output is pretty printed. (optional)
      resourceVersion - resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset (optional)
      resourceVersionMatch - resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset (optional)
      sendInitialEvents - `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan is interpreted as \"data at least as new as the provided `resourceVersion`\" and the bookmark event is send when the state is synced to a `resourceVersion` at least as fresh as the one provided by the ListOptions. If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the bookmark event is send when the state is synced at least to the moment when request started being processed. - `resourceVersionMatch` set to any other value or unset Invalid error is returned. Defaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise. (optional)
      timeoutSeconds - Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. (optional)
      watch - Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. (optional)
      Returns:
      OK (status code 200) or Unauthorized (status code 401)
    • listSecretForAllNamespaces

      @Get("/api/v1/secrets") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf","application/json;stream=watch","application/vnd.kubernetes.protobuf;stream=watch"}) V1SecretList listSecretForAllNamespaces(@QueryValue("allowWatchBookmarks") @Nullable @Nullable Boolean allowWatchBookmarks, @QueryValue("continue") @Nullable @Nullable String _continue, @QueryValue("fieldSelector") @Nullable @Nullable String fieldSelector, @QueryValue("labelSelector") @Nullable @Nullable String labelSelector, @QueryValue("limit") @Nullable @Nullable Integer limit, @QueryValue("pretty") @Nullable @Nullable String pretty, @QueryValue("resourceVersion") @Nullable @Nullable String resourceVersion, @QueryValue("resourceVersionMatch") @Nullable @Nullable String resourceVersionMatch, @QueryValue("sendInitialEvents") @Nullable @Nullable Boolean sendInitialEvents, @QueryValue("timeoutSeconds") @Nullable @Nullable Integer timeoutSeconds, @QueryValue("watch") @Nullable @Nullable Boolean watch)
      list or watch objects of kind Secret
      Parameters:
      allowWatchBookmarks - allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. (optional)
      _continue - The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. (optional)
      fieldSelector - A selector to restrict the list of returned objects by their fields. Defaults to everything. (optional)
      labelSelector - A selector to restrict the list of returned objects by their labels. Defaults to everything. (optional)
      limit - limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. (optional)
      pretty - If 'true', then the output is pretty printed. (optional)
      resourceVersion - resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset (optional)
      resourceVersionMatch - resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset (optional)
      sendInitialEvents - `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan is interpreted as \"data at least as new as the provided `resourceVersion`\" and the bookmark event is send when the state is synced to a `resourceVersion` at least as fresh as the one provided by the ListOptions. If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the bookmark event is send when the state is synced at least to the moment when request started being processed. - `resourceVersionMatch` set to any other value or unset Invalid error is returned. Defaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise. (optional)
      timeoutSeconds - Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. (optional)
      watch - Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. (optional)
      Returns:
      OK (status code 200) or Unauthorized (status code 401)
    • listServiceAccountForAllNamespaces

      @Get("/api/v1/serviceaccounts") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf","application/json;stream=watch","application/vnd.kubernetes.protobuf;stream=watch"}) V1ServiceAccountList listServiceAccountForAllNamespaces(@QueryValue("allowWatchBookmarks") @Nullable @Nullable Boolean allowWatchBookmarks, @QueryValue("continue") @Nullable @Nullable String _continue, @QueryValue("fieldSelector") @Nullable @Nullable String fieldSelector, @QueryValue("labelSelector") @Nullable @Nullable String labelSelector, @QueryValue("limit") @Nullable @Nullable Integer limit, @QueryValue("pretty") @Nullable @Nullable String pretty, @QueryValue("resourceVersion") @Nullable @Nullable String resourceVersion, @QueryValue("resourceVersionMatch") @Nullable @Nullable String resourceVersionMatch, @QueryValue("sendInitialEvents") @Nullable @Nullable Boolean sendInitialEvents, @QueryValue("timeoutSeconds") @Nullable @Nullable Integer timeoutSeconds, @QueryValue("watch") @Nullable @Nullable Boolean watch)
      list or watch objects of kind ServiceAccount
      Parameters:
      allowWatchBookmarks - allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. (optional)
      _continue - The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. (optional)
      fieldSelector - A selector to restrict the list of returned objects by their fields. Defaults to everything. (optional)
      labelSelector - A selector to restrict the list of returned objects by their labels. Defaults to everything. (optional)
      limit - limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. (optional)
      pretty - If 'true', then the output is pretty printed. (optional)
      resourceVersion - resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset (optional)
      resourceVersionMatch - resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset (optional)
      sendInitialEvents - `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan is interpreted as \"data at least as new as the provided `resourceVersion`\" and the bookmark event is send when the state is synced to a `resourceVersion` at least as fresh as the one provided by the ListOptions. If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the bookmark event is send when the state is synced at least to the moment when request started being processed. - `resourceVersionMatch` set to any other value or unset Invalid error is returned. Defaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise. (optional)
      timeoutSeconds - Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. (optional)
      watch - Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. (optional)
      Returns:
      OK (status code 200) or Unauthorized (status code 401)
    • listServiceForAllNamespaces

      @Get("/api/v1/services") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf","application/json;stream=watch","application/vnd.kubernetes.protobuf;stream=watch"}) V1ServiceList listServiceForAllNamespaces(@QueryValue("allowWatchBookmarks") @Nullable @Nullable Boolean allowWatchBookmarks, @QueryValue("continue") @Nullable @Nullable String _continue, @QueryValue("fieldSelector") @Nullable @Nullable String fieldSelector, @QueryValue("labelSelector") @Nullable @Nullable String labelSelector, @QueryValue("limit") @Nullable @Nullable Integer limit, @QueryValue("pretty") @Nullable @Nullable String pretty, @QueryValue("resourceVersion") @Nullable @Nullable String resourceVersion, @QueryValue("resourceVersionMatch") @Nullable @Nullable String resourceVersionMatch, @QueryValue("sendInitialEvents") @Nullable @Nullable Boolean sendInitialEvents, @QueryValue("timeoutSeconds") @Nullable @Nullable Integer timeoutSeconds, @QueryValue("watch") @Nullable @Nullable Boolean watch)
      list or watch objects of kind Service
      Parameters:
      allowWatchBookmarks - allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. (optional)
      _continue - The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. (optional)
      fieldSelector - A selector to restrict the list of returned objects by their fields. Defaults to everything. (optional)
      labelSelector - A selector to restrict the list of returned objects by their labels. Defaults to everything. (optional)
      limit - limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. (optional)
      pretty - If 'true', then the output is pretty printed. (optional)
      resourceVersion - resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset (optional)
      resourceVersionMatch - resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset (optional)
      sendInitialEvents - `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan is interpreted as \"data at least as new as the provided `resourceVersion`\" and the bookmark event is send when the state is synced to a `resourceVersion` at least as fresh as the one provided by the ListOptions. If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the bookmark event is send when the state is synced at least to the moment when request started being processed. - `resourceVersionMatch` set to any other value or unset Invalid error is returned. Defaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise. (optional)
      timeoutSeconds - Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. (optional)
      watch - Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. (optional)
      Returns:
      OK (status code 200) or Unauthorized (status code 401)
    • patchNamespace

      @Patch("/api/v1/namespaces/{name}") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf"}) @Produces({"application/json-patch+json","application/merge-patch+json","application/strategic-merge-patch+json","application/apply-patch+yaml"}) V1Namespace patchNamespace(@PathVariable("name") @NotNull @NotNull String name, @Body @NotNull @NotNull String body, @QueryValue("pretty") @Nullable @Nullable String pretty, @QueryValue("dryRun") @Nullable @Nullable String dryRun, @QueryValue("fieldManager") @Nullable @Nullable String fieldManager, @QueryValue("fieldValidation") @Nullable @Nullable String fieldValidation, @QueryValue("force") @Nullable @Nullable Boolean force)
      partially update the specified Namespace
      Parameters:
      name - name of the Namespace (required)
      body - (required)
      pretty - If 'true', then the output is pretty printed. (optional)
      dryRun - When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed (optional)
      fieldManager - fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch). (optional)
      fieldValidation - fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)
      force - Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. (optional)
      Returns:
      OK (status code 200) or Created (status code 201) or Unauthorized (status code 401)
    • patchNamespaceStatus

      @Patch("/api/v1/namespaces/{name}/status") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf"}) @Produces({"application/json-patch+json","application/merge-patch+json","application/strategic-merge-patch+json","application/apply-patch+yaml"}) V1Namespace patchNamespaceStatus(@PathVariable("name") @NotNull @NotNull String name, @Body @NotNull @NotNull String body, @QueryValue("pretty") @Nullable @Nullable String pretty, @QueryValue("dryRun") @Nullable @Nullable String dryRun, @QueryValue("fieldManager") @Nullable @Nullable String fieldManager, @QueryValue("fieldValidation") @Nullable @Nullable String fieldValidation, @QueryValue("force") @Nullable @Nullable Boolean force)
      partially update status of the specified Namespace
      Parameters:
      name - name of the Namespace (required)
      body - (required)
      pretty - If 'true', then the output is pretty printed. (optional)
      dryRun - When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed (optional)
      fieldManager - fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch). (optional)
      fieldValidation - fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)
      force - Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. (optional)
      Returns:
      OK (status code 200) or Created (status code 201) or Unauthorized (status code 401)
    • patchNamespacedConfigMap

      @Patch("/api/v1/namespaces/{namespace}/configmaps/{name}") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf"}) @Produces({"application/json-patch+json","application/merge-patch+json","application/strategic-merge-patch+json","application/apply-patch+yaml"}) V1ConfigMap patchNamespacedConfigMap(@PathVariable("name") @NotNull @NotNull String name, @PathVariable("namespace") @NotNull @NotNull String namespace, @Body @NotNull @NotNull String body, @QueryValue("pretty") @Nullable @Nullable String pretty, @QueryValue("dryRun") @Nullable @Nullable String dryRun, @QueryValue("fieldManager") @Nullable @Nullable String fieldManager, @QueryValue("fieldValidation") @Nullable @Nullable String fieldValidation, @QueryValue("force") @Nullable @Nullable Boolean force)
      partially update the specified ConfigMap
      Parameters:
      name - name of the ConfigMap (required)
      namespace - object name and auth scope, such as for teams and projects (required)
      body - (required)
      pretty - If 'true', then the output is pretty printed. (optional)
      dryRun - When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed (optional)
      fieldManager - fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch). (optional)
      fieldValidation - fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)
      force - Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. (optional)
      Returns:
      OK (status code 200) or Created (status code 201) or Unauthorized (status code 401)
    • patchNamespacedEndpoints

      @Patch("/api/v1/namespaces/{namespace}/endpoints/{name}") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf"}) @Produces({"application/json-patch+json","application/merge-patch+json","application/strategic-merge-patch+json","application/apply-patch+yaml"}) V1Endpoints patchNamespacedEndpoints(@PathVariable("name") @NotNull @NotNull String name, @PathVariable("namespace") @NotNull @NotNull String namespace, @Body @NotNull @NotNull String body, @QueryValue("pretty") @Nullable @Nullable String pretty, @QueryValue("dryRun") @Nullable @Nullable String dryRun, @QueryValue("fieldManager") @Nullable @Nullable String fieldManager, @QueryValue("fieldValidation") @Nullable @Nullable String fieldValidation, @QueryValue("force") @Nullable @Nullable Boolean force)
      partially update the specified Endpoints
      Parameters:
      name - name of the Endpoints (required)
      namespace - object name and auth scope, such as for teams and projects (required)
      body - (required)
      pretty - If 'true', then the output is pretty printed. (optional)
      dryRun - When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed (optional)
      fieldManager - fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch). (optional)
      fieldValidation - fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)
      force - Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. (optional)
      Returns:
      OK (status code 200) or Created (status code 201) or Unauthorized (status code 401)
    • patchNamespacedEvent

      @Patch("/api/v1/namespaces/{namespace}/events/{name}") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf"}) @Produces({"application/json-patch+json","application/merge-patch+json","application/strategic-merge-patch+json","application/apply-patch+yaml"}) CoreV1Event patchNamespacedEvent(@PathVariable("name") @NotNull @NotNull String name, @PathVariable("namespace") @NotNull @NotNull String namespace, @Body @NotNull @NotNull String body, @QueryValue("pretty") @Nullable @Nullable String pretty, @QueryValue("dryRun") @Nullable @Nullable String dryRun, @QueryValue("fieldManager") @Nullable @Nullable String fieldManager, @QueryValue("fieldValidation") @Nullable @Nullable String fieldValidation, @QueryValue("force") @Nullable @Nullable Boolean force)
      partially update the specified Event
      Parameters:
      name - name of the Event (required)
      namespace - object name and auth scope, such as for teams and projects (required)
      body - (required)
      pretty - If 'true', then the output is pretty printed. (optional)
      dryRun - When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed (optional)
      fieldManager - fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch). (optional)
      fieldValidation - fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)
      force - Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. (optional)
      Returns:
      OK (status code 200) or Created (status code 201) or Unauthorized (status code 401)
    • patchNamespacedLimitRange

      @Patch("/api/v1/namespaces/{namespace}/limitranges/{name}") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf"}) @Produces({"application/json-patch+json","application/merge-patch+json","application/strategic-merge-patch+json","application/apply-patch+yaml"}) V1LimitRange patchNamespacedLimitRange(@PathVariable("name") @NotNull @NotNull String name, @PathVariable("namespace") @NotNull @NotNull String namespace, @Body @NotNull @NotNull String body, @QueryValue("pretty") @Nullable @Nullable String pretty, @QueryValue("dryRun") @Nullable @Nullable String dryRun, @QueryValue("fieldManager") @Nullable @Nullable String fieldManager, @QueryValue("fieldValidation") @Nullable @Nullable String fieldValidation, @QueryValue("force") @Nullable @Nullable Boolean force)
      partially update the specified LimitRange
      Parameters:
      name - name of the LimitRange (required)
      namespace - object name and auth scope, such as for teams and projects (required)
      body - (required)
      pretty - If 'true', then the output is pretty printed. (optional)
      dryRun - When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed (optional)
      fieldManager - fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch). (optional)
      fieldValidation - fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)
      force - Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. (optional)
      Returns:
      OK (status code 200) or Created (status code 201) or Unauthorized (status code 401)
    • patchNamespacedPersistentVolumeClaim

      @Patch("/api/v1/namespaces/{namespace}/persistentvolumeclaims/{name}") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf"}) @Produces({"application/json-patch+json","application/merge-patch+json","application/strategic-merge-patch+json","application/apply-patch+yaml"}) V1PersistentVolumeClaim patchNamespacedPersistentVolumeClaim(@PathVariable("name") @NotNull @NotNull String name, @PathVariable("namespace") @NotNull @NotNull String namespace, @Body @NotNull @NotNull String body, @QueryValue("pretty") @Nullable @Nullable String pretty, @QueryValue("dryRun") @Nullable @Nullable String dryRun, @QueryValue("fieldManager") @Nullable @Nullable String fieldManager, @QueryValue("fieldValidation") @Nullable @Nullable String fieldValidation, @QueryValue("force") @Nullable @Nullable Boolean force)
      partially update the specified PersistentVolumeClaim
      Parameters:
      name - name of the PersistentVolumeClaim (required)
      namespace - object name and auth scope, such as for teams and projects (required)
      body - (required)
      pretty - If 'true', then the output is pretty printed. (optional)
      dryRun - When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed (optional)
      fieldManager - fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch). (optional)
      fieldValidation - fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)
      force - Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. (optional)
      Returns:
      OK (status code 200) or Created (status code 201) or Unauthorized (status code 401)
    • patchNamespacedPersistentVolumeClaimStatus

      @Patch("/api/v1/namespaces/{namespace}/persistentvolumeclaims/{name}/status") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf"}) @Produces({"application/json-patch+json","application/merge-patch+json","application/strategic-merge-patch+json","application/apply-patch+yaml"}) V1PersistentVolumeClaim patchNamespacedPersistentVolumeClaimStatus(@PathVariable("name") @NotNull @NotNull String name, @PathVariable("namespace") @NotNull @NotNull String namespace, @Body @NotNull @NotNull String body, @QueryValue("pretty") @Nullable @Nullable String pretty, @QueryValue("dryRun") @Nullable @Nullable String dryRun, @QueryValue("fieldManager") @Nullable @Nullable String fieldManager, @QueryValue("fieldValidation") @Nullable @Nullable String fieldValidation, @QueryValue("force") @Nullable @Nullable Boolean force)
      partially update status of the specified PersistentVolumeClaim
      Parameters:
      name - name of the PersistentVolumeClaim (required)
      namespace - object name and auth scope, such as for teams and projects (required)
      body - (required)
      pretty - If 'true', then the output is pretty printed. (optional)
      dryRun - When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed (optional)
      fieldManager - fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch). (optional)
      fieldValidation - fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)
      force - Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. (optional)
      Returns:
      OK (status code 200) or Created (status code 201) or Unauthorized (status code 401)
    • patchNamespacedPod

      @Patch("/api/v1/namespaces/{namespace}/pods/{name}") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf"}) @Produces({"application/json-patch+json","application/merge-patch+json","application/strategic-merge-patch+json","application/apply-patch+yaml"}) V1Pod patchNamespacedPod(@PathVariable("name") @NotNull @NotNull String name, @PathVariable("namespace") @NotNull @NotNull String namespace, @Body @NotNull @NotNull String body, @QueryValue("pretty") @Nullable @Nullable String pretty, @QueryValue("dryRun") @Nullable @Nullable String dryRun, @QueryValue("fieldManager") @Nullable @Nullable String fieldManager, @QueryValue("fieldValidation") @Nullable @Nullable String fieldValidation, @QueryValue("force") @Nullable @Nullable Boolean force)
      partially update the specified Pod
      Parameters:
      name - name of the Pod (required)
      namespace - object name and auth scope, such as for teams and projects (required)
      body - (required)
      pretty - If 'true', then the output is pretty printed. (optional)
      dryRun - When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed (optional)
      fieldManager - fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch). (optional)
      fieldValidation - fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)
      force - Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. (optional)
      Returns:
      OK (status code 200) or Created (status code 201) or Unauthorized (status code 401)
    • patchNamespacedPodEphemeralcontainers

      @Patch("/api/v1/namespaces/{namespace}/pods/{name}/ephemeralcontainers") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf"}) @Produces({"application/json-patch+json","application/merge-patch+json","application/strategic-merge-patch+json","application/apply-patch+yaml"}) V1Pod patchNamespacedPodEphemeralcontainers(@PathVariable("name") @NotNull @NotNull String name, @PathVariable("namespace") @NotNull @NotNull String namespace, @Body @NotNull @NotNull String body, @QueryValue("pretty") @Nullable @Nullable String pretty, @QueryValue("dryRun") @Nullable @Nullable String dryRun, @QueryValue("fieldManager") @Nullable @Nullable String fieldManager, @QueryValue("fieldValidation") @Nullable @Nullable String fieldValidation, @QueryValue("force") @Nullable @Nullable Boolean force)
      partially update ephemeralcontainers of the specified Pod
      Parameters:
      name - name of the Pod (required)
      namespace - object name and auth scope, such as for teams and projects (required)
      body - (required)
      pretty - If 'true', then the output is pretty printed. (optional)
      dryRun - When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed (optional)
      fieldManager - fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch). (optional)
      fieldValidation - fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)
      force - Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. (optional)
      Returns:
      OK (status code 200) or Created (status code 201) or Unauthorized (status code 401)
    • patchNamespacedPodStatus

      @Patch("/api/v1/namespaces/{namespace}/pods/{name}/status") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf"}) @Produces({"application/json-patch+json","application/merge-patch+json","application/strategic-merge-patch+json","application/apply-patch+yaml"}) V1Pod patchNamespacedPodStatus(@PathVariable("name") @NotNull @NotNull String name, @PathVariable("namespace") @NotNull @NotNull String namespace, @Body @NotNull @NotNull String body, @QueryValue("pretty") @Nullable @Nullable String pretty, @QueryValue("dryRun") @Nullable @Nullable String dryRun, @QueryValue("fieldManager") @Nullable @Nullable String fieldManager, @QueryValue("fieldValidation") @Nullable @Nullable String fieldValidation, @QueryValue("force") @Nullable @Nullable Boolean force)
      partially update status of the specified Pod
      Parameters:
      name - name of the Pod (required)
      namespace - object name and auth scope, such as for teams and projects (required)
      body - (required)
      pretty - If 'true', then the output is pretty printed. (optional)
      dryRun - When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed (optional)
      fieldManager - fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch). (optional)
      fieldValidation - fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)
      force - Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. (optional)
      Returns:
      OK (status code 200) or Created (status code 201) or Unauthorized (status code 401)
    • patchNamespacedPodTemplate

      @Patch("/api/v1/namespaces/{namespace}/podtemplates/{name}") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf"}) @Produces({"application/json-patch+json","application/merge-patch+json","application/strategic-merge-patch+json","application/apply-patch+yaml"}) V1PodTemplate patchNamespacedPodTemplate(@PathVariable("name") @NotNull @NotNull String name, @PathVariable("namespace") @NotNull @NotNull String namespace, @Body @NotNull @NotNull String body, @QueryValue("pretty") @Nullable @Nullable String pretty, @QueryValue("dryRun") @Nullable @Nullable String dryRun, @QueryValue("fieldManager") @Nullable @Nullable String fieldManager, @QueryValue("fieldValidation") @Nullable @Nullable String fieldValidation, @QueryValue("force") @Nullable @Nullable Boolean force)
      partially update the specified PodTemplate
      Parameters:
      name - name of the PodTemplate (required)
      namespace - object name and auth scope, such as for teams and projects (required)
      body - (required)
      pretty - If 'true', then the output is pretty printed. (optional)
      dryRun - When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed (optional)
      fieldManager - fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch). (optional)
      fieldValidation - fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)
      force - Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. (optional)
      Returns:
      OK (status code 200) or Created (status code 201) or Unauthorized (status code 401)
    • patchNamespacedReplicationController

      @Patch("/api/v1/namespaces/{namespace}/replicationcontrollers/{name}") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf"}) @Produces({"application/json-patch+json","application/merge-patch+json","application/strategic-merge-patch+json","application/apply-patch+yaml"}) V1ReplicationController patchNamespacedReplicationController(@PathVariable("name") @NotNull @NotNull String name, @PathVariable("namespace") @NotNull @NotNull String namespace, @Body @NotNull @NotNull String body, @QueryValue("pretty") @Nullable @Nullable String pretty, @QueryValue("dryRun") @Nullable @Nullable String dryRun, @QueryValue("fieldManager") @Nullable @Nullable String fieldManager, @QueryValue("fieldValidation") @Nullable @Nullable String fieldValidation, @QueryValue("force") @Nullable @Nullable Boolean force)
      partially update the specified ReplicationController
      Parameters:
      name - name of the ReplicationController (required)
      namespace - object name and auth scope, such as for teams and projects (required)
      body - (required)
      pretty - If 'true', then the output is pretty printed. (optional)
      dryRun - When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed (optional)
      fieldManager - fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch). (optional)
      fieldValidation - fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)
      force - Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. (optional)
      Returns:
      OK (status code 200) or Created (status code 201) or Unauthorized (status code 401)
    • patchNamespacedReplicationControllerScale

      @Patch("/api/v1/namespaces/{namespace}/replicationcontrollers/{name}/scale") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf"}) @Produces({"application/json-patch+json","application/merge-patch+json","application/strategic-merge-patch+json","application/apply-patch+yaml"}) V1Scale patchNamespacedReplicationControllerScale(@PathVariable("name") @NotNull @NotNull String name, @PathVariable("namespace") @NotNull @NotNull String namespace, @Body @NotNull @NotNull String body, @QueryValue("pretty") @Nullable @Nullable String pretty, @QueryValue("dryRun") @Nullable @Nullable String dryRun, @QueryValue("fieldManager") @Nullable @Nullable String fieldManager, @QueryValue("fieldValidation") @Nullable @Nullable String fieldValidation, @QueryValue("force") @Nullable @Nullable Boolean force)
      partially update scale of the specified ReplicationController
      Parameters:
      name - name of the Scale (required)
      namespace - object name and auth scope, such as for teams and projects (required)
      body - (required)
      pretty - If 'true', then the output is pretty printed. (optional)
      dryRun - When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed (optional)
      fieldManager - fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch). (optional)
      fieldValidation - fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)
      force - Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. (optional)
      Returns:
      OK (status code 200) or Created (status code 201) or Unauthorized (status code 401)
    • patchNamespacedReplicationControllerStatus

      @Patch("/api/v1/namespaces/{namespace}/replicationcontrollers/{name}/status") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf"}) @Produces({"application/json-patch+json","application/merge-patch+json","application/strategic-merge-patch+json","application/apply-patch+yaml"}) V1ReplicationController patchNamespacedReplicationControllerStatus(@PathVariable("name") @NotNull @NotNull String name, @PathVariable("namespace") @NotNull @NotNull String namespace, @Body @NotNull @NotNull String body, @QueryValue("pretty") @Nullable @Nullable String pretty, @QueryValue("dryRun") @Nullable @Nullable String dryRun, @QueryValue("fieldManager") @Nullable @Nullable String fieldManager, @QueryValue("fieldValidation") @Nullable @Nullable String fieldValidation, @QueryValue("force") @Nullable @Nullable Boolean force)
      partially update status of the specified ReplicationController
      Parameters:
      name - name of the ReplicationController (required)
      namespace - object name and auth scope, such as for teams and projects (required)
      body - (required)
      pretty - If 'true', then the output is pretty printed. (optional)
      dryRun - When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed (optional)
      fieldManager - fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch). (optional)
      fieldValidation - fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)
      force - Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. (optional)
      Returns:
      OK (status code 200) or Created (status code 201) or Unauthorized (status code 401)
    • patchNamespacedResourceQuota

      @Patch("/api/v1/namespaces/{namespace}/resourcequotas/{name}") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf"}) @Produces({"application/json-patch+json","application/merge-patch+json","application/strategic-merge-patch+json","application/apply-patch+yaml"}) V1ResourceQuota patchNamespacedResourceQuota(@PathVariable("name") @NotNull @NotNull String name, @PathVariable("namespace") @NotNull @NotNull String namespace, @Body @NotNull @NotNull String body, @QueryValue("pretty") @Nullable @Nullable String pretty, @QueryValue("dryRun") @Nullable @Nullable String dryRun, @QueryValue("fieldManager") @Nullable @Nullable String fieldManager, @QueryValue("fieldValidation") @Nullable @Nullable String fieldValidation, @QueryValue("force") @Nullable @Nullable Boolean force)
      partially update the specified ResourceQuota
      Parameters:
      name - name of the ResourceQuota (required)
      namespace - object name and auth scope, such as for teams and projects (required)
      body - (required)
      pretty - If 'true', then the output is pretty printed. (optional)
      dryRun - When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed (optional)
      fieldManager - fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch). (optional)
      fieldValidation - fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)
      force - Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. (optional)
      Returns:
      OK (status code 200) or Created (status code 201) or Unauthorized (status code 401)
    • patchNamespacedResourceQuotaStatus

      @Patch("/api/v1/namespaces/{namespace}/resourcequotas/{name}/status") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf"}) @Produces({"application/json-patch+json","application/merge-patch+json","application/strategic-merge-patch+json","application/apply-patch+yaml"}) V1ResourceQuota patchNamespacedResourceQuotaStatus(@PathVariable("name") @NotNull @NotNull String name, @PathVariable("namespace") @NotNull @NotNull String namespace, @Body @NotNull @NotNull String body, @QueryValue("pretty") @Nullable @Nullable String pretty, @QueryValue("dryRun") @Nullable @Nullable String dryRun, @QueryValue("fieldManager") @Nullable @Nullable String fieldManager, @QueryValue("fieldValidation") @Nullable @Nullable String fieldValidation, @QueryValue("force") @Nullable @Nullable Boolean force)
      partially update status of the specified ResourceQuota
      Parameters:
      name - name of the ResourceQuota (required)
      namespace - object name and auth scope, such as for teams and projects (required)
      body - (required)
      pretty - If 'true', then the output is pretty printed. (optional)
      dryRun - When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed (optional)
      fieldManager - fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch). (optional)
      fieldValidation - fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)
      force - Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. (optional)
      Returns:
      OK (status code 200) or Created (status code 201) or Unauthorized (status code 401)
    • patchNamespacedSecret

      @Patch("/api/v1/namespaces/{namespace}/secrets/{name}") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf"}) @Produces({"application/json-patch+json","application/merge-patch+json","application/strategic-merge-patch+json","application/apply-patch+yaml"}) V1Secret patchNamespacedSecret(@PathVariable("name") @NotNull @NotNull String name, @PathVariable("namespace") @NotNull @NotNull String namespace, @Body @NotNull @NotNull String body, @QueryValue("pretty") @Nullable @Nullable String pretty, @QueryValue("dryRun") @Nullable @Nullable String dryRun, @QueryValue("fieldManager") @Nullable @Nullable String fieldManager, @QueryValue("fieldValidation") @Nullable @Nullable String fieldValidation, @QueryValue("force") @Nullable @Nullable Boolean force)
      partially update the specified Secret
      Parameters:
      name - name of the Secret (required)
      namespace - object name and auth scope, such as for teams and projects (required)
      body - (required)
      pretty - If 'true', then the output is pretty printed. (optional)
      dryRun - When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed (optional)
      fieldManager - fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch). (optional)
      fieldValidation - fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)
      force - Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. (optional)
      Returns:
      OK (status code 200) or Created (status code 201) or Unauthorized (status code 401)
    • patchNamespacedService

      @Patch("/api/v1/namespaces/{namespace}/services/{name}") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf"}) @Produces({"application/json-patch+json","application/merge-patch+json","application/strategic-merge-patch+json","application/apply-patch+yaml"}) V1Service patchNamespacedService(@PathVariable("name") @NotNull @NotNull String name, @PathVariable("namespace") @NotNull @NotNull String namespace, @Body @NotNull @NotNull String body, @QueryValue("pretty") @Nullable @Nullable String pretty, @QueryValue("dryRun") @Nullable @Nullable String dryRun, @QueryValue("fieldManager") @Nullable @Nullable String fieldManager, @QueryValue("fieldValidation") @Nullable @Nullable String fieldValidation, @QueryValue("force") @Nullable @Nullable Boolean force)
      partially update the specified Service
      Parameters:
      name - name of the Service (required)
      namespace - object name and auth scope, such as for teams and projects (required)
      body - (required)
      pretty - If 'true', then the output is pretty printed. (optional)
      dryRun - When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed (optional)
      fieldManager - fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch). (optional)
      fieldValidation - fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)
      force - Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. (optional)
      Returns:
      OK (status code 200) or Created (status code 201) or Unauthorized (status code 401)
    • patchNamespacedServiceAccount

      @Patch("/api/v1/namespaces/{namespace}/serviceaccounts/{name}") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf"}) @Produces({"application/json-patch+json","application/merge-patch+json","application/strategic-merge-patch+json","application/apply-patch+yaml"}) V1ServiceAccount patchNamespacedServiceAccount(@PathVariable("name") @NotNull @NotNull String name, @PathVariable("namespace") @NotNull @NotNull String namespace, @Body @NotNull @NotNull String body, @QueryValue("pretty") @Nullable @Nullable String pretty, @QueryValue("dryRun") @Nullable @Nullable String dryRun, @QueryValue("fieldManager") @Nullable @Nullable String fieldManager, @QueryValue("fieldValidation") @Nullable @Nullable String fieldValidation, @QueryValue("force") @Nullable @Nullable Boolean force)
      partially update the specified ServiceAccount
      Parameters:
      name - name of the ServiceAccount (required)
      namespace - object name and auth scope, such as for teams and projects (required)
      body - (required)
      pretty - If 'true', then the output is pretty printed. (optional)
      dryRun - When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed (optional)
      fieldManager - fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch). (optional)
      fieldValidation - fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)
      force - Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. (optional)
      Returns:
      OK (status code 200) or Created (status code 201) or Unauthorized (status code 401)
    • patchNamespacedServiceStatus

      @Patch("/api/v1/namespaces/{namespace}/services/{name}/status") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf"}) @Produces({"application/json-patch+json","application/merge-patch+json","application/strategic-merge-patch+json","application/apply-patch+yaml"}) V1Service patchNamespacedServiceStatus(@PathVariable("name") @NotNull @NotNull String name, @PathVariable("namespace") @NotNull @NotNull String namespace, @Body @NotNull @NotNull String body, @QueryValue("pretty") @Nullable @Nullable String pretty, @QueryValue("dryRun") @Nullable @Nullable String dryRun, @QueryValue("fieldManager") @Nullable @Nullable String fieldManager, @QueryValue("fieldValidation") @Nullable @Nullable String fieldValidation, @QueryValue("force") @Nullable @Nullable Boolean force)
      partially update status of the specified Service
      Parameters:
      name - name of the Service (required)
      namespace - object name and auth scope, such as for teams and projects (required)
      body - (required)
      pretty - If 'true', then the output is pretty printed. (optional)
      dryRun - When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed (optional)
      fieldManager - fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch). (optional)
      fieldValidation - fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)
      force - Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. (optional)
      Returns:
      OK (status code 200) or Created (status code 201) or Unauthorized (status code 401)
    • patchNode

      @Patch("/api/v1/nodes/{name}") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf"}) @Produces({"application/json-patch+json","application/merge-patch+json","application/strategic-merge-patch+json","application/apply-patch+yaml"}) V1Node patchNode(@PathVariable("name") @NotNull @NotNull String name, @Body @NotNull @NotNull String body, @QueryValue("pretty") @Nullable @Nullable String pretty, @QueryValue("dryRun") @Nullable @Nullable String dryRun, @QueryValue("fieldManager") @Nullable @Nullable String fieldManager, @QueryValue("fieldValidation") @Nullable @Nullable String fieldValidation, @QueryValue("force") @Nullable @Nullable Boolean force)
      partially update the specified Node
      Parameters:
      name - name of the Node (required)
      body - (required)
      pretty - If 'true', then the output is pretty printed. (optional)
      dryRun - When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed (optional)
      fieldManager - fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch). (optional)
      fieldValidation - fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)
      force - Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. (optional)
      Returns:
      OK (status code 200) or Created (status code 201) or Unauthorized (status code 401)
    • patchNodeStatus

      @Patch("/api/v1/nodes/{name}/status") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf"}) @Produces({"application/json-patch+json","application/merge-patch+json","application/strategic-merge-patch+json","application/apply-patch+yaml"}) V1Node patchNodeStatus(@PathVariable("name") @NotNull @NotNull String name, @Body @NotNull @NotNull String body, @QueryValue("pretty") @Nullable @Nullable String pretty, @QueryValue("dryRun") @Nullable @Nullable String dryRun, @QueryValue("fieldManager") @Nullable @Nullable String fieldManager, @QueryValue("fieldValidation") @Nullable @Nullable String fieldValidation, @QueryValue("force") @Nullable @Nullable Boolean force)
      partially update status of the specified Node
      Parameters:
      name - name of the Node (required)
      body - (required)
      pretty - If 'true', then the output is pretty printed. (optional)
      dryRun - When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed (optional)
      fieldManager - fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch). (optional)
      fieldValidation - fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)
      force - Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. (optional)
      Returns:
      OK (status code 200) or Created (status code 201) or Unauthorized (status code 401)
    • patchPersistentVolume

      @Patch("/api/v1/persistentvolumes/{name}") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf"}) @Produces({"application/json-patch+json","application/merge-patch+json","application/strategic-merge-patch+json","application/apply-patch+yaml"}) V1PersistentVolume patchPersistentVolume(@PathVariable("name") @NotNull @NotNull String name, @Body @NotNull @NotNull String body, @QueryValue("pretty") @Nullable @Nullable String pretty, @QueryValue("dryRun") @Nullable @Nullable String dryRun, @QueryValue("fieldManager") @Nullable @Nullable String fieldManager, @QueryValue("fieldValidation") @Nullable @Nullable String fieldValidation, @QueryValue("force") @Nullable @Nullable Boolean force)
      partially update the specified PersistentVolume
      Parameters:
      name - name of the PersistentVolume (required)
      body - (required)
      pretty - If 'true', then the output is pretty printed. (optional)
      dryRun - When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed (optional)
      fieldManager - fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch). (optional)
      fieldValidation - fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)
      force - Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. (optional)
      Returns:
      OK (status code 200) or Created (status code 201) or Unauthorized (status code 401)
    • patchPersistentVolumeStatus

      @Patch("/api/v1/persistentvolumes/{name}/status") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf"}) @Produces({"application/json-patch+json","application/merge-patch+json","application/strategic-merge-patch+json","application/apply-patch+yaml"}) V1PersistentVolume patchPersistentVolumeStatus(@PathVariable("name") @NotNull @NotNull String name, @Body @NotNull @NotNull String body, @QueryValue("pretty") @Nullable @Nullable String pretty, @QueryValue("dryRun") @Nullable @Nullable String dryRun, @QueryValue("fieldManager") @Nullable @Nullable String fieldManager, @QueryValue("fieldValidation") @Nullable @Nullable String fieldValidation, @QueryValue("force") @Nullable @Nullable Boolean force)
      partially update status of the specified PersistentVolume
      Parameters:
      name - name of the PersistentVolume (required)
      body - (required)
      pretty - If 'true', then the output is pretty printed. (optional)
      dryRun - When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed (optional)
      fieldManager - fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch). (optional)
      fieldValidation - fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)
      force - Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. (optional)
      Returns:
      OK (status code 200) or Created (status code 201) or Unauthorized (status code 401)
    • readComponentStatus

      @Get("/api/v1/componentstatuses/{name}") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf"}) V1ComponentStatus readComponentStatus(@PathVariable("name") @NotNull @NotNull String name, @QueryValue("pretty") @Nullable @Nullable String pretty)
      read the specified ComponentStatus
      Parameters:
      name - name of the ComponentStatus (required)
      pretty - If 'true', then the output is pretty printed. (optional)
      Returns:
      OK (status code 200) or Unauthorized (status code 401)
    • readNamespace

      @Get("/api/v1/namespaces/{name}") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf"}) V1Namespace readNamespace(@PathVariable("name") @NotNull @NotNull String name, @QueryValue("pretty") @Nullable @Nullable String pretty)
      read the specified Namespace
      Parameters:
      name - name of the Namespace (required)
      pretty - If 'true', then the output is pretty printed. (optional)
      Returns:
      OK (status code 200) or Unauthorized (status code 401)
    • readNamespaceStatus

      @Get("/api/v1/namespaces/{name}/status") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf"}) V1Namespace readNamespaceStatus(@PathVariable("name") @NotNull @NotNull String name, @QueryValue("pretty") @Nullable @Nullable String pretty)
      read status of the specified Namespace
      Parameters:
      name - name of the Namespace (required)
      pretty - If 'true', then the output is pretty printed. (optional)
      Returns:
      OK (status code 200) or Unauthorized (status code 401)
    • readNamespacedConfigMap

      @Get("/api/v1/namespaces/{namespace}/configmaps/{name}") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf"}) V1ConfigMap readNamespacedConfigMap(@PathVariable("name") @NotNull @NotNull String name, @PathVariable("namespace") @NotNull @NotNull String namespace, @QueryValue("pretty") @Nullable @Nullable String pretty)
      read the specified ConfigMap
      Parameters:
      name - name of the ConfigMap (required)
      namespace - object name and auth scope, such as for teams and projects (required)
      pretty - If 'true', then the output is pretty printed. (optional)
      Returns:
      OK (status code 200) or Unauthorized (status code 401)
    • readNamespacedEndpoints

      @Get("/api/v1/namespaces/{namespace}/endpoints/{name}") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf"}) V1Endpoints readNamespacedEndpoints(@PathVariable("name") @NotNull @NotNull String name, @PathVariable("namespace") @NotNull @NotNull String namespace, @QueryValue("pretty") @Nullable @Nullable String pretty)
      read the specified Endpoints
      Parameters:
      name - name of the Endpoints (required)
      namespace - object name and auth scope, such as for teams and projects (required)
      pretty - If 'true', then the output is pretty printed. (optional)
      Returns:
      OK (status code 200) or Unauthorized (status code 401)
    • readNamespacedEvent

      @Get("/api/v1/namespaces/{namespace}/events/{name}") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf"}) CoreV1Event readNamespacedEvent(@PathVariable("name") @NotNull @NotNull String name, @PathVariable("namespace") @NotNull @NotNull String namespace, @QueryValue("pretty") @Nullable @Nullable String pretty)
      read the specified Event
      Parameters:
      name - name of the Event (required)
      namespace - object name and auth scope, such as for teams and projects (required)
      pretty - If 'true', then the output is pretty printed. (optional)
      Returns:
      OK (status code 200) or Unauthorized (status code 401)
    • readNamespacedLimitRange

      @Get("/api/v1/namespaces/{namespace}/limitranges/{name}") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf"}) V1LimitRange readNamespacedLimitRange(@PathVariable("name") @NotNull @NotNull String name, @PathVariable("namespace") @NotNull @NotNull String namespace, @QueryValue("pretty") @Nullable @Nullable String pretty)
      read the specified LimitRange
      Parameters:
      name - name of the LimitRange (required)
      namespace - object name and auth scope, such as for teams and projects (required)
      pretty - If 'true', then the output is pretty printed. (optional)
      Returns:
      OK (status code 200) or Unauthorized (status code 401)
    • readNamespacedPersistentVolumeClaim

      @Get("/api/v1/namespaces/{namespace}/persistentvolumeclaims/{name}") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf"}) V1PersistentVolumeClaim readNamespacedPersistentVolumeClaim(@PathVariable("name") @NotNull @NotNull String name, @PathVariable("namespace") @NotNull @NotNull String namespace, @QueryValue("pretty") @Nullable @Nullable String pretty)
      read the specified PersistentVolumeClaim
      Parameters:
      name - name of the PersistentVolumeClaim (required)
      namespace - object name and auth scope, such as for teams and projects (required)
      pretty - If 'true', then the output is pretty printed. (optional)
      Returns:
      OK (status code 200) or Unauthorized (status code 401)
    • readNamespacedPersistentVolumeClaimStatus

      @Get("/api/v1/namespaces/{namespace}/persistentvolumeclaims/{name}/status") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf"}) V1PersistentVolumeClaim readNamespacedPersistentVolumeClaimStatus(@PathVariable("name") @NotNull @NotNull String name, @PathVariable("namespace") @NotNull @NotNull String namespace, @QueryValue("pretty") @Nullable @Nullable String pretty)
      read status of the specified PersistentVolumeClaim
      Parameters:
      name - name of the PersistentVolumeClaim (required)
      namespace - object name and auth scope, such as for teams and projects (required)
      pretty - If 'true', then the output is pretty printed. (optional)
      Returns:
      OK (status code 200) or Unauthorized (status code 401)
    • readNamespacedPod

      @Get("/api/v1/namespaces/{namespace}/pods/{name}") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf"}) V1Pod readNamespacedPod(@PathVariable("name") @NotNull @NotNull String name, @PathVariable("namespace") @NotNull @NotNull String namespace, @QueryValue("pretty") @Nullable @Nullable String pretty)
      read the specified Pod
      Parameters:
      name - name of the Pod (required)
      namespace - object name and auth scope, such as for teams and projects (required)
      pretty - If 'true', then the output is pretty printed. (optional)
      Returns:
      OK (status code 200) or Unauthorized (status code 401)
    • readNamespacedPodEphemeralcontainers

      @Get("/api/v1/namespaces/{namespace}/pods/{name}/ephemeralcontainers") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf"}) V1Pod readNamespacedPodEphemeralcontainers(@PathVariable("name") @NotNull @NotNull String name, @PathVariable("namespace") @NotNull @NotNull String namespace, @QueryValue("pretty") @Nullable @Nullable String pretty)
      read ephemeralcontainers of the specified Pod
      Parameters:
      name - name of the Pod (required)
      namespace - object name and auth scope, such as for teams and projects (required)
      pretty - If 'true', then the output is pretty printed. (optional)
      Returns:
      OK (status code 200) or Unauthorized (status code 401)
    • readNamespacedPodLog

      @Get("/api/v1/namespaces/{namespace}/pods/{name}/log") @Consumes({"text/plain","application/json","application/yaml","application/vnd.kubernetes.protobuf"}) String readNamespacedPodLog(@PathVariable("name") @NotNull @NotNull String name, @PathVariable("namespace") @NotNull @NotNull String namespace, @QueryValue("container") @Nullable @Nullable String container, @QueryValue("follow") @Nullable @Nullable Boolean follow, @QueryValue("insecureSkipTLSVerifyBackend") @Nullable @Nullable Boolean insecureSkipTLSVerifyBackend, @QueryValue("limitBytes") @Nullable @Nullable Integer limitBytes, @QueryValue("pretty") @Nullable @Nullable String pretty, @QueryValue("previous") @Nullable @Nullable Boolean previous, @QueryValue("sinceSeconds") @Nullable @Nullable Integer sinceSeconds, @QueryValue("tailLines") @Nullable @Nullable Integer tailLines, @QueryValue("timestamps") @Nullable @Nullable Boolean timestamps)
      read log of the specified Pod
      Parameters:
      name - name of the Pod (required)
      namespace - object name and auth scope, such as for teams and projects (required)
      container - The container for which to stream logs. Defaults to only container if there is one container in the pod. (optional)
      follow - Follow the log stream of the pod. Defaults to false. (optional)
      insecureSkipTLSVerifyBackend - insecureSkipTLSVerifyBackend indicates that the apiserver should not confirm the validity of the serving certificate of the backend it is connecting to. This will make the HTTPS connection between the apiserver and the backend insecure. This means the apiserver cannot verify the log data it is receiving came from the real kubelet. If the kubelet is configured to verify the apiserver's TLS credentials, it does not mean the connection to the real kubelet is vulnerable to a man in the middle attack (e.g. an attacker could not intercept the actual log data coming from the real kubelet). (optional)
      limitBytes - 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. (optional)
      pretty - If 'true', then the output is pretty printed. (optional)
      previous - Return previous terminated container logs. Defaults to false. (optional)
      sinceSeconds - 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. (optional)
      tailLines - 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 (optional)
      timestamps - If true, add an RFC3339 or RFC3339Nano timestamp at the beginning of every line of log output. Defaults to false. (optional)
      Returns:
      OK (status code 200) or Unauthorized (status code 401)
    • readNamespacedPodStatus

      @Get("/api/v1/namespaces/{namespace}/pods/{name}/status") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf"}) V1Pod readNamespacedPodStatus(@PathVariable("name") @NotNull @NotNull String name, @PathVariable("namespace") @NotNull @NotNull String namespace, @QueryValue("pretty") @Nullable @Nullable String pretty)
      read status of the specified Pod
      Parameters:
      name - name of the Pod (required)
      namespace - object name and auth scope, such as for teams and projects (required)
      pretty - If 'true', then the output is pretty printed. (optional)
      Returns:
      OK (status code 200) or Unauthorized (status code 401)
    • readNamespacedPodTemplate

      @Get("/api/v1/namespaces/{namespace}/podtemplates/{name}") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf"}) V1PodTemplate readNamespacedPodTemplate(@PathVariable("name") @NotNull @NotNull String name, @PathVariable("namespace") @NotNull @NotNull String namespace, @QueryValue("pretty") @Nullable @Nullable String pretty)
      read the specified PodTemplate
      Parameters:
      name - name of the PodTemplate (required)
      namespace - object name and auth scope, such as for teams and projects (required)
      pretty - If 'true', then the output is pretty printed. (optional)
      Returns:
      OK (status code 200) or Unauthorized (status code 401)
    • readNamespacedReplicationController

      @Get("/api/v1/namespaces/{namespace}/replicationcontrollers/{name}") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf"}) V1ReplicationController readNamespacedReplicationController(@PathVariable("name") @NotNull @NotNull String name, @PathVariable("namespace") @NotNull @NotNull String namespace, @QueryValue("pretty") @Nullable @Nullable String pretty)
      read the specified ReplicationController
      Parameters:
      name - name of the ReplicationController (required)
      namespace - object name and auth scope, such as for teams and projects (required)
      pretty - If 'true', then the output is pretty printed. (optional)
      Returns:
      OK (status code 200) or Unauthorized (status code 401)
    • readNamespacedReplicationControllerScale

      @Get("/api/v1/namespaces/{namespace}/replicationcontrollers/{name}/scale") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf"}) V1Scale readNamespacedReplicationControllerScale(@PathVariable("name") @NotNull @NotNull String name, @PathVariable("namespace") @NotNull @NotNull String namespace, @QueryValue("pretty") @Nullable @Nullable String pretty)
      read scale of the specified ReplicationController
      Parameters:
      name - name of the Scale (required)
      namespace - object name and auth scope, such as for teams and projects (required)
      pretty - If 'true', then the output is pretty printed. (optional)
      Returns:
      OK (status code 200) or Unauthorized (status code 401)
    • readNamespacedReplicationControllerStatus

      @Get("/api/v1/namespaces/{namespace}/replicationcontrollers/{name}/status") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf"}) V1ReplicationController readNamespacedReplicationControllerStatus(@PathVariable("name") @NotNull @NotNull String name, @PathVariable("namespace") @NotNull @NotNull String namespace, @QueryValue("pretty") @Nullable @Nullable String pretty)
      read status of the specified ReplicationController
      Parameters:
      name - name of the ReplicationController (required)
      namespace - object name and auth scope, such as for teams and projects (required)
      pretty - If 'true', then the output is pretty printed. (optional)
      Returns:
      OK (status code 200) or Unauthorized (status code 401)
    • readNamespacedResourceQuota

      @Get("/api/v1/namespaces/{namespace}/resourcequotas/{name}") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf"}) V1ResourceQuota readNamespacedResourceQuota(@PathVariable("name") @NotNull @NotNull String name, @PathVariable("namespace") @NotNull @NotNull String namespace, @QueryValue("pretty") @Nullable @Nullable String pretty)
      read the specified ResourceQuota
      Parameters:
      name - name of the ResourceQuota (required)
      namespace - object name and auth scope, such as for teams and projects (required)
      pretty - If 'true', then the output is pretty printed. (optional)
      Returns:
      OK (status code 200) or Unauthorized (status code 401)
    • readNamespacedResourceQuotaStatus

      @Get("/api/v1/namespaces/{namespace}/resourcequotas/{name}/status") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf"}) V1ResourceQuota readNamespacedResourceQuotaStatus(@PathVariable("name") @NotNull @NotNull String name, @PathVariable("namespace") @NotNull @NotNull String namespace, @QueryValue("pretty") @Nullable @Nullable String pretty)
      read status of the specified ResourceQuota
      Parameters:
      name - name of the ResourceQuota (required)
      namespace - object name and auth scope, such as for teams and projects (required)
      pretty - If 'true', then the output is pretty printed. (optional)
      Returns:
      OK (status code 200) or Unauthorized (status code 401)
    • readNamespacedSecret

      @Get("/api/v1/namespaces/{namespace}/secrets/{name}") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf"}) V1Secret readNamespacedSecret(@PathVariable("name") @NotNull @NotNull String name, @PathVariable("namespace") @NotNull @NotNull String namespace, @QueryValue("pretty") @Nullable @Nullable String pretty)
      read the specified Secret
      Parameters:
      name - name of the Secret (required)
      namespace - object name and auth scope, such as for teams and projects (required)
      pretty - If 'true', then the output is pretty printed. (optional)
      Returns:
      OK (status code 200) or Unauthorized (status code 401)
    • readNamespacedService

      @Get("/api/v1/namespaces/{namespace}/services/{name}") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf"}) V1Service readNamespacedService(@PathVariable("name") @NotNull @NotNull String name, @PathVariable("namespace") @NotNull @NotNull String namespace, @QueryValue("pretty") @Nullable @Nullable String pretty)
      read the specified Service
      Parameters:
      name - name of the Service (required)
      namespace - object name and auth scope, such as for teams and projects (required)
      pretty - If 'true', then the output is pretty printed. (optional)
      Returns:
      OK (status code 200) or Unauthorized (status code 401)
    • readNamespacedServiceAccount

      @Get("/api/v1/namespaces/{namespace}/serviceaccounts/{name}") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf"}) V1ServiceAccount readNamespacedServiceAccount(@PathVariable("name") @NotNull @NotNull String name, @PathVariable("namespace") @NotNull @NotNull String namespace, @QueryValue("pretty") @Nullable @Nullable String pretty)
      read the specified ServiceAccount
      Parameters:
      name - name of the ServiceAccount (required)
      namespace - object name and auth scope, such as for teams and projects (required)
      pretty - If 'true', then the output is pretty printed. (optional)
      Returns:
      OK (status code 200) or Unauthorized (status code 401)
    • readNamespacedServiceStatus

      @Get("/api/v1/namespaces/{namespace}/services/{name}/status") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf"}) V1Service readNamespacedServiceStatus(@PathVariable("name") @NotNull @NotNull String name, @PathVariable("namespace") @NotNull @NotNull String namespace, @QueryValue("pretty") @Nullable @Nullable String pretty)
      read status of the specified Service
      Parameters:
      name - name of the Service (required)
      namespace - object name and auth scope, such as for teams and projects (required)
      pretty - If 'true', then the output is pretty printed. (optional)
      Returns:
      OK (status code 200) or Unauthorized (status code 401)
    • readNode

      @Get("/api/v1/nodes/{name}") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf"}) V1Node readNode(@PathVariable("name") @NotNull @NotNull String name, @QueryValue("pretty") @Nullable @Nullable String pretty)
      read the specified Node
      Parameters:
      name - name of the Node (required)
      pretty - If 'true', then the output is pretty printed. (optional)
      Returns:
      OK (status code 200) or Unauthorized (status code 401)
    • readNodeStatus

      @Get("/api/v1/nodes/{name}/status") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf"}) V1Node readNodeStatus(@PathVariable("name") @NotNull @NotNull String name, @QueryValue("pretty") @Nullable @Nullable String pretty)
      read status of the specified Node
      Parameters:
      name - name of the Node (required)
      pretty - If 'true', then the output is pretty printed. (optional)
      Returns:
      OK (status code 200) or Unauthorized (status code 401)
    • readPersistentVolume

      @Get("/api/v1/persistentvolumes/{name}") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf"}) V1PersistentVolume readPersistentVolume(@PathVariable("name") @NotNull @NotNull String name, @QueryValue("pretty") @Nullable @Nullable String pretty)
      read the specified PersistentVolume
      Parameters:
      name - name of the PersistentVolume (required)
      pretty - If 'true', then the output is pretty printed. (optional)
      Returns:
      OK (status code 200) or Unauthorized (status code 401)
    • readPersistentVolumeStatus

      @Get("/api/v1/persistentvolumes/{name}/status") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf"}) V1PersistentVolume readPersistentVolumeStatus(@PathVariable("name") @NotNull @NotNull String name, @QueryValue("pretty") @Nullable @Nullable String pretty)
      read status of the specified PersistentVolume
      Parameters:
      name - name of the PersistentVolume (required)
      pretty - If 'true', then the output is pretty printed. (optional)
      Returns:
      OK (status code 200) or Unauthorized (status code 401)
    • replaceNamespace

      @Put("/api/v1/namespaces/{name}") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf"}) V1Namespace replaceNamespace(@PathVariable("name") @NotNull @NotNull String name, @Body @NotNull @Valid @NotNull @Valid V1Namespace body, @QueryValue("pretty") @Nullable @Nullable String pretty, @QueryValue("dryRun") @Nullable @Nullable String dryRun, @QueryValue("fieldManager") @Nullable @Nullable String fieldManager, @QueryValue("fieldValidation") @Nullable @Nullable String fieldValidation)
      replace the specified Namespace
      Parameters:
      name - name of the Namespace (required)
      body - (required)
      pretty - If 'true', then the output is pretty printed. (optional)
      dryRun - When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed (optional)
      fieldManager - fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. (optional)
      fieldValidation - fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)
      Returns:
      OK (status code 200) or Created (status code 201) or Unauthorized (status code 401)
    • replaceNamespaceFinalize

      @Put("/api/v1/namespaces/{name}/finalize") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf"}) V1Namespace replaceNamespaceFinalize(@PathVariable("name") @NotNull @NotNull String name, @Body @NotNull @Valid @NotNull @Valid V1Namespace body, @QueryValue("dryRun") @Nullable @Nullable String dryRun, @QueryValue("fieldManager") @Nullable @Nullable String fieldManager, @QueryValue("fieldValidation") @Nullable @Nullable String fieldValidation, @QueryValue("pretty") @Nullable @Nullable String pretty)
      replace finalize of the specified Namespace
      Parameters:
      name - name of the Namespace (required)
      body - (required)
      dryRun - When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed (optional)
      fieldManager - fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. (optional)
      fieldValidation - fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)
      pretty - If 'true', then the output is pretty printed. (optional)
      Returns:
      OK (status code 200) or Created (status code 201) or Unauthorized (status code 401)
    • replaceNamespaceStatus

      @Put("/api/v1/namespaces/{name}/status") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf"}) V1Namespace replaceNamespaceStatus(@PathVariable("name") @NotNull @NotNull String name, @Body @NotNull @Valid @NotNull @Valid V1Namespace body, @QueryValue("pretty") @Nullable @Nullable String pretty, @QueryValue("dryRun") @Nullable @Nullable String dryRun, @QueryValue("fieldManager") @Nullable @Nullable String fieldManager, @QueryValue("fieldValidation") @Nullable @Nullable String fieldValidation)
      replace status of the specified Namespace
      Parameters:
      name - name of the Namespace (required)
      body - (required)
      pretty - If 'true', then the output is pretty printed. (optional)
      dryRun - When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed (optional)
      fieldManager - fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. (optional)
      fieldValidation - fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)
      Returns:
      OK (status code 200) or Created (status code 201) or Unauthorized (status code 401)
    • replaceNamespacedConfigMap

      @Put("/api/v1/namespaces/{namespace}/configmaps/{name}") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf"}) V1ConfigMap replaceNamespacedConfigMap(@PathVariable("name") @NotNull @NotNull String name, @PathVariable("namespace") @NotNull @NotNull String namespace, @Body @NotNull @Valid @NotNull @Valid V1ConfigMap body, @QueryValue("pretty") @Nullable @Nullable String pretty, @QueryValue("dryRun") @Nullable @Nullable String dryRun, @QueryValue("fieldManager") @Nullable @Nullable String fieldManager, @QueryValue("fieldValidation") @Nullable @Nullable String fieldValidation)
      replace the specified ConfigMap
      Parameters:
      name - name of the ConfigMap (required)
      namespace - object name and auth scope, such as for teams and projects (required)
      body - (required)
      pretty - If 'true', then the output is pretty printed. (optional)
      dryRun - When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed (optional)
      fieldManager - fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. (optional)
      fieldValidation - fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)
      Returns:
      OK (status code 200) or Created (status code 201) or Unauthorized (status code 401)
    • replaceNamespacedEndpoints

      @Put("/api/v1/namespaces/{namespace}/endpoints/{name}") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf"}) V1Endpoints replaceNamespacedEndpoints(@PathVariable("name") @NotNull @NotNull String name, @PathVariable("namespace") @NotNull @NotNull String namespace, @Body @NotNull @Valid @NotNull @Valid V1Endpoints body, @QueryValue("pretty") @Nullable @Nullable String pretty, @QueryValue("dryRun") @Nullable @Nullable String dryRun, @QueryValue("fieldManager") @Nullable @Nullable String fieldManager, @QueryValue("fieldValidation") @Nullable @Nullable String fieldValidation)
      replace the specified Endpoints
      Parameters:
      name - name of the Endpoints (required)
      namespace - object name and auth scope, such as for teams and projects (required)
      body - (required)
      pretty - If 'true', then the output is pretty printed. (optional)
      dryRun - When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed (optional)
      fieldManager - fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. (optional)
      fieldValidation - fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)
      Returns:
      OK (status code 200) or Created (status code 201) or Unauthorized (status code 401)
    • replaceNamespacedEvent

      @Put("/api/v1/namespaces/{namespace}/events/{name}") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf"}) CoreV1Event replaceNamespacedEvent(@PathVariable("name") @NotNull @NotNull String name, @PathVariable("namespace") @NotNull @NotNull String namespace, @Body @NotNull @Valid @NotNull @Valid CoreV1Event body, @QueryValue("pretty") @Nullable @Nullable String pretty, @QueryValue("dryRun") @Nullable @Nullable String dryRun, @QueryValue("fieldManager") @Nullable @Nullable String fieldManager, @QueryValue("fieldValidation") @Nullable @Nullable String fieldValidation)
      replace the specified Event
      Parameters:
      name - name of the Event (required)
      namespace - object name and auth scope, such as for teams and projects (required)
      body - (required)
      pretty - If 'true', then the output is pretty printed. (optional)
      dryRun - When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed (optional)
      fieldManager - fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. (optional)
      fieldValidation - fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)
      Returns:
      OK (status code 200) or Created (status code 201) or Unauthorized (status code 401)
    • replaceNamespacedLimitRange

      @Put("/api/v1/namespaces/{namespace}/limitranges/{name}") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf"}) V1LimitRange replaceNamespacedLimitRange(@PathVariable("name") @NotNull @NotNull String name, @PathVariable("namespace") @NotNull @NotNull String namespace, @Body @NotNull @Valid @NotNull @Valid V1LimitRange body, @QueryValue("pretty") @Nullable @Nullable String pretty, @QueryValue("dryRun") @Nullable @Nullable String dryRun, @QueryValue("fieldManager") @Nullable @Nullable String fieldManager, @QueryValue("fieldValidation") @Nullable @Nullable String fieldValidation)
      replace the specified LimitRange
      Parameters:
      name - name of the LimitRange (required)
      namespace - object name and auth scope, such as for teams and projects (required)
      body - (required)
      pretty - If 'true', then the output is pretty printed. (optional)
      dryRun - When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed (optional)
      fieldManager - fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. (optional)
      fieldValidation - fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)
      Returns:
      OK (status code 200) or Created (status code 201) or Unauthorized (status code 401)
    • replaceNamespacedPersistentVolumeClaim

      @Put("/api/v1/namespaces/{namespace}/persistentvolumeclaims/{name}") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf"}) V1PersistentVolumeClaim replaceNamespacedPersistentVolumeClaim(@PathVariable("name") @NotNull @NotNull String name, @PathVariable("namespace") @NotNull @NotNull String namespace, @Body @NotNull @Valid @NotNull @Valid V1PersistentVolumeClaim body, @QueryValue("pretty") @Nullable @Nullable String pretty, @QueryValue("dryRun") @Nullable @Nullable String dryRun, @QueryValue("fieldManager") @Nullable @Nullable String fieldManager, @QueryValue("fieldValidation") @Nullable @Nullable String fieldValidation)
      replace the specified PersistentVolumeClaim
      Parameters:
      name - name of the PersistentVolumeClaim (required)
      namespace - object name and auth scope, such as for teams and projects (required)
      body - (required)
      pretty - If 'true', then the output is pretty printed. (optional)
      dryRun - When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed (optional)
      fieldManager - fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. (optional)
      fieldValidation - fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)
      Returns:
      OK (status code 200) or Created (status code 201) or Unauthorized (status code 401)
    • replaceNamespacedPersistentVolumeClaimStatus

      @Put("/api/v1/namespaces/{namespace}/persistentvolumeclaims/{name}/status") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf"}) V1PersistentVolumeClaim replaceNamespacedPersistentVolumeClaimStatus(@PathVariable("name") @NotNull @NotNull String name, @PathVariable("namespace") @NotNull @NotNull String namespace, @Body @NotNull @Valid @NotNull @Valid V1PersistentVolumeClaim body, @QueryValue("pretty") @Nullable @Nullable String pretty, @QueryValue("dryRun") @Nullable @Nullable String dryRun, @QueryValue("fieldManager") @Nullable @Nullable String fieldManager, @QueryValue("fieldValidation") @Nullable @Nullable String fieldValidation)
      replace status of the specified PersistentVolumeClaim
      Parameters:
      name - name of the PersistentVolumeClaim (required)
      namespace - object name and auth scope, such as for teams and projects (required)
      body - (required)
      pretty - If 'true', then the output is pretty printed. (optional)
      dryRun - When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed (optional)
      fieldManager - fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. (optional)
      fieldValidation - fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)
      Returns:
      OK (status code 200) or Created (status code 201) or Unauthorized (status code 401)
    • replaceNamespacedPod

      @Put("/api/v1/namespaces/{namespace}/pods/{name}") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf"}) V1Pod replaceNamespacedPod(@PathVariable("name") @NotNull @NotNull String name, @PathVariable("namespace") @NotNull @NotNull String namespace, @Body @NotNull @Valid @NotNull @Valid V1Pod body, @QueryValue("pretty") @Nullable @Nullable String pretty, @QueryValue("dryRun") @Nullable @Nullable String dryRun, @QueryValue("fieldManager") @Nullable @Nullable String fieldManager, @QueryValue("fieldValidation") @Nullable @Nullable String fieldValidation)
      replace the specified Pod
      Parameters:
      name - name of the Pod (required)
      namespace - object name and auth scope, such as for teams and projects (required)
      body - (required)
      pretty - If 'true', then the output is pretty printed. (optional)
      dryRun - When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed (optional)
      fieldManager - fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. (optional)
      fieldValidation - fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)
      Returns:
      OK (status code 200) or Created (status code 201) or Unauthorized (status code 401)
    • replaceNamespacedPodEphemeralcontainers

      @Put("/api/v1/namespaces/{namespace}/pods/{name}/ephemeralcontainers") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf"}) V1Pod replaceNamespacedPodEphemeralcontainers(@PathVariable("name") @NotNull @NotNull String name, @PathVariable("namespace") @NotNull @NotNull String namespace, @Body @NotNull @Valid @NotNull @Valid V1Pod body, @QueryValue("pretty") @Nullable @Nullable String pretty, @QueryValue("dryRun") @Nullable @Nullable String dryRun, @QueryValue("fieldManager") @Nullable @Nullable String fieldManager, @QueryValue("fieldValidation") @Nullable @Nullable String fieldValidation)
      replace ephemeralcontainers of the specified Pod
      Parameters:
      name - name of the Pod (required)
      namespace - object name and auth scope, such as for teams and projects (required)
      body - (required)
      pretty - If 'true', then the output is pretty printed. (optional)
      dryRun - When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed (optional)
      fieldManager - fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. (optional)
      fieldValidation - fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)
      Returns:
      OK (status code 200) or Created (status code 201) or Unauthorized (status code 401)
    • replaceNamespacedPodStatus

      @Put("/api/v1/namespaces/{namespace}/pods/{name}/status") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf"}) V1Pod replaceNamespacedPodStatus(@PathVariable("name") @NotNull @NotNull String name, @PathVariable("namespace") @NotNull @NotNull String namespace, @Body @NotNull @Valid @NotNull @Valid V1Pod body, @QueryValue("pretty") @Nullable @Nullable String pretty, @QueryValue("dryRun") @Nullable @Nullable String dryRun, @QueryValue("fieldManager") @Nullable @Nullable String fieldManager, @QueryValue("fieldValidation") @Nullable @Nullable String fieldValidation)
      replace status of the specified Pod
      Parameters:
      name - name of the Pod (required)
      namespace - object name and auth scope, such as for teams and projects (required)
      body - (required)
      pretty - If 'true', then the output is pretty printed. (optional)
      dryRun - When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed (optional)
      fieldManager - fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. (optional)
      fieldValidation - fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)
      Returns:
      OK (status code 200) or Created (status code 201) or Unauthorized (status code 401)
    • replaceNamespacedPodTemplate

      @Put("/api/v1/namespaces/{namespace}/podtemplates/{name}") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf"}) V1PodTemplate replaceNamespacedPodTemplate(@PathVariable("name") @NotNull @NotNull String name, @PathVariable("namespace") @NotNull @NotNull String namespace, @Body @NotNull @Valid @NotNull @Valid V1PodTemplate body, @QueryValue("pretty") @Nullable @Nullable String pretty, @QueryValue("dryRun") @Nullable @Nullable String dryRun, @QueryValue("fieldManager") @Nullable @Nullable String fieldManager, @QueryValue("fieldValidation") @Nullable @Nullable String fieldValidation)
      replace the specified PodTemplate
      Parameters:
      name - name of the PodTemplate (required)
      namespace - object name and auth scope, such as for teams and projects (required)
      body - (required)
      pretty - If 'true', then the output is pretty printed. (optional)
      dryRun - When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed (optional)
      fieldManager - fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. (optional)
      fieldValidation - fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)
      Returns:
      OK (status code 200) or Created (status code 201) or Unauthorized (status code 401)
    • replaceNamespacedReplicationController

      @Put("/api/v1/namespaces/{namespace}/replicationcontrollers/{name}") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf"}) V1ReplicationController replaceNamespacedReplicationController(@PathVariable("name") @NotNull @NotNull String name, @PathVariable("namespace") @NotNull @NotNull String namespace, @Body @NotNull @Valid @NotNull @Valid V1ReplicationController body, @QueryValue("pretty") @Nullable @Nullable String pretty, @QueryValue("dryRun") @Nullable @Nullable String dryRun, @QueryValue("fieldManager") @Nullable @Nullable String fieldManager, @QueryValue("fieldValidation") @Nullable @Nullable String fieldValidation)
      replace the specified ReplicationController
      Parameters:
      name - name of the ReplicationController (required)
      namespace - object name and auth scope, such as for teams and projects (required)
      body - (required)
      pretty - If 'true', then the output is pretty printed. (optional)
      dryRun - When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed (optional)
      fieldManager - fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. (optional)
      fieldValidation - fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)
      Returns:
      OK (status code 200) or Created (status code 201) or Unauthorized (status code 401)
    • replaceNamespacedReplicationControllerScale

      @Put("/api/v1/namespaces/{namespace}/replicationcontrollers/{name}/scale") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf"}) V1Scale replaceNamespacedReplicationControllerScale(@PathVariable("name") @NotNull @NotNull String name, @PathVariable("namespace") @NotNull @NotNull String namespace, @Body @NotNull @Valid @NotNull @Valid V1Scale body, @QueryValue("pretty") @Nullable @Nullable String pretty, @QueryValue("dryRun") @Nullable @Nullable String dryRun, @QueryValue("fieldManager") @Nullable @Nullable String fieldManager, @QueryValue("fieldValidation") @Nullable @Nullable String fieldValidation)
      replace scale of the specified ReplicationController
      Parameters:
      name - name of the Scale (required)
      namespace - object name and auth scope, such as for teams and projects (required)
      body - (required)
      pretty - If 'true', then the output is pretty printed. (optional)
      dryRun - When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed (optional)
      fieldManager - fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. (optional)
      fieldValidation - fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)
      Returns:
      OK (status code 200) or Created (status code 201) or Unauthorized (status code 401)
    • replaceNamespacedReplicationControllerStatus

      @Put("/api/v1/namespaces/{namespace}/replicationcontrollers/{name}/status") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf"}) V1ReplicationController replaceNamespacedReplicationControllerStatus(@PathVariable("name") @NotNull @NotNull String name, @PathVariable("namespace") @NotNull @NotNull String namespace, @Body @NotNull @Valid @NotNull @Valid V1ReplicationController body, @QueryValue("pretty") @Nullable @Nullable String pretty, @QueryValue("dryRun") @Nullable @Nullable String dryRun, @QueryValue("fieldManager") @Nullable @Nullable String fieldManager, @QueryValue("fieldValidation") @Nullable @Nullable String fieldValidation)
      replace status of the specified ReplicationController
      Parameters:
      name - name of the ReplicationController (required)
      namespace - object name and auth scope, such as for teams and projects (required)
      body - (required)
      pretty - If 'true', then the output is pretty printed. (optional)
      dryRun - When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed (optional)
      fieldManager - fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. (optional)
      fieldValidation - fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)
      Returns:
      OK (status code 200) or Created (status code 201) or Unauthorized (status code 401)
    • replaceNamespacedResourceQuota

      @Put("/api/v1/namespaces/{namespace}/resourcequotas/{name}") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf"}) V1ResourceQuota replaceNamespacedResourceQuota(@PathVariable("name") @NotNull @NotNull String name, @PathVariable("namespace") @NotNull @NotNull String namespace, @Body @NotNull @Valid @NotNull @Valid V1ResourceQuota body, @QueryValue("pretty") @Nullable @Nullable String pretty, @QueryValue("dryRun") @Nullable @Nullable String dryRun, @QueryValue("fieldManager") @Nullable @Nullable String fieldManager, @QueryValue("fieldValidation") @Nullable @Nullable String fieldValidation)
      replace the specified ResourceQuota
      Parameters:
      name - name of the ResourceQuota (required)
      namespace - object name and auth scope, such as for teams and projects (required)
      body - (required)
      pretty - If 'true', then the output is pretty printed. (optional)
      dryRun - When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed (optional)
      fieldManager - fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. (optional)
      fieldValidation - fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)
      Returns:
      OK (status code 200) or Created (status code 201) or Unauthorized (status code 401)
    • replaceNamespacedResourceQuotaStatus

      @Put("/api/v1/namespaces/{namespace}/resourcequotas/{name}/status") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf"}) V1ResourceQuota replaceNamespacedResourceQuotaStatus(@PathVariable("name") @NotNull @NotNull String name, @PathVariable("namespace") @NotNull @NotNull String namespace, @Body @NotNull @Valid @NotNull @Valid V1ResourceQuota body, @QueryValue("pretty") @Nullable @Nullable String pretty, @QueryValue("dryRun") @Nullable @Nullable String dryRun, @QueryValue("fieldManager") @Nullable @Nullable String fieldManager, @QueryValue("fieldValidation") @Nullable @Nullable String fieldValidation)
      replace status of the specified ResourceQuota
      Parameters:
      name - name of the ResourceQuota (required)
      namespace - object name and auth scope, such as for teams and projects (required)
      body - (required)
      pretty - If 'true', then the output is pretty printed. (optional)
      dryRun - When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed (optional)
      fieldManager - fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. (optional)
      fieldValidation - fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)
      Returns:
      OK (status code 200) or Created (status code 201) or Unauthorized (status code 401)
    • replaceNamespacedSecret

      @Put("/api/v1/namespaces/{namespace}/secrets/{name}") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf"}) V1Secret replaceNamespacedSecret(@PathVariable("name") @NotNull @NotNull String name, @PathVariable("namespace") @NotNull @NotNull String namespace, @Body @NotNull @Valid @NotNull @Valid V1Secret body, @QueryValue("pretty") @Nullable @Nullable String pretty, @QueryValue("dryRun") @Nullable @Nullable String dryRun, @QueryValue("fieldManager") @Nullable @Nullable String fieldManager, @QueryValue("fieldValidation") @Nullable @Nullable String fieldValidation)
      replace the specified Secret
      Parameters:
      name - name of the Secret (required)
      namespace - object name and auth scope, such as for teams and projects (required)
      body - (required)
      pretty - If 'true', then the output is pretty printed. (optional)
      dryRun - When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed (optional)
      fieldManager - fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. (optional)
      fieldValidation - fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)
      Returns:
      OK (status code 200) or Created (status code 201) or Unauthorized (status code 401)
    • replaceNamespacedService

      @Put("/api/v1/namespaces/{namespace}/services/{name}") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf"}) V1Service replaceNamespacedService(@PathVariable("name") @NotNull @NotNull String name, @PathVariable("namespace") @NotNull @NotNull String namespace, @Body @NotNull @Valid @NotNull @Valid V1Service body, @QueryValue("pretty") @Nullable @Nullable String pretty, @QueryValue("dryRun") @Nullable @Nullable String dryRun, @QueryValue("fieldManager") @Nullable @Nullable String fieldManager, @QueryValue("fieldValidation") @Nullable @Nullable String fieldValidation)
      replace the specified Service
      Parameters:
      name - name of the Service (required)
      namespace - object name and auth scope, such as for teams and projects (required)
      body - (required)
      pretty - If 'true', then the output is pretty printed. (optional)
      dryRun - When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed (optional)
      fieldManager - fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. (optional)
      fieldValidation - fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)
      Returns:
      OK (status code 200) or Created (status code 201) or Unauthorized (status code 401)
    • replaceNamespacedServiceAccount

      @Put("/api/v1/namespaces/{namespace}/serviceaccounts/{name}") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf"}) V1ServiceAccount replaceNamespacedServiceAccount(@PathVariable("name") @NotNull @NotNull String name, @PathVariable("namespace") @NotNull @NotNull String namespace, @Body @NotNull @Valid @NotNull @Valid V1ServiceAccount body, @QueryValue("pretty") @Nullable @Nullable String pretty, @QueryValue("dryRun") @Nullable @Nullable String dryRun, @QueryValue("fieldManager") @Nullable @Nullable String fieldManager, @QueryValue("fieldValidation") @Nullable @Nullable String fieldValidation)
      replace the specified ServiceAccount
      Parameters:
      name - name of the ServiceAccount (required)
      namespace - object name and auth scope, such as for teams and projects (required)
      body - (required)
      pretty - If 'true', then the output is pretty printed. (optional)
      dryRun - When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed (optional)
      fieldManager - fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. (optional)
      fieldValidation - fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)
      Returns:
      OK (status code 200) or Created (status code 201) or Unauthorized (status code 401)
    • replaceNamespacedServiceStatus

      @Put("/api/v1/namespaces/{namespace}/services/{name}/status") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf"}) V1Service replaceNamespacedServiceStatus(@PathVariable("name") @NotNull @NotNull String name, @PathVariable("namespace") @NotNull @NotNull String namespace, @Body @NotNull @Valid @NotNull @Valid V1Service body, @QueryValue("pretty") @Nullable @Nullable String pretty, @QueryValue("dryRun") @Nullable @Nullable String dryRun, @QueryValue("fieldManager") @Nullable @Nullable String fieldManager, @QueryValue("fieldValidation") @Nullable @Nullable String fieldValidation)
      replace status of the specified Service
      Parameters:
      name - name of the Service (required)
      namespace - object name and auth scope, such as for teams and projects (required)
      body - (required)
      pretty - If 'true', then the output is pretty printed. (optional)
      dryRun - When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed (optional)
      fieldManager - fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. (optional)
      fieldValidation - fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)
      Returns:
      OK (status code 200) or Created (status code 201) or Unauthorized (status code 401)
    • replaceNode

      @Put("/api/v1/nodes/{name}") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf"}) V1Node replaceNode(@PathVariable("name") @NotNull @NotNull String name, @Body @NotNull @Valid @NotNull @Valid V1Node body, @QueryValue("pretty") @Nullable @Nullable String pretty, @QueryValue("dryRun") @Nullable @Nullable String dryRun, @QueryValue("fieldManager") @Nullable @Nullable String fieldManager, @QueryValue("fieldValidation") @Nullable @Nullable String fieldValidation)
      replace the specified Node
      Parameters:
      name - name of the Node (required)
      body - (required)
      pretty - If 'true', then the output is pretty printed. (optional)
      dryRun - When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed (optional)
      fieldManager - fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. (optional)
      fieldValidation - fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)
      Returns:
      OK (status code 200) or Created (status code 201) or Unauthorized (status code 401)
    • replaceNodeStatus

      @Put("/api/v1/nodes/{name}/status") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf"}) V1Node replaceNodeStatus(@PathVariable("name") @NotNull @NotNull String name, @Body @NotNull @Valid @NotNull @Valid V1Node body, @QueryValue("pretty") @Nullable @Nullable String pretty, @QueryValue("dryRun") @Nullable @Nullable String dryRun, @QueryValue("fieldManager") @Nullable @Nullable String fieldManager, @QueryValue("fieldValidation") @Nullable @Nullable String fieldValidation)
      replace status of the specified Node
      Parameters:
      name - name of the Node (required)
      body - (required)
      pretty - If 'true', then the output is pretty printed. (optional)
      dryRun - When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed (optional)
      fieldManager - fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. (optional)
      fieldValidation - fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)
      Returns:
      OK (status code 200) or Created (status code 201) or Unauthorized (status code 401)
    • replacePersistentVolume

      @Put("/api/v1/persistentvolumes/{name}") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf"}) V1PersistentVolume replacePersistentVolume(@PathVariable("name") @NotNull @NotNull String name, @Body @NotNull @Valid @NotNull @Valid V1PersistentVolume body, @QueryValue("pretty") @Nullable @Nullable String pretty, @QueryValue("dryRun") @Nullable @Nullable String dryRun, @QueryValue("fieldManager") @Nullable @Nullable String fieldManager, @QueryValue("fieldValidation") @Nullable @Nullable String fieldValidation)
      replace the specified PersistentVolume
      Parameters:
      name - name of the PersistentVolume (required)
      body - (required)
      pretty - If 'true', then the output is pretty printed. (optional)
      dryRun - When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed (optional)
      fieldManager - fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. (optional)
      fieldValidation - fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)
      Returns:
      OK (status code 200) or Created (status code 201) or Unauthorized (status code 401)
    • replacePersistentVolumeStatus

      @Put("/api/v1/persistentvolumes/{name}/status") @Consumes({"application/json","application/yaml","application/vnd.kubernetes.protobuf"}) V1PersistentVolume replacePersistentVolumeStatus(@PathVariable("name") @NotNull @NotNull String name, @Body @NotNull @Valid @NotNull @Valid V1PersistentVolume body, @QueryValue("pretty") @Nullable @Nullable String pretty, @QueryValue("dryRun") @Nullable @Nullable String dryRun, @QueryValue("fieldManager") @Nullable @Nullable String fieldManager, @QueryValue("fieldValidation") @Nullable @Nullable String fieldValidation)
      replace status of the specified PersistentVolume
      Parameters:
      name - name of the PersistentVolume (required)
      body - (required)
      pretty - If 'true', then the output is pretty printed. (optional)
      dryRun - When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed (optional)
      fieldManager - fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. (optional)
      fieldValidation - fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)
      Returns:
      OK (status code 200) or Created (status code 201) or Unauthorized (status code 401)