1{
2  "definitions": {
3    "io.k8s.api.admissionregistration.v1.MutatingWebhook": {
4      "description": "MutatingWebhook describes an admission webhook and the resources and operations it applies to.",
5      "properties": {
6        "admissionReviewVersions": {
7          "description": "AdmissionReviewVersions is an ordered list of preferred `AdmissionReview` versions the Webhook expects. API server will try to use first version in the list which it supports. If none of the versions specified in this list supported by API server, validation will fail for this object. If a persisted webhook configuration specifies allowed versions and does not include any versions known to the API Server, calls to the webhook will fail and be subject to the failure policy.",
8          "items": {
9            "type": "string"
10          },
11          "type": "array"
12        },
13        "clientConfig": {
14          "$ref": "#/definitions/io.k8s.api.admissionregistration.v1.WebhookClientConfig",
15          "description": "ClientConfig defines how to communicate with the hook. Required"
16        },
17        "failurePolicy": {
18          "description": "FailurePolicy defines how unrecognized errors from the admission endpoint are handled - allowed values are Ignore or Fail. Defaults to Fail.",
19          "type": "string"
20        },
21        "matchPolicy": {
22          "description": "matchPolicy defines how the \"rules\" list is used to match incoming requests. Allowed values are \"Exact\" or \"Equivalent\".\n\n- Exact: match a request only if it exactly matches a specified rule. For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, but \"rules\" only included `apiGroups:[\"apps\"], apiVersions:[\"v1\"], resources: [\"deployments\"]`, a request to apps/v1beta1 or extensions/v1beta1 would not be sent to the webhook.\n\n- Equivalent: match a request if modifies a resource listed in rules, even via another API group or version. For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, and \"rules\" only included `apiGroups:[\"apps\"], apiVersions:[\"v1\"], resources: [\"deployments\"]`, a request to apps/v1beta1 or extensions/v1beta1 would be converted to apps/v1 and sent to the webhook.\n\nDefaults to \"Equivalent\"",
23          "type": "string"
24        },
25        "name": {
26          "description": "The name of the admission webhook. Name should be fully qualified, e.g., imagepolicy.kubernetes.io, where \"imagepolicy\" is the name of the webhook, and kubernetes.io is the name of the organization. Required.",
27          "type": "string"
28        },
29        "namespaceSelector": {
30          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector",
31          "description": "NamespaceSelector decides whether to run the webhook on an object based on whether the namespace for that object matches the selector. If the object itself is a namespace, the matching is performed on object.metadata.labels. If the object is another cluster scoped resource, it never skips the webhook.\n\nFor example, to run the webhook on any objects whose namespace is not associated with \"runlevel\" of \"0\" or \"1\";  you will set the selector as follows: \"namespaceSelector\": {\n  \"matchExpressions\": [\n    {\n      \"key\": \"runlevel\",\n      \"operator\": \"NotIn\",\n      \"values\": [\n        \"0\",\n        \"1\"\n      ]\n    }\n  ]\n}\n\nIf instead you want to only run the webhook on any objects whose namespace is associated with the \"environment\" of \"prod\" or \"staging\"; you will set the selector as follows: \"namespaceSelector\": {\n  \"matchExpressions\": [\n    {\n      \"key\": \"environment\",\n      \"operator\": \"In\",\n      \"values\": [\n        \"prod\",\n        \"staging\"\n      ]\n    }\n  ]\n}\n\nSee https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/ for more examples of label selectors.\n\nDefault to the empty LabelSelector, which matches everything."
32        },
33        "objectSelector": {
34          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector",
35          "description": "ObjectSelector decides whether to run the webhook based on if the object has matching labels. objectSelector is evaluated against both the oldObject and newObject that would be sent to the webhook, and is considered to match if either object matches the selector. A null object (oldObject in the case of create, or newObject in the case of delete) or an object that cannot have labels (like a DeploymentRollback or a PodProxyOptions object) is not considered to match. Use the object selector only if the webhook is opt-in, because end users may skip the admission webhook by setting the labels. Default to the empty LabelSelector, which matches everything."
36        },
37        "reinvocationPolicy": {
38          "description": "reinvocationPolicy indicates whether this webhook should be called multiple times as part of a single admission evaluation. Allowed values are \"Never\" and \"IfNeeded\".\n\nNever: the webhook will not be called more than once in a single admission evaluation.\n\nIfNeeded: the webhook will be called at least one additional time as part of the admission evaluation if the object being admitted is modified by other admission plugins after the initial webhook call. Webhooks that specify this option *must* be idempotent, able to process objects they previously admitted. Note: * the number of additional invocations is not guaranteed to be exactly one. * if additional invocations result in further modifications to the object, webhooks are not guaranteed to be invoked again. * webhooks that use this option may be reordered to minimize the number of additional invocations. * to validate an object after all mutations are guaranteed complete, use a validating admission webhook instead.\n\nDefaults to \"Never\".",
39          "type": "string"
40        },
41        "rules": {
42          "description": "Rules describes what operations on what resources/subresources the webhook cares about. The webhook cares about an operation if it matches _any_ Rule. However, in order to prevent ValidatingAdmissionWebhooks and MutatingAdmissionWebhooks from putting the cluster in a state which cannot be recovered from without completely disabling the plugin, ValidatingAdmissionWebhooks and MutatingAdmissionWebhooks are never called on admission requests for ValidatingWebhookConfiguration and MutatingWebhookConfiguration objects.",
43          "items": {
44            "$ref": "#/definitions/io.k8s.api.admissionregistration.v1.RuleWithOperations"
45          },
46          "type": "array"
47        },
48        "sideEffects": {
49          "description": "SideEffects states whether this webhook has side effects. Acceptable values are: None, NoneOnDryRun (webhooks created via v1beta1 may also specify Some or Unknown). Webhooks with side effects MUST implement a reconciliation system, since a request may be rejected by a future step in the admission chain and the side effects therefore need to be undone. Requests with the dryRun attribute will be auto-rejected if they match a webhook with sideEffects == Unknown or Some.",
50          "type": "string"
51        },
52        "timeoutSeconds": {
53          "description": "TimeoutSeconds specifies the timeout for this webhook. After the timeout passes, the webhook call will be ignored or the API call will fail based on the failure policy. The timeout value must be between 1 and 30 seconds. Default to 10 seconds.",
54          "format": "int32",
55          "type": "integer"
56        }
57      },
58      "required": [
59        "name",
60        "clientConfig",
61        "sideEffects",
62        "admissionReviewVersions"
63      ],
64      "type": "object"
65    },
66    "io.k8s.api.admissionregistration.v1.MutatingWebhookConfiguration": {
67      "description": "MutatingWebhookConfiguration describes the configuration of and admission webhook that accept or reject and may change the object.",
68      "properties": {
69        "apiVersion": {
70          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
71          "type": "string"
72        },
73        "kind": {
74          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
75          "type": "string"
76        },
77        "metadata": {
78          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
79          "description": "Standard object metadata; More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata."
80        },
81        "webhooks": {
82          "description": "Webhooks is a list of webhooks and the affected resources and operations.",
83          "items": {
84            "$ref": "#/definitions/io.k8s.api.admissionregistration.v1.MutatingWebhook"
85          },
86          "type": "array",
87          "x-kubernetes-patch-merge-key": "name",
88          "x-kubernetes-patch-strategy": "merge"
89        }
90      },
91      "type": "object",
92      "x-kubernetes-group-version-kind": [
93        {
94          "group": "admissionregistration.k8s.io",
95          "kind": "MutatingWebhookConfiguration",
96          "version": "v1"
97        }
98      ]
99    },
100    "io.k8s.api.admissionregistration.v1.MutatingWebhookConfigurationList": {
101      "description": "MutatingWebhookConfigurationList is a list of MutatingWebhookConfiguration.",
102      "properties": {
103        "apiVersion": {
104          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
105          "type": "string"
106        },
107        "items": {
108          "description": "List of MutatingWebhookConfiguration.",
109          "items": {
110            "$ref": "#/definitions/io.k8s.api.admissionregistration.v1.MutatingWebhookConfiguration"
111          },
112          "type": "array"
113        },
114        "kind": {
115          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
116          "type": "string"
117        },
118        "metadata": {
119          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
120          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds"
121        }
122      },
123      "required": [
124        "items"
125      ],
126      "type": "object",
127      "x-kubernetes-group-version-kind": [
128        {
129          "group": "admissionregistration.k8s.io",
130          "kind": "MutatingWebhookConfigurationList",
131          "version": "v1"
132        }
133      ]
134    },
135    "io.k8s.api.admissionregistration.v1.RuleWithOperations": {
136      "description": "RuleWithOperations is a tuple of Operations and Resources. It is recommended to make sure that all the tuple expansions are valid.",
137      "properties": {
138        "apiGroups": {
139          "description": "APIGroups is the API groups the resources belong to. '*' is all groups. If '*' is present, the length of the slice must be one. Required.",
140          "items": {
141            "type": "string"
142          },
143          "type": "array"
144        },
145        "apiVersions": {
146          "description": "APIVersions is the API versions the resources belong to. '*' is all versions. If '*' is present, the length of the slice must be one. Required.",
147          "items": {
148            "type": "string"
149          },
150          "type": "array"
151        },
152        "operations": {
153          "description": "Operations is the operations the admission hook cares about - CREATE, UPDATE, DELETE, CONNECT or * for all of those operations and any future admission operations that are added. If '*' is present, the length of the slice must be one. Required.",
154          "items": {
155            "type": "string"
156          },
157          "type": "array"
158        },
159        "resources": {
160          "description": "Resources is a list of resources this rule applies to.\n\nFor example: 'pods' means pods. 'pods/log' means the log subresource of pods. '*' means all resources, but not subresources. 'pods/*' means all subresources of pods. '*/scale' means all scale subresources. '*/*' means all resources and their subresources.\n\nIf wildcard is present, the validation rule will ensure resources do not overlap with each other.\n\nDepending on the enclosing object, subresources might not be allowed. Required.",
161          "items": {
162            "type": "string"
163          },
164          "type": "array"
165        },
166        "scope": {
167          "description": "scope specifies the scope of this rule. Valid values are \"Cluster\", \"Namespaced\", and \"*\" \"Cluster\" means that only cluster-scoped resources will match this rule. Namespace API objects are cluster-scoped. \"Namespaced\" means that only namespaced resources will match this rule. \"*\" means that there are no scope restrictions. Subresources match the scope of their parent resource. Default is \"*\".",
168          "type": "string"
169        }
170      },
171      "type": "object"
172    },
173    "io.k8s.api.admissionregistration.v1.ServiceReference": {
174      "description": "ServiceReference holds a reference to Service.legacy.k8s.io",
175      "properties": {
176        "name": {
177          "description": "`name` is the name of the service. Required",
178          "type": "string"
179        },
180        "namespace": {
181          "description": "`namespace` is the namespace of the service. Required",
182          "type": "string"
183        },
184        "path": {
185          "description": "`path` is an optional URL path which will be sent in any request to this service.",
186          "type": "string"
187        },
188        "port": {
189          "description": "If specified, the port on the service that hosting webhook. Default to 443 for backward compatibility. `port` should be a valid port number (1-65535, inclusive).",
190          "format": "int32",
191          "type": "integer"
192        }
193      },
194      "required": [
195        "namespace",
196        "name"
197      ],
198      "type": "object"
199    },
200    "io.k8s.api.admissionregistration.v1.ValidatingWebhook": {
201      "description": "ValidatingWebhook describes an admission webhook and the resources and operations it applies to.",
202      "properties": {
203        "admissionReviewVersions": {
204          "description": "AdmissionReviewVersions is an ordered list of preferred `AdmissionReview` versions the Webhook expects. API server will try to use first version in the list which it supports. If none of the versions specified in this list supported by API server, validation will fail for this object. If a persisted webhook configuration specifies allowed versions and does not include any versions known to the API Server, calls to the webhook will fail and be subject to the failure policy.",
205          "items": {
206            "type": "string"
207          },
208          "type": "array"
209        },
210        "clientConfig": {
211          "$ref": "#/definitions/io.k8s.api.admissionregistration.v1.WebhookClientConfig",
212          "description": "ClientConfig defines how to communicate with the hook. Required"
213        },
214        "failurePolicy": {
215          "description": "FailurePolicy defines how unrecognized errors from the admission endpoint are handled - allowed values are Ignore or Fail. Defaults to Fail.",
216          "type": "string"
217        },
218        "matchPolicy": {
219          "description": "matchPolicy defines how the \"rules\" list is used to match incoming requests. Allowed values are \"Exact\" or \"Equivalent\".\n\n- Exact: match a request only if it exactly matches a specified rule. For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, but \"rules\" only included `apiGroups:[\"apps\"], apiVersions:[\"v1\"], resources: [\"deployments\"]`, a request to apps/v1beta1 or extensions/v1beta1 would not be sent to the webhook.\n\n- Equivalent: match a request if modifies a resource listed in rules, even via another API group or version. For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, and \"rules\" only included `apiGroups:[\"apps\"], apiVersions:[\"v1\"], resources: [\"deployments\"]`, a request to apps/v1beta1 or extensions/v1beta1 would be converted to apps/v1 and sent to the webhook.\n\nDefaults to \"Equivalent\"",
220          "type": "string"
221        },
222        "name": {
223          "description": "The name of the admission webhook. Name should be fully qualified, e.g., imagepolicy.kubernetes.io, where \"imagepolicy\" is the name of the webhook, and kubernetes.io is the name of the organization. Required.",
224          "type": "string"
225        },
226        "namespaceSelector": {
227          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector",
228          "description": "NamespaceSelector decides whether to run the webhook on an object based on whether the namespace for that object matches the selector. If the object itself is a namespace, the matching is performed on object.metadata.labels. If the object is another cluster scoped resource, it never skips the webhook.\n\nFor example, to run the webhook on any objects whose namespace is not associated with \"runlevel\" of \"0\" or \"1\";  you will set the selector as follows: \"namespaceSelector\": {\n  \"matchExpressions\": [\n    {\n      \"key\": \"runlevel\",\n      \"operator\": \"NotIn\",\n      \"values\": [\n        \"0\",\n        \"1\"\n      ]\n    }\n  ]\n}\n\nIf instead you want to only run the webhook on any objects whose namespace is associated with the \"environment\" of \"prod\" or \"staging\"; you will set the selector as follows: \"namespaceSelector\": {\n  \"matchExpressions\": [\n    {\n      \"key\": \"environment\",\n      \"operator\": \"In\",\n      \"values\": [\n        \"prod\",\n        \"staging\"\n      ]\n    }\n  ]\n}\n\nSee https://kubernetes.io/docs/concepts/overview/working-with-objects/labels for more examples of label selectors.\n\nDefault to the empty LabelSelector, which matches everything."
229        },
230        "objectSelector": {
231          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector",
232          "description": "ObjectSelector decides whether to run the webhook based on if the object has matching labels. objectSelector is evaluated against both the oldObject and newObject that would be sent to the webhook, and is considered to match if either object matches the selector. A null object (oldObject in the case of create, or newObject in the case of delete) or an object that cannot have labels (like a DeploymentRollback or a PodProxyOptions object) is not considered to match. Use the object selector only if the webhook is opt-in, because end users may skip the admission webhook by setting the labels. Default to the empty LabelSelector, which matches everything."
233        },
234        "rules": {
235          "description": "Rules describes what operations on what resources/subresources the webhook cares about. The webhook cares about an operation if it matches _any_ Rule. However, in order to prevent ValidatingAdmissionWebhooks and MutatingAdmissionWebhooks from putting the cluster in a state which cannot be recovered from without completely disabling the plugin, ValidatingAdmissionWebhooks and MutatingAdmissionWebhooks are never called on admission requests for ValidatingWebhookConfiguration and MutatingWebhookConfiguration objects.",
236          "items": {
237            "$ref": "#/definitions/io.k8s.api.admissionregistration.v1.RuleWithOperations"
238          },
239          "type": "array"
240        },
241        "sideEffects": {
242          "description": "SideEffects states whether this webhook has side effects. Acceptable values are: None, NoneOnDryRun (webhooks created via v1beta1 may also specify Some or Unknown). Webhooks with side effects MUST implement a reconciliation system, since a request may be rejected by a future step in the admission chain and the side effects therefore need to be undone. Requests with the dryRun attribute will be auto-rejected if they match a webhook with sideEffects == Unknown or Some.",
243          "type": "string"
244        },
245        "timeoutSeconds": {
246          "description": "TimeoutSeconds specifies the timeout for this webhook. After the timeout passes, the webhook call will be ignored or the API call will fail based on the failure policy. The timeout value must be between 1 and 30 seconds. Default to 10 seconds.",
247          "format": "int32",
248          "type": "integer"
249        }
250      },
251      "required": [
252        "name",
253        "clientConfig",
254        "sideEffects",
255        "admissionReviewVersions"
256      ],
257      "type": "object"
258    },
259    "io.k8s.api.admissionregistration.v1.ValidatingWebhookConfiguration": {
260      "description": "ValidatingWebhookConfiguration describes the configuration of and admission webhook that accept or reject and object without changing it.",
261      "properties": {
262        "apiVersion": {
263          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
264          "type": "string"
265        },
266        "kind": {
267          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
268          "type": "string"
269        },
270        "metadata": {
271          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
272          "description": "Standard object metadata; More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata."
273        },
274        "webhooks": {
275          "description": "Webhooks is a list of webhooks and the affected resources and operations.",
276          "items": {
277            "$ref": "#/definitions/io.k8s.api.admissionregistration.v1.ValidatingWebhook"
278          },
279          "type": "array",
280          "x-kubernetes-patch-merge-key": "name",
281          "x-kubernetes-patch-strategy": "merge"
282        }
283      },
284      "type": "object",
285      "x-kubernetes-group-version-kind": [
286        {
287          "group": "admissionregistration.k8s.io",
288          "kind": "ValidatingWebhookConfiguration",
289          "version": "v1"
290        }
291      ]
292    },
293    "io.k8s.api.admissionregistration.v1.ValidatingWebhookConfigurationList": {
294      "description": "ValidatingWebhookConfigurationList is a list of ValidatingWebhookConfiguration.",
295      "properties": {
296        "apiVersion": {
297          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
298          "type": "string"
299        },
300        "items": {
301          "description": "List of ValidatingWebhookConfiguration.",
302          "items": {
303            "$ref": "#/definitions/io.k8s.api.admissionregistration.v1.ValidatingWebhookConfiguration"
304          },
305          "type": "array"
306        },
307        "kind": {
308          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
309          "type": "string"
310        },
311        "metadata": {
312          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
313          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds"
314        }
315      },
316      "required": [
317        "items"
318      ],
319      "type": "object",
320      "x-kubernetes-group-version-kind": [
321        {
322          "group": "admissionregistration.k8s.io",
323          "kind": "ValidatingWebhookConfigurationList",
324          "version": "v1"
325        }
326      ]
327    },
328    "io.k8s.api.admissionregistration.v1.WebhookClientConfig": {
329      "description": "WebhookClientConfig contains the information to make a TLS connection with the webhook",
330      "properties": {
331        "caBundle": {
332          "description": "`caBundle` is a PEM encoded CA bundle which will be used to validate the webhook's server certificate. If unspecified, system trust roots on the apiserver are used.",
333          "format": "byte",
334          "type": "string"
335        },
336        "service": {
337          "$ref": "#/definitions/io.k8s.api.admissionregistration.v1.ServiceReference",
338          "description": "`service` is a reference to the service for this webhook. Either `service` or `url` must be specified.\n\nIf the webhook is running within the cluster, then you should use `service`."
339        },
340        "url": {
341          "description": "`url` gives the location of the webhook, in standard URL form (`scheme://host:port/path`). Exactly one of `url` or `service` must be specified.\n\nThe `host` should not refer to a service running in the cluster; use the `service` field instead. The host might be resolved via external DNS in some apiservers (e.g., `kube-apiserver` cannot resolve in-cluster DNS as that would be a layering violation). `host` may also be an IP address.\n\nPlease note that using `localhost` or `127.0.0.1` as a `host` is risky unless you take great care to run this webhook on all hosts which run an apiserver which might need to make calls to this webhook. Such installs are likely to be non-portable, i.e., not easy to turn up in a new cluster.\n\nThe scheme must be \"https\"; the URL must begin with \"https://\".\n\nA path is optional, and if present may be any string permissible in a URL. You may use the path to pass an arbitrary string to the webhook, for example, a cluster identifier.\n\nAttempting to use a user or basic auth e.g. \"user:password@\" is not allowed. Fragments (\"#...\") and query parameters (\"?...\") are not allowed, either.",
342          "type": "string"
343        }
344      },
345      "type": "object"
346    },
347    "io.k8s.api.apiserverinternal.v1alpha1.ServerStorageVersion": {
348      "description": "An API server instance reports the version it can decode and the version it encodes objects to when persisting objects in the backend.",
349      "properties": {
350        "apiServerID": {
351          "description": "The ID of the reporting API server.",
352          "type": "string"
353        },
354        "decodableVersions": {
355          "description": "The API server can decode objects encoded in these versions. The encodingVersion must be included in the decodableVersions.",
356          "items": {
357            "type": "string"
358          },
359          "type": "array",
360          "x-kubernetes-list-type": "set"
361        },
362        "encodingVersion": {
363          "description": "The API server encodes the object to this version when persisting it in the backend (e.g., etcd).",
364          "type": "string"
365        }
366      },
367      "type": "object"
368    },
369    "io.k8s.api.apiserverinternal.v1alpha1.StorageVersion": {
370      "description": "\n Storage version of a specific resource.",
371      "properties": {
372        "apiVersion": {
373          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
374          "type": "string"
375        },
376        "kind": {
377          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
378          "type": "string"
379        },
380        "metadata": {
381          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
382          "description": "The name is <group>.<resource>."
383        },
384        "spec": {
385          "$ref": "#/definitions/io.k8s.api.apiserverinternal.v1alpha1.StorageVersionSpec",
386          "description": "Spec is an empty spec. It is here to comply with Kubernetes API style."
387        },
388        "status": {
389          "$ref": "#/definitions/io.k8s.api.apiserverinternal.v1alpha1.StorageVersionStatus",
390          "description": "API server instances report the version they can decode and the version they encode objects to when persisting objects in the backend."
391        }
392      },
393      "required": [
394        "spec",
395        "status"
396      ],
397      "type": "object",
398      "x-kubernetes-group-version-kind": [
399        {
400          "group": "internal.apiserver.k8s.io",
401          "kind": "StorageVersion",
402          "version": "v1alpha1"
403        }
404      ]
405    },
406    "io.k8s.api.apiserverinternal.v1alpha1.StorageVersionCondition": {
407      "description": "Describes the state of the storageVersion at a certain point.",
408      "properties": {
409        "lastTransitionTime": {
410          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
411          "description": "Last time the condition transitioned from one status to another."
412        },
413        "message": {
414          "description": "A human readable message indicating details about the transition.",
415          "type": "string"
416        },
417        "observedGeneration": {
418          "description": "If set, this represents the .metadata.generation that the condition was set based upon.",
419          "format": "int64",
420          "type": "integer"
421        },
422        "reason": {
423          "description": "The reason for the condition's last transition.",
424          "type": "string"
425        },
426        "status": {
427          "description": "Status of the condition, one of True, False, Unknown.",
428          "type": "string"
429        },
430        "type": {
431          "description": "Type of the condition.",
432          "type": "string"
433        }
434      },
435      "required": [
436        "type",
437        "status",
438        "reason"
439      ],
440      "type": "object"
441    },
442    "io.k8s.api.apiserverinternal.v1alpha1.StorageVersionList": {
443      "description": "A list of StorageVersions.",
444      "properties": {
445        "apiVersion": {
446          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
447          "type": "string"
448        },
449        "items": {
450          "description": "Items holds a list of StorageVersion",
451          "items": {
452            "$ref": "#/definitions/io.k8s.api.apiserverinternal.v1alpha1.StorageVersion"
453          },
454          "type": "array"
455        },
456        "kind": {
457          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
458          "type": "string"
459        },
460        "metadata": {
461          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
462          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
463        }
464      },
465      "required": [
466        "items"
467      ],
468      "type": "object",
469      "x-kubernetes-group-version-kind": [
470        {
471          "group": "internal.apiserver.k8s.io",
472          "kind": "StorageVersionList",
473          "version": "v1alpha1"
474        }
475      ]
476    },
477    "io.k8s.api.apiserverinternal.v1alpha1.StorageVersionSpec": {
478      "description": "StorageVersionSpec is an empty spec.",
479      "type": "object"
480    },
481    "io.k8s.api.apiserverinternal.v1alpha1.StorageVersionStatus": {
482      "description": "API server instances report the versions they can decode and the version they encode objects to when persisting objects in the backend.",
483      "properties": {
484        "commonEncodingVersion": {
485          "description": "If all API server instances agree on the same encoding storage version, then this field is set to that version. Otherwise this field is left empty. API servers should finish updating its storageVersionStatus entry before serving write operations, so that this field will be in sync with the reality.",
486          "type": "string"
487        },
488        "conditions": {
489          "description": "The latest available observations of the storageVersion's state.",
490          "items": {
491            "$ref": "#/definitions/io.k8s.api.apiserverinternal.v1alpha1.StorageVersionCondition"
492          },
493          "type": "array",
494          "x-kubernetes-list-map-keys": [
495            "type"
496          ],
497          "x-kubernetes-list-type": "map"
498        },
499        "storageVersions": {
500          "description": "The reported versions per API server instance.",
501          "items": {
502            "$ref": "#/definitions/io.k8s.api.apiserverinternal.v1alpha1.ServerStorageVersion"
503          },
504          "type": "array",
505          "x-kubernetes-list-map-keys": [
506            "apiServerID"
507          ],
508          "x-kubernetes-list-type": "map"
509        }
510      },
511      "type": "object"
512    },
513    "io.k8s.api.apps.v1.ControllerRevision": {
514      "description": "ControllerRevision implements an immutable snapshot of state data. Clients are responsible for serializing and deserializing the objects that contain their internal state. Once a ControllerRevision has been successfully created, it can not be updated. The API Server will fail validation of all requests that attempt to mutate the Data field. ControllerRevisions may, however, be deleted. Note that, due to its use by both the DaemonSet and StatefulSet controllers for update and rollback, this object is beta. However, it may be subject to name and representation changes in future releases, and clients should not depend on its stability. It is primarily for internal use by controllers.",
515      "properties": {
516        "apiVersion": {
517          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
518          "type": "string"
519        },
520        "data": {
521          "$ref": "#/definitions/io.k8s.apimachinery.pkg.runtime.RawExtension",
522          "description": "Data is the serialized representation of the state."
523        },
524        "kind": {
525          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
526          "type": "string"
527        },
528        "metadata": {
529          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
530          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
531        },
532        "revision": {
533          "description": "Revision indicates the revision of the state represented by Data.",
534          "format": "int64",
535          "type": "integer"
536        }
537      },
538      "required": [
539        "revision"
540      ],
541      "type": "object",
542      "x-kubernetes-group-version-kind": [
543        {
544          "group": "apps",
545          "kind": "ControllerRevision",
546          "version": "v1"
547        }
548      ]
549    },
550    "io.k8s.api.apps.v1.ControllerRevisionList": {
551      "description": "ControllerRevisionList is a resource containing a list of ControllerRevision objects.",
552      "properties": {
553        "apiVersion": {
554          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
555          "type": "string"
556        },
557        "items": {
558          "description": "Items is the list of ControllerRevisions",
559          "items": {
560            "$ref": "#/definitions/io.k8s.api.apps.v1.ControllerRevision"
561          },
562          "type": "array"
563        },
564        "kind": {
565          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
566          "type": "string"
567        },
568        "metadata": {
569          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
570          "description": "More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
571        }
572      },
573      "required": [
574        "items"
575      ],
576      "type": "object",
577      "x-kubernetes-group-version-kind": [
578        {
579          "group": "apps",
580          "kind": "ControllerRevisionList",
581          "version": "v1"
582        }
583      ]
584    },
585    "io.k8s.api.apps.v1.DaemonSet": {
586      "description": "DaemonSet represents the configuration of a daemon set.",
587      "properties": {
588        "apiVersion": {
589          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
590          "type": "string"
591        },
592        "kind": {
593          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
594          "type": "string"
595        },
596        "metadata": {
597          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
598          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
599        },
600        "spec": {
601          "$ref": "#/definitions/io.k8s.api.apps.v1.DaemonSetSpec",
602          "description": "The desired behavior of this daemon set. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status"
603        },
604        "status": {
605          "$ref": "#/definitions/io.k8s.api.apps.v1.DaemonSetStatus",
606          "description": "The current status of this daemon set. This data may be out of date by some window of time. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status"
607        }
608      },
609      "type": "object",
610      "x-kubernetes-group-version-kind": [
611        {
612          "group": "apps",
613          "kind": "DaemonSet",
614          "version": "v1"
615        }
616      ]
617    },
618    "io.k8s.api.apps.v1.DaemonSetCondition": {
619      "description": "DaemonSetCondition describes the state of a DaemonSet at a certain point.",
620      "properties": {
621        "lastTransitionTime": {
622          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
623          "description": "Last time the condition transitioned from one status to another."
624        },
625        "message": {
626          "description": "A human readable message indicating details about the transition.",
627          "type": "string"
628        },
629        "reason": {
630          "description": "The reason for the condition's last transition.",
631          "type": "string"
632        },
633        "status": {
634          "description": "Status of the condition, one of True, False, Unknown.",
635          "type": "string"
636        },
637        "type": {
638          "description": "Type of DaemonSet condition.",
639          "type": "string"
640        }
641      },
642      "required": [
643        "type",
644        "status"
645      ],
646      "type": "object"
647    },
648    "io.k8s.api.apps.v1.DaemonSetList": {
649      "description": "DaemonSetList is a collection of daemon sets.",
650      "properties": {
651        "apiVersion": {
652          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
653          "type": "string"
654        },
655        "items": {
656          "description": "A list of daemon sets.",
657          "items": {
658            "$ref": "#/definitions/io.k8s.api.apps.v1.DaemonSet"
659          },
660          "type": "array"
661        },
662        "kind": {
663          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
664          "type": "string"
665        },
666        "metadata": {
667          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
668          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
669        }
670      },
671      "required": [
672        "items"
673      ],
674      "type": "object",
675      "x-kubernetes-group-version-kind": [
676        {
677          "group": "apps",
678          "kind": "DaemonSetList",
679          "version": "v1"
680        }
681      ]
682    },
683    "io.k8s.api.apps.v1.DaemonSetSpec": {
684      "description": "DaemonSetSpec is the specification of a daemon set.",
685      "properties": {
686        "minReadySeconds": {
687          "description": "The minimum number of seconds for which a newly created DaemonSet pod should be ready without any of its container crashing, for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready).",
688          "format": "int32",
689          "type": "integer"
690        },
691        "revisionHistoryLimit": {
692          "description": "The number of old history to retain to allow rollback. This is a pointer to distinguish between explicit zero and not specified. Defaults to 10.",
693          "format": "int32",
694          "type": "integer"
695        },
696        "selector": {
697          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector",
698          "description": "A label query over pods that are managed by the daemon set. Must match in order to be controlled. It must match the pod template's labels. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors"
699        },
700        "template": {
701          "$ref": "#/definitions/io.k8s.api.core.v1.PodTemplateSpec",
702          "description": "An object that describes the pod that will be created. The DaemonSet will create exactly one copy of this pod on every node that matches the template's node selector (or on every node if no node selector is specified). More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller#pod-template"
703        },
704        "updateStrategy": {
705          "$ref": "#/definitions/io.k8s.api.apps.v1.DaemonSetUpdateStrategy",
706          "description": "An update strategy to replace existing DaemonSet pods with new pods."
707        }
708      },
709      "required": [
710        "selector",
711        "template"
712      ],
713      "type": "object"
714    },
715    "io.k8s.api.apps.v1.DaemonSetStatus": {
716      "description": "DaemonSetStatus represents the current status of a daemon set.",
717      "properties": {
718        "collisionCount": {
719          "description": "Count of hash collisions for the DaemonSet. The DaemonSet controller uses this field as a collision avoidance mechanism when it needs to create the name for the newest ControllerRevision.",
720          "format": "int32",
721          "type": "integer"
722        },
723        "conditions": {
724          "description": "Represents the latest available observations of a DaemonSet's current state.",
725          "items": {
726            "$ref": "#/definitions/io.k8s.api.apps.v1.DaemonSetCondition"
727          },
728          "type": "array",
729          "x-kubernetes-patch-merge-key": "type",
730          "x-kubernetes-patch-strategy": "merge"
731        },
732        "currentNumberScheduled": {
733          "description": "The number of nodes that are running at least 1 daemon pod and are supposed to run the daemon pod. More info: https://kubernetes.io/docs/concepts/workloads/controllers/daemonset/",
734          "format": "int32",
735          "type": "integer"
736        },
737        "desiredNumberScheduled": {
738          "description": "The total number of nodes that should be running the daemon pod (including nodes correctly running the daemon pod). More info: https://kubernetes.io/docs/concepts/workloads/controllers/daemonset/",
739          "format": "int32",
740          "type": "integer"
741        },
742        "numberAvailable": {
743          "description": "The number of nodes that should be running the daemon pod and have one or more of the daemon pod running and available (ready for at least spec.minReadySeconds)",
744          "format": "int32",
745          "type": "integer"
746        },
747        "numberMisscheduled": {
748          "description": "The number of nodes that are running the daemon pod, but are not supposed to run the daemon pod. More info: https://kubernetes.io/docs/concepts/workloads/controllers/daemonset/",
749          "format": "int32",
750          "type": "integer"
751        },
752        "numberReady": {
753          "description": "The number of nodes that should be running the daemon pod and have one or more of the daemon pod running and ready.",
754          "format": "int32",
755          "type": "integer"
756        },
757        "numberUnavailable": {
758          "description": "The number of nodes that should be running the daemon pod and have none of the daemon pod running and available (ready for at least spec.minReadySeconds)",
759          "format": "int32",
760          "type": "integer"
761        },
762        "observedGeneration": {
763          "description": "The most recent generation observed by the daemon set controller.",
764          "format": "int64",
765          "type": "integer"
766        },
767        "updatedNumberScheduled": {
768          "description": "The total number of nodes that are running updated daemon pod",
769          "format": "int32",
770          "type": "integer"
771        }
772      },
773      "required": [
774        "currentNumberScheduled",
775        "numberMisscheduled",
776        "desiredNumberScheduled",
777        "numberReady"
778      ],
779      "type": "object"
780    },
781    "io.k8s.api.apps.v1.DaemonSetUpdateStrategy": {
782      "description": "DaemonSetUpdateStrategy is a struct used to control the update strategy for a DaemonSet.",
783      "properties": {
784        "rollingUpdate": {
785          "$ref": "#/definitions/io.k8s.api.apps.v1.RollingUpdateDaemonSet",
786          "description": "Rolling update config params. Present only if type = \"RollingUpdate\"."
787        },
788        "type": {
789          "description": "Type of daemon set update. Can be \"RollingUpdate\" or \"OnDelete\". Default is RollingUpdate.",
790          "type": "string"
791        }
792      },
793      "type": "object"
794    },
795    "io.k8s.api.apps.v1.Deployment": {
796      "description": "Deployment enables declarative updates for Pods and ReplicaSets.",
797      "properties": {
798        "apiVersion": {
799          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
800          "type": "string"
801        },
802        "kind": {
803          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
804          "type": "string"
805        },
806        "metadata": {
807          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
808          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
809        },
810        "spec": {
811          "$ref": "#/definitions/io.k8s.api.apps.v1.DeploymentSpec",
812          "description": "Specification of the desired behavior of the Deployment."
813        },
814        "status": {
815          "$ref": "#/definitions/io.k8s.api.apps.v1.DeploymentStatus",
816          "description": "Most recently observed status of the Deployment."
817        }
818      },
819      "type": "object",
820      "x-kubernetes-group-version-kind": [
821        {
822          "group": "apps",
823          "kind": "Deployment",
824          "version": "v1"
825        }
826      ]
827    },
828    "io.k8s.api.apps.v1.DeploymentCondition": {
829      "description": "DeploymentCondition describes the state of a deployment at a certain point.",
830      "properties": {
831        "lastTransitionTime": {
832          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
833          "description": "Last time the condition transitioned from one status to another."
834        },
835        "lastUpdateTime": {
836          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
837          "description": "The last time this condition was updated."
838        },
839        "message": {
840          "description": "A human readable message indicating details about the transition.",
841          "type": "string"
842        },
843        "reason": {
844          "description": "The reason for the condition's last transition.",
845          "type": "string"
846        },
847        "status": {
848          "description": "Status of the condition, one of True, False, Unknown.",
849          "type": "string"
850        },
851        "type": {
852          "description": "Type of deployment condition.",
853          "type": "string"
854        }
855      },
856      "required": [
857        "type",
858        "status"
859      ],
860      "type": "object"
861    },
862    "io.k8s.api.apps.v1.DeploymentList": {
863      "description": "DeploymentList is a list of Deployments.",
864      "properties": {
865        "apiVersion": {
866          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
867          "type": "string"
868        },
869        "items": {
870          "description": "Items is the list of Deployments.",
871          "items": {
872            "$ref": "#/definitions/io.k8s.api.apps.v1.Deployment"
873          },
874          "type": "array"
875        },
876        "kind": {
877          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
878          "type": "string"
879        },
880        "metadata": {
881          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
882          "description": "Standard list metadata."
883        }
884      },
885      "required": [
886        "items"
887      ],
888      "type": "object",
889      "x-kubernetes-group-version-kind": [
890        {
891          "group": "apps",
892          "kind": "DeploymentList",
893          "version": "v1"
894        }
895      ]
896    },
897    "io.k8s.api.apps.v1.DeploymentSpec": {
898      "description": "DeploymentSpec is the specification of the desired behavior of the Deployment.",
899      "properties": {
900        "minReadySeconds": {
901          "description": "Minimum number of seconds for which a newly created pod should be ready without any of its container crashing, for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready)",
902          "format": "int32",
903          "type": "integer"
904        },
905        "paused": {
906          "description": "Indicates that the deployment is paused.",
907          "type": "boolean"
908        },
909        "progressDeadlineSeconds": {
910          "description": "The maximum time in seconds for a deployment to make progress before it is considered to be failed. The deployment controller will continue to process failed deployments and a condition with a ProgressDeadlineExceeded reason will be surfaced in the deployment status. Note that progress will not be estimated during the time a deployment is paused. Defaults to 600s.",
911          "format": "int32",
912          "type": "integer"
913        },
914        "replicas": {
915          "description": "Number of desired pods. This is a pointer to distinguish between explicit zero and not specified. Defaults to 1.",
916          "format": "int32",
917          "type": "integer"
918        },
919        "revisionHistoryLimit": {
920          "description": "The number of old ReplicaSets to retain to allow rollback. This is a pointer to distinguish between explicit zero and not specified. Defaults to 10.",
921          "format": "int32",
922          "type": "integer"
923        },
924        "selector": {
925          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector",
926          "description": "Label selector for pods. Existing ReplicaSets whose pods are selected by this will be the ones affected by this deployment. It must match the pod template's labels."
927        },
928        "strategy": {
929          "$ref": "#/definitions/io.k8s.api.apps.v1.DeploymentStrategy",
930          "description": "The deployment strategy to use to replace existing pods with new ones.",
931          "x-kubernetes-patch-strategy": "retainKeys"
932        },
933        "template": {
934          "$ref": "#/definitions/io.k8s.api.core.v1.PodTemplateSpec",
935          "description": "Template describes the pods that will be created."
936        }
937      },
938      "required": [
939        "selector",
940        "template"
941      ],
942      "type": "object"
943    },
944    "io.k8s.api.apps.v1.DeploymentStatus": {
945      "description": "DeploymentStatus is the most recently observed status of the Deployment.",
946      "properties": {
947        "availableReplicas": {
948          "description": "Total number of available pods (ready for at least minReadySeconds) targeted by this deployment.",
949          "format": "int32",
950          "type": "integer"
951        },
952        "collisionCount": {
953          "description": "Count of hash collisions for the Deployment. The Deployment controller uses this field as a collision avoidance mechanism when it needs to create the name for the newest ReplicaSet.",
954          "format": "int32",
955          "type": "integer"
956        },
957        "conditions": {
958          "description": "Represents the latest available observations of a deployment's current state.",
959          "items": {
960            "$ref": "#/definitions/io.k8s.api.apps.v1.DeploymentCondition"
961          },
962          "type": "array",
963          "x-kubernetes-patch-merge-key": "type",
964          "x-kubernetes-patch-strategy": "merge"
965        },
966        "observedGeneration": {
967          "description": "The generation observed by the deployment controller.",
968          "format": "int64",
969          "type": "integer"
970        },
971        "readyReplicas": {
972          "description": "Total number of ready pods targeted by this deployment.",
973          "format": "int32",
974          "type": "integer"
975        },
976        "replicas": {
977          "description": "Total number of non-terminated pods targeted by this deployment (their labels match the selector).",
978          "format": "int32",
979          "type": "integer"
980        },
981        "unavailableReplicas": {
982          "description": "Total number of unavailable pods targeted by this deployment. This is the total number of pods that are still required for the deployment to have 100% available capacity. They may either be pods that are running but not yet available or pods that still have not been created.",
983          "format": "int32",
984          "type": "integer"
985        },
986        "updatedReplicas": {
987          "description": "Total number of non-terminated pods targeted by this deployment that have the desired template spec.",
988          "format": "int32",
989          "type": "integer"
990        }
991      },
992      "type": "object"
993    },
994    "io.k8s.api.apps.v1.DeploymentStrategy": {
995      "description": "DeploymentStrategy describes how to replace existing pods with new ones.",
996      "properties": {
997        "rollingUpdate": {
998          "$ref": "#/definitions/io.k8s.api.apps.v1.RollingUpdateDeployment",
999          "description": "Rolling update config params. Present only if DeploymentStrategyType = RollingUpdate."
1000        },
1001        "type": {
1002          "description": "Type of deployment. Can be \"Recreate\" or \"RollingUpdate\". Default is RollingUpdate.",
1003          "type": "string"
1004        }
1005      },
1006      "type": "object"
1007    },
1008    "io.k8s.api.apps.v1.ReplicaSet": {
1009      "description": "ReplicaSet ensures that a specified number of pod replicas are running at any given time.",
1010      "properties": {
1011        "apiVersion": {
1012          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
1013          "type": "string"
1014        },
1015        "kind": {
1016          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
1017          "type": "string"
1018        },
1019        "metadata": {
1020          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
1021          "description": "If the Labels of a ReplicaSet are empty, they are defaulted to be the same as the Pod(s) that the ReplicaSet manages. Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
1022        },
1023        "spec": {
1024          "$ref": "#/definitions/io.k8s.api.apps.v1.ReplicaSetSpec",
1025          "description": "Spec defines the specification of the desired behavior of the ReplicaSet. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status"
1026        },
1027        "status": {
1028          "$ref": "#/definitions/io.k8s.api.apps.v1.ReplicaSetStatus",
1029          "description": "Status is the most recently observed status of the ReplicaSet. This data may be out of date by some window of time. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status"
1030        }
1031      },
1032      "type": "object",
1033      "x-kubernetes-group-version-kind": [
1034        {
1035          "group": "apps",
1036          "kind": "ReplicaSet",
1037          "version": "v1"
1038        }
1039      ]
1040    },
1041    "io.k8s.api.apps.v1.ReplicaSetCondition": {
1042      "description": "ReplicaSetCondition describes the state of a replica set at a certain point.",
1043      "properties": {
1044        "lastTransitionTime": {
1045          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
1046          "description": "The last time the condition transitioned from one status to another."
1047        },
1048        "message": {
1049          "description": "A human readable message indicating details about the transition.",
1050          "type": "string"
1051        },
1052        "reason": {
1053          "description": "The reason for the condition's last transition.",
1054          "type": "string"
1055        },
1056        "status": {
1057          "description": "Status of the condition, one of True, False, Unknown.",
1058          "type": "string"
1059        },
1060        "type": {
1061          "description": "Type of replica set condition.",
1062          "type": "string"
1063        }
1064      },
1065      "required": [
1066        "type",
1067        "status"
1068      ],
1069      "type": "object"
1070    },
1071    "io.k8s.api.apps.v1.ReplicaSetList": {
1072      "description": "ReplicaSetList is a collection of ReplicaSets.",
1073      "properties": {
1074        "apiVersion": {
1075          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
1076          "type": "string"
1077        },
1078        "items": {
1079          "description": "List of ReplicaSets. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller",
1080          "items": {
1081            "$ref": "#/definitions/io.k8s.api.apps.v1.ReplicaSet"
1082          },
1083          "type": "array"
1084        },
1085        "kind": {
1086          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
1087          "type": "string"
1088        },
1089        "metadata": {
1090          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
1091          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds"
1092        }
1093      },
1094      "required": [
1095        "items"
1096      ],
1097      "type": "object",
1098      "x-kubernetes-group-version-kind": [
1099        {
1100          "group": "apps",
1101          "kind": "ReplicaSetList",
1102          "version": "v1"
1103        }
1104      ]
1105    },
1106    "io.k8s.api.apps.v1.ReplicaSetSpec": {
1107      "description": "ReplicaSetSpec is the specification of a ReplicaSet.",
1108      "properties": {
1109        "minReadySeconds": {
1110          "description": "Minimum number of seconds for which a newly created pod should be ready without any of its container crashing, for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready)",
1111          "format": "int32",
1112          "type": "integer"
1113        },
1114        "replicas": {
1115          "description": "Replicas is the number of desired replicas. This is a pointer to distinguish between explicit zero and unspecified. Defaults to 1. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller/#what-is-a-replicationcontroller",
1116          "format": "int32",
1117          "type": "integer"
1118        },
1119        "selector": {
1120          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector",
1121          "description": "Selector is a label query over pods that should match the replica count. Label keys and values that must match in order to be controlled by this replica set. It must match the pod template's labels. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors"
1122        },
1123        "template": {
1124          "$ref": "#/definitions/io.k8s.api.core.v1.PodTemplateSpec",
1125          "description": "Template is the object that describes the pod that will be created if insufficient replicas are detected. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller#pod-template"
1126        }
1127      },
1128      "required": [
1129        "selector"
1130      ],
1131      "type": "object"
1132    },
1133    "io.k8s.api.apps.v1.ReplicaSetStatus": {
1134      "description": "ReplicaSetStatus represents the current status of a ReplicaSet.",
1135      "properties": {
1136        "availableReplicas": {
1137          "description": "The number of available replicas (ready for at least minReadySeconds) for this replica set.",
1138          "format": "int32",
1139          "type": "integer"
1140        },
1141        "conditions": {
1142          "description": "Represents the latest available observations of a replica set's current state.",
1143          "items": {
1144            "$ref": "#/definitions/io.k8s.api.apps.v1.ReplicaSetCondition"
1145          },
1146          "type": "array",
1147          "x-kubernetes-patch-merge-key": "type",
1148          "x-kubernetes-patch-strategy": "merge"
1149        },
1150        "fullyLabeledReplicas": {
1151          "description": "The number of pods that have labels matching the labels of the pod template of the replicaset.",
1152          "format": "int32",
1153          "type": "integer"
1154        },
1155        "observedGeneration": {
1156          "description": "ObservedGeneration reflects the generation of the most recently observed ReplicaSet.",
1157          "format": "int64",
1158          "type": "integer"
1159        },
1160        "readyReplicas": {
1161          "description": "The number of ready replicas for this replica set.",
1162          "format": "int32",
1163          "type": "integer"
1164        },
1165        "replicas": {
1166          "description": "Replicas is the most recently oberved number of replicas. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller/#what-is-a-replicationcontroller",
1167          "format": "int32",
1168          "type": "integer"
1169        }
1170      },
1171      "required": [
1172        "replicas"
1173      ],
1174      "type": "object"
1175    },
1176    "io.k8s.api.apps.v1.RollingUpdateDaemonSet": {
1177      "description": "Spec to control the desired behavior of daemon set rolling update.",
1178      "properties": {
1179        "maxSurge": {
1180          "$ref": "#/definitions/io.k8s.apimachinery.pkg.util.intstr.IntOrString",
1181          "description": "The maximum number of nodes with an existing available DaemonSet pod that can have an updated DaemonSet pod during during an update. Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). This can not be 0 if MaxUnavailable is 0. Absolute number is calculated from percentage by rounding up to a minimum of 1. Default value is 0. Example: when this is set to 30%, at most 30% of the total number of nodes that should be running the daemon pod (i.e. status.desiredNumberScheduled) can have their a new pod created before the old pod is marked as deleted. The update starts by launching new pods on 30% of nodes. Once an updated pod is available (Ready for at least minReadySeconds) the old DaemonSet pod on that node is marked deleted. If the old pod becomes unavailable for any reason (Ready transitions to false, is evicted, or is drained) an updated pod is immediatedly created on that node without considering surge limits. Allowing surge implies the possibility that the resources consumed by the daemonset on any given node can double if the readiness check fails, and so resource intensive daemonsets should take into account that they may cause evictions during disruption. This is beta field and enabled/disabled by DaemonSetUpdateSurge feature gate."
1182        },
1183        "maxUnavailable": {
1184          "$ref": "#/definitions/io.k8s.apimachinery.pkg.util.intstr.IntOrString",
1185          "description": "The maximum number of DaemonSet pods that can be unavailable during the update. Value can be an absolute number (ex: 5) or a percentage of total number of DaemonSet pods at the start of the update (ex: 10%). Absolute number is calculated from percentage by rounding up. This cannot be 0 if MaxSurge is 0 Default value is 1. Example: when this is set to 30%, at most 30% of the total number of nodes that should be running the daemon pod (i.e. status.desiredNumberScheduled) can have their pods stopped for an update at any given time. The update starts by stopping at most 30% of those DaemonSet pods and then brings up new DaemonSet pods in their place. Once the new pods are available, it then proceeds onto other DaemonSet pods, thus ensuring that at least 70% of original number of DaemonSet pods are available at all times during the update."
1186        }
1187      },
1188      "type": "object"
1189    },
1190    "io.k8s.api.apps.v1.RollingUpdateDeployment": {
1191      "description": "Spec to control the desired behavior of rolling update.",
1192      "properties": {
1193        "maxSurge": {
1194          "$ref": "#/definitions/io.k8s.apimachinery.pkg.util.intstr.IntOrString",
1195          "description": "The maximum number of pods that can be scheduled above the desired number of pods. Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). This can not be 0 if MaxUnavailable is 0. Absolute number is calculated from percentage by rounding up. Defaults to 25%. Example: when this is set to 30%, the new ReplicaSet can be scaled up immediately when the rolling update starts, such that the total number of old and new pods do not exceed 130% of desired pods. Once old pods have been killed, new ReplicaSet can be scaled up further, ensuring that total number of pods running at any time during the update is at most 130% of desired pods."
1196        },
1197        "maxUnavailable": {
1198          "$ref": "#/definitions/io.k8s.apimachinery.pkg.util.intstr.IntOrString",
1199          "description": "The maximum number of pods that can be unavailable during the update. Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). Absolute number is calculated from percentage by rounding down. This can not be 0 if MaxSurge is 0. Defaults to 25%. Example: when this is set to 30%, the old ReplicaSet can be scaled down to 70% of desired pods immediately when the rolling update starts. Once new pods are ready, old ReplicaSet can be scaled down further, followed by scaling up the new ReplicaSet, ensuring that the total number of pods available at all times during the update is at least 70% of desired pods."
1200        }
1201      },
1202      "type": "object"
1203    },
1204    "io.k8s.api.apps.v1.RollingUpdateStatefulSetStrategy": {
1205      "description": "RollingUpdateStatefulSetStrategy is used to communicate parameter for RollingUpdateStatefulSetStrategyType.",
1206      "properties": {
1207        "partition": {
1208          "description": "Partition indicates the ordinal at which the StatefulSet should be partitioned. Default value is 0.",
1209          "format": "int32",
1210          "type": "integer"
1211        }
1212      },
1213      "type": "object"
1214    },
1215    "io.k8s.api.apps.v1.StatefulSet": {
1216      "description": "StatefulSet represents a set of pods with consistent identities. Identities are defined as:\n - Network: A single stable DNS and hostname.\n - Storage: As many VolumeClaims as requested.\nThe StatefulSet guarantees that a given network identity will always map to the same storage identity.",
1217      "properties": {
1218        "apiVersion": {
1219          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
1220          "type": "string"
1221        },
1222        "kind": {
1223          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
1224          "type": "string"
1225        },
1226        "metadata": {
1227          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
1228          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
1229        },
1230        "spec": {
1231          "$ref": "#/definitions/io.k8s.api.apps.v1.StatefulSetSpec",
1232          "description": "Spec defines the desired identities of pods in this set."
1233        },
1234        "status": {
1235          "$ref": "#/definitions/io.k8s.api.apps.v1.StatefulSetStatus",
1236          "description": "Status is the current status of Pods in this StatefulSet. This data may be out of date by some window of time."
1237        }
1238      },
1239      "type": "object",
1240      "x-kubernetes-group-version-kind": [
1241        {
1242          "group": "apps",
1243          "kind": "StatefulSet",
1244          "version": "v1"
1245        }
1246      ]
1247    },
1248    "io.k8s.api.apps.v1.StatefulSetCondition": {
1249      "description": "StatefulSetCondition describes the state of a statefulset at a certain point.",
1250      "properties": {
1251        "lastTransitionTime": {
1252          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
1253          "description": "Last time the condition transitioned from one status to another."
1254        },
1255        "message": {
1256          "description": "A human readable message indicating details about the transition.",
1257          "type": "string"
1258        },
1259        "reason": {
1260          "description": "The reason for the condition's last transition.",
1261          "type": "string"
1262        },
1263        "status": {
1264          "description": "Status of the condition, one of True, False, Unknown.",
1265          "type": "string"
1266        },
1267        "type": {
1268          "description": "Type of statefulset condition.",
1269          "type": "string"
1270        }
1271      },
1272      "required": [
1273        "type",
1274        "status"
1275      ],
1276      "type": "object"
1277    },
1278    "io.k8s.api.apps.v1.StatefulSetList": {
1279      "description": "StatefulSetList is a collection of StatefulSets.",
1280      "properties": {
1281        "apiVersion": {
1282          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
1283          "type": "string"
1284        },
1285        "items": {
1286          "description": "Items is the list of stateful sets.",
1287          "items": {
1288            "$ref": "#/definitions/io.k8s.api.apps.v1.StatefulSet"
1289          },
1290          "type": "array"
1291        },
1292        "kind": {
1293          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
1294          "type": "string"
1295        },
1296        "metadata": {
1297          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
1298          "description": "Standard list's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
1299        }
1300      },
1301      "required": [
1302        "items"
1303      ],
1304      "type": "object",
1305      "x-kubernetes-group-version-kind": [
1306        {
1307          "group": "apps",
1308          "kind": "StatefulSetList",
1309          "version": "v1"
1310        }
1311      ]
1312    },
1313    "io.k8s.api.apps.v1.StatefulSetSpec": {
1314      "description": "A StatefulSetSpec is the specification of a StatefulSet.",
1315      "properties": {
1316        "minReadySeconds": {
1317          "description": "Minimum number of seconds for which a newly created pod should be ready without any of its container crashing for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready) This is an alpha field and requires enabling StatefulSetMinReadySeconds feature gate.",
1318          "format": "int32",
1319          "type": "integer"
1320        },
1321        "podManagementPolicy": {
1322          "description": "podManagementPolicy controls how pods are created during initial scale up, when replacing pods on nodes, or when scaling down. The default policy is `OrderedReady`, where pods are created in increasing order (pod-0, then pod-1, etc) and the controller will wait until each pod is ready before continuing. When scaling down, the pods are removed in the opposite order. The alternative policy is `Parallel` which will create pods in parallel to match the desired scale without waiting, and on scale down will delete all pods at once.",
1323          "type": "string"
1324        },
1325        "replicas": {
1326          "description": "replicas is the desired number of replicas of the given Template. These are replicas in the sense that they are instantiations of the same Template, but individual replicas also have a consistent identity. If unspecified, defaults to 1.",
1327          "format": "int32",
1328          "type": "integer"
1329        },
1330        "revisionHistoryLimit": {
1331          "description": "revisionHistoryLimit is the maximum number of revisions that will be maintained in the StatefulSet's revision history. The revision history consists of all revisions not represented by a currently applied StatefulSetSpec version. The default value is 10.",
1332          "format": "int32",
1333          "type": "integer"
1334        },
1335        "selector": {
1336          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector",
1337          "description": "selector is a label query over pods that should match the replica count. It must match the pod template's labels. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors"
1338        },
1339        "serviceName": {
1340          "description": "serviceName is the name of the service that governs this StatefulSet. This service must exist before the StatefulSet, and is responsible for the network identity of the set. Pods get DNS/hostnames that follow the pattern: pod-specific-string.serviceName.default.svc.cluster.local where \"pod-specific-string\" is managed by the StatefulSet controller.",
1341          "type": "string"
1342        },
1343        "template": {
1344          "$ref": "#/definitions/io.k8s.api.core.v1.PodTemplateSpec",
1345          "description": "template is the object that describes the pod that will be created if insufficient replicas are detected. Each pod stamped out by the StatefulSet will fulfill this Template, but have a unique identity from the rest of the StatefulSet."
1346        },
1347        "updateStrategy": {
1348          "$ref": "#/definitions/io.k8s.api.apps.v1.StatefulSetUpdateStrategy",
1349          "description": "updateStrategy indicates the StatefulSetUpdateStrategy that will be employed to update Pods in the StatefulSet when a revision is made to Template."
1350        },
1351        "volumeClaimTemplates": {
1352          "description": "volumeClaimTemplates is a list of claims that pods are allowed to reference. The StatefulSet controller is responsible for mapping network identities to claims in a way that maintains the identity of a pod. Every claim in this list must have at least one matching (by name) volumeMount in one container in the template. A claim in this list takes precedence over any volumes in the template, with the same name.",
1353          "items": {
1354            "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaim"
1355          },
1356          "type": "array"
1357        }
1358      },
1359      "required": [
1360        "selector",
1361        "template",
1362        "serviceName"
1363      ],
1364      "type": "object"
1365    },
1366    "io.k8s.api.apps.v1.StatefulSetStatus": {
1367      "description": "StatefulSetStatus represents the current state of a StatefulSet.",
1368      "properties": {
1369        "availableReplicas": {
1370          "description": "Total number of available pods (ready for at least minReadySeconds) targeted by this statefulset. This is an alpha field and requires enabling StatefulSetMinReadySeconds feature gate. Remove omitempty when graduating to beta",
1371          "format": "int32",
1372          "type": "integer"
1373        },
1374        "collisionCount": {
1375          "description": "collisionCount is the count of hash collisions for the StatefulSet. The StatefulSet controller uses this field as a collision avoidance mechanism when it needs to create the name for the newest ControllerRevision.",
1376          "format": "int32",
1377          "type": "integer"
1378        },
1379        "conditions": {
1380          "description": "Represents the latest available observations of a statefulset's current state.",
1381          "items": {
1382            "$ref": "#/definitions/io.k8s.api.apps.v1.StatefulSetCondition"
1383          },
1384          "type": "array",
1385          "x-kubernetes-patch-merge-key": "type",
1386          "x-kubernetes-patch-strategy": "merge"
1387        },
1388        "currentReplicas": {
1389          "description": "currentReplicas is the number of Pods created by the StatefulSet controller from the StatefulSet version indicated by currentRevision.",
1390          "format": "int32",
1391          "type": "integer"
1392        },
1393        "currentRevision": {
1394          "description": "currentRevision, if not empty, indicates the version of the StatefulSet used to generate Pods in the sequence [0,currentReplicas).",
1395          "type": "string"
1396        },
1397        "observedGeneration": {
1398          "description": "observedGeneration is the most recent generation observed for this StatefulSet. It corresponds to the StatefulSet's generation, which is updated on mutation by the API Server.",
1399          "format": "int64",
1400          "type": "integer"
1401        },
1402        "readyReplicas": {
1403          "description": "readyReplicas is the number of Pods created by the StatefulSet controller that have a Ready Condition.",
1404          "format": "int32",
1405          "type": "integer"
1406        },
1407        "replicas": {
1408          "description": "replicas is the number of Pods created by the StatefulSet controller.",
1409          "format": "int32",
1410          "type": "integer"
1411        },
1412        "updateRevision": {
1413          "description": "updateRevision, if not empty, indicates the version of the StatefulSet used to generate Pods in the sequence [replicas-updatedReplicas,replicas)",
1414          "type": "string"
1415        },
1416        "updatedReplicas": {
1417          "description": "updatedReplicas is the number of Pods created by the StatefulSet controller from the StatefulSet version indicated by updateRevision.",
1418          "format": "int32",
1419          "type": "integer"
1420        }
1421      },
1422      "required": [
1423        "replicas"
1424      ],
1425      "type": "object"
1426    },
1427    "io.k8s.api.apps.v1.StatefulSetUpdateStrategy": {
1428      "description": "StatefulSetUpdateStrategy indicates the strategy that the StatefulSet controller will use to perform updates. It includes any additional parameters necessary to perform the update for the indicated strategy.",
1429      "properties": {
1430        "rollingUpdate": {
1431          "$ref": "#/definitions/io.k8s.api.apps.v1.RollingUpdateStatefulSetStrategy",
1432          "description": "RollingUpdate is used to communicate parameters when Type is RollingUpdateStatefulSetStrategyType."
1433        },
1434        "type": {
1435          "description": "Type indicates the type of the StatefulSetUpdateStrategy. Default is RollingUpdate.",
1436          "type": "string"
1437        }
1438      },
1439      "type": "object"
1440    },
1441    "io.k8s.api.authentication.v1.BoundObjectReference": {
1442      "description": "BoundObjectReference is a reference to an object that a token is bound to.",
1443      "properties": {
1444        "apiVersion": {
1445          "description": "API version of the referent.",
1446          "type": "string"
1447        },
1448        "kind": {
1449          "description": "Kind of the referent. Valid kinds are 'Pod' and 'Secret'.",
1450          "type": "string"
1451        },
1452        "name": {
1453          "description": "Name of the referent.",
1454          "type": "string"
1455        },
1456        "uid": {
1457          "description": "UID of the referent.",
1458          "type": "string"
1459        }
1460      },
1461      "type": "object"
1462    },
1463    "io.k8s.api.authentication.v1.TokenRequest": {
1464      "description": "TokenRequest requests a token for a given service account.",
1465      "properties": {
1466        "apiVersion": {
1467          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
1468          "type": "string"
1469        },
1470        "kind": {
1471          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
1472          "type": "string"
1473        },
1474        "metadata": {
1475          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
1476          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
1477        },
1478        "spec": {
1479          "$ref": "#/definitions/io.k8s.api.authentication.v1.TokenRequestSpec",
1480          "description": "Spec holds information about the request being evaluated"
1481        },
1482        "status": {
1483          "$ref": "#/definitions/io.k8s.api.authentication.v1.TokenRequestStatus",
1484          "description": "Status is filled in by the server and indicates whether the token can be authenticated."
1485        }
1486      },
1487      "required": [
1488        "spec"
1489      ],
1490      "type": "object",
1491      "x-kubernetes-group-version-kind": [
1492        {
1493          "group": "authentication.k8s.io",
1494          "kind": "TokenRequest",
1495          "version": "v1"
1496        }
1497      ]
1498    },
1499    "io.k8s.api.authentication.v1.TokenRequestSpec": {
1500      "description": "TokenRequestSpec contains client provided parameters of a token request.",
1501      "properties": {
1502        "audiences": {
1503          "description": "Audiences are the intendend audiences of the token. A recipient of a token must identitfy themself with an identifier in the list of audiences of the token, and otherwise should reject the token. A token issued for multiple audiences may be used to authenticate against any of the audiences listed but implies a high degree of trust between the target audiences.",
1504          "items": {
1505            "type": "string"
1506          },
1507          "type": "array"
1508        },
1509        "boundObjectRef": {
1510          "$ref": "#/definitions/io.k8s.api.authentication.v1.BoundObjectReference",
1511          "description": "BoundObjectRef is a reference to an object that the token will be bound to. The token will only be valid for as long as the bound object exists. NOTE: The API server's TokenReview endpoint will validate the BoundObjectRef, but other audiences may not. Keep ExpirationSeconds small if you want prompt revocation."
1512        },
1513        "expirationSeconds": {
1514          "description": "ExpirationSeconds is the requested duration of validity of the request. The token issuer may return a token with a different validity duration so a client needs to check the 'expiration' field in a response.",
1515          "format": "int64",
1516          "type": "integer"
1517        }
1518      },
1519      "required": [
1520        "audiences"
1521      ],
1522      "type": "object"
1523    },
1524    "io.k8s.api.authentication.v1.TokenRequestStatus": {
1525      "description": "TokenRequestStatus is the result of a token request.",
1526      "properties": {
1527        "expirationTimestamp": {
1528          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
1529          "description": "ExpirationTimestamp is the time of expiration of the returned token."
1530        },
1531        "token": {
1532          "description": "Token is the opaque bearer token.",
1533          "type": "string"
1534        }
1535      },
1536      "required": [
1537        "token",
1538        "expirationTimestamp"
1539      ],
1540      "type": "object"
1541    },
1542    "io.k8s.api.authentication.v1.TokenReview": {
1543      "description": "TokenReview attempts to authenticate a token to a known user. Note: TokenReview requests may be cached by the webhook token authenticator plugin in the kube-apiserver.",
1544      "properties": {
1545        "apiVersion": {
1546          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
1547          "type": "string"
1548        },
1549        "kind": {
1550          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
1551          "type": "string"
1552        },
1553        "metadata": {
1554          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
1555          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
1556        },
1557        "spec": {
1558          "$ref": "#/definitions/io.k8s.api.authentication.v1.TokenReviewSpec",
1559          "description": "Spec holds information about the request being evaluated"
1560        },
1561        "status": {
1562          "$ref": "#/definitions/io.k8s.api.authentication.v1.TokenReviewStatus",
1563          "description": "Status is filled in by the server and indicates whether the request can be authenticated."
1564        }
1565      },
1566      "required": [
1567        "spec"
1568      ],
1569      "type": "object",
1570      "x-kubernetes-group-version-kind": [
1571        {
1572          "group": "authentication.k8s.io",
1573          "kind": "TokenReview",
1574          "version": "v1"
1575        }
1576      ]
1577    },
1578    "io.k8s.api.authentication.v1.TokenReviewSpec": {
1579      "description": "TokenReviewSpec is a description of the token authentication request.",
1580      "properties": {
1581        "audiences": {
1582          "description": "Audiences is a list of the identifiers that the resource server presented with the token identifies as. Audience-aware token authenticators will verify that the token was intended for at least one of the audiences in this list. If no audiences are provided, the audience will default to the audience of the Kubernetes apiserver.",
1583          "items": {
1584            "type": "string"
1585          },
1586          "type": "array"
1587        },
1588        "token": {
1589          "description": "Token is the opaque bearer token.",
1590          "type": "string"
1591        }
1592      },
1593      "type": "object"
1594    },
1595    "io.k8s.api.authentication.v1.TokenReviewStatus": {
1596      "description": "TokenReviewStatus is the result of the token authentication request.",
1597      "properties": {
1598        "audiences": {
1599          "description": "Audiences are audience identifiers chosen by the authenticator that are compatible with both the TokenReview and token. An identifier is any identifier in the intersection of the TokenReviewSpec audiences and the token's audiences. A client of the TokenReview API that sets the spec.audiences field should validate that a compatible audience identifier is returned in the status.audiences field to ensure that the TokenReview server is audience aware. If a TokenReview returns an empty status.audience field where status.authenticated is \"true\", the token is valid against the audience of the Kubernetes API server.",
1600          "items": {
1601            "type": "string"
1602          },
1603          "type": "array"
1604        },
1605        "authenticated": {
1606          "description": "Authenticated indicates that the token was associated with a known user.",
1607          "type": "boolean"
1608        },
1609        "error": {
1610          "description": "Error indicates that the token couldn't be checked",
1611          "type": "string"
1612        },
1613        "user": {
1614          "$ref": "#/definitions/io.k8s.api.authentication.v1.UserInfo",
1615          "description": "User is the UserInfo associated with the provided token."
1616        }
1617      },
1618      "type": "object"
1619    },
1620    "io.k8s.api.authentication.v1.UserInfo": {
1621      "description": "UserInfo holds the information about the user needed to implement the user.Info interface.",
1622      "properties": {
1623        "extra": {
1624          "additionalProperties": {
1625            "items": {
1626              "type": "string"
1627            },
1628            "type": "array"
1629          },
1630          "description": "Any additional information provided by the authenticator.",
1631          "type": "object"
1632        },
1633        "groups": {
1634          "description": "The names of groups this user is a part of.",
1635          "items": {
1636            "type": "string"
1637          },
1638          "type": "array"
1639        },
1640        "uid": {
1641          "description": "A unique value that identifies this user across time. If this user is deleted and another user by the same name is added, they will have different UIDs.",
1642          "type": "string"
1643        },
1644        "username": {
1645          "description": "The name that uniquely identifies this user among all active users.",
1646          "type": "string"
1647        }
1648      },
1649      "type": "object"
1650    },
1651    "io.k8s.api.authorization.v1.LocalSubjectAccessReview": {
1652      "description": "LocalSubjectAccessReview checks whether or not a user or group can perform an action in a given namespace. Having a namespace scoped resource makes it much easier to grant namespace scoped policy that includes permissions checking.",
1653      "properties": {
1654        "apiVersion": {
1655          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
1656          "type": "string"
1657        },
1658        "kind": {
1659          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
1660          "type": "string"
1661        },
1662        "metadata": {
1663          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
1664          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
1665        },
1666        "spec": {
1667          "$ref": "#/definitions/io.k8s.api.authorization.v1.SubjectAccessReviewSpec",
1668          "description": "Spec holds information about the request being evaluated.  spec.namespace must be equal to the namespace you made the request against.  If empty, it is defaulted."
1669        },
1670        "status": {
1671          "$ref": "#/definitions/io.k8s.api.authorization.v1.SubjectAccessReviewStatus",
1672          "description": "Status is filled in by the server and indicates whether the request is allowed or not"
1673        }
1674      },
1675      "required": [
1676        "spec"
1677      ],
1678      "type": "object",
1679      "x-kubernetes-group-version-kind": [
1680        {
1681          "group": "authorization.k8s.io",
1682          "kind": "LocalSubjectAccessReview",
1683          "version": "v1"
1684        }
1685      ]
1686    },
1687    "io.k8s.api.authorization.v1.NonResourceAttributes": {
1688      "description": "NonResourceAttributes includes the authorization attributes available for non-resource requests to the Authorizer interface",
1689      "properties": {
1690        "path": {
1691          "description": "Path is the URL path of the request",
1692          "type": "string"
1693        },
1694        "verb": {
1695          "description": "Verb is the standard HTTP verb",
1696          "type": "string"
1697        }
1698      },
1699      "type": "object"
1700    },
1701    "io.k8s.api.authorization.v1.NonResourceRule": {
1702      "description": "NonResourceRule holds information that describes a rule for the non-resource",
1703      "properties": {
1704        "nonResourceURLs": {
1705          "description": "NonResourceURLs is a set of partial urls that a user should have access to.  *s are allowed, but only as the full, final step in the path.  \"*\" means all.",
1706          "items": {
1707            "type": "string"
1708          },
1709          "type": "array"
1710        },
1711        "verbs": {
1712          "description": "Verb is a list of kubernetes non-resource API verbs, like: get, post, put, delete, patch, head, options.  \"*\" means all.",
1713          "items": {
1714            "type": "string"
1715          },
1716          "type": "array"
1717        }
1718      },
1719      "required": [
1720        "verbs"
1721      ],
1722      "type": "object"
1723    },
1724    "io.k8s.api.authorization.v1.ResourceAttributes": {
1725      "description": "ResourceAttributes includes the authorization attributes available for resource requests to the Authorizer interface",
1726      "properties": {
1727        "group": {
1728          "description": "Group is the API Group of the Resource.  \"*\" means all.",
1729          "type": "string"
1730        },
1731        "name": {
1732          "description": "Name is the name of the resource being requested for a \"get\" or deleted for a \"delete\". \"\" (empty) means all.",
1733          "type": "string"
1734        },
1735        "namespace": {
1736          "description": "Namespace is the namespace of the action being requested.  Currently, there is no distinction between no namespace and all namespaces \"\" (empty) is defaulted for LocalSubjectAccessReviews \"\" (empty) is empty for cluster-scoped resources \"\" (empty) means \"all\" for namespace scoped resources from a SubjectAccessReview or SelfSubjectAccessReview",
1737          "type": "string"
1738        },
1739        "resource": {
1740          "description": "Resource is one of the existing resource types.  \"*\" means all.",
1741          "type": "string"
1742        },
1743        "subresource": {
1744          "description": "Subresource is one of the existing resource types.  \"\" means none.",
1745          "type": "string"
1746        },
1747        "verb": {
1748          "description": "Verb is a kubernetes resource API verb, like: get, list, watch, create, update, delete, proxy.  \"*\" means all.",
1749          "type": "string"
1750        },
1751        "version": {
1752          "description": "Version is the API Version of the Resource.  \"*\" means all.",
1753          "type": "string"
1754        }
1755      },
1756      "type": "object"
1757    },
1758    "io.k8s.api.authorization.v1.ResourceRule": {
1759      "description": "ResourceRule is the list of actions the subject is allowed to perform on resources. The list ordering isn't significant, may contain duplicates, and possibly be incomplete.",
1760      "properties": {
1761        "apiGroups": {
1762          "description": "APIGroups is the name of the APIGroup that contains the resources.  If multiple API groups are specified, any action requested against one of the enumerated resources in any API group will be allowed.  \"*\" means all.",
1763          "items": {
1764            "type": "string"
1765          },
1766          "type": "array"
1767        },
1768        "resourceNames": {
1769          "description": "ResourceNames is an optional white list of names that the rule applies to.  An empty set means that everything is allowed.  \"*\" means all.",
1770          "items": {
1771            "type": "string"
1772          },
1773          "type": "array"
1774        },
1775        "resources": {
1776          "description": "Resources is a list of resources this rule applies to.  \"*\" means all in the specified apiGroups.\n \"*/foo\" represents the subresource 'foo' for all resources in the specified apiGroups.",
1777          "items": {
1778            "type": "string"
1779          },
1780          "type": "array"
1781        },
1782        "verbs": {
1783          "description": "Verb is a list of kubernetes resource API verbs, like: get, list, watch, create, update, delete, proxy.  \"*\" means all.",
1784          "items": {
1785            "type": "string"
1786          },
1787          "type": "array"
1788        }
1789      },
1790      "required": [
1791        "verbs"
1792      ],
1793      "type": "object"
1794    },
1795    "io.k8s.api.authorization.v1.SelfSubjectAccessReview": {
1796      "description": "SelfSubjectAccessReview checks whether or the current user can perform an action.  Not filling in a spec.namespace means \"in all namespaces\".  Self is a special case, because users should always be able to check whether they can perform an action",
1797      "properties": {
1798        "apiVersion": {
1799          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
1800          "type": "string"
1801        },
1802        "kind": {
1803          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
1804          "type": "string"
1805        },
1806        "metadata": {
1807          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
1808          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
1809        },
1810        "spec": {
1811          "$ref": "#/definitions/io.k8s.api.authorization.v1.SelfSubjectAccessReviewSpec",
1812          "description": "Spec holds information about the request being evaluated.  user and groups must be empty"
1813        },
1814        "status": {
1815          "$ref": "#/definitions/io.k8s.api.authorization.v1.SubjectAccessReviewStatus",
1816          "description": "Status is filled in by the server and indicates whether the request is allowed or not"
1817        }
1818      },
1819      "required": [
1820        "spec"
1821      ],
1822      "type": "object",
1823      "x-kubernetes-group-version-kind": [
1824        {
1825          "group": "authorization.k8s.io",
1826          "kind": "SelfSubjectAccessReview",
1827          "version": "v1"
1828        }
1829      ]
1830    },
1831    "io.k8s.api.authorization.v1.SelfSubjectAccessReviewSpec": {
1832      "description": "SelfSubjectAccessReviewSpec is a description of the access request.  Exactly one of ResourceAuthorizationAttributes and NonResourceAuthorizationAttributes must be set",
1833      "properties": {
1834        "nonResourceAttributes": {
1835          "$ref": "#/definitions/io.k8s.api.authorization.v1.NonResourceAttributes",
1836          "description": "NonResourceAttributes describes information for a non-resource access request"
1837        },
1838        "resourceAttributes": {
1839          "$ref": "#/definitions/io.k8s.api.authorization.v1.ResourceAttributes",
1840          "description": "ResourceAuthorizationAttributes describes information for a resource access request"
1841        }
1842      },
1843      "type": "object"
1844    },
1845    "io.k8s.api.authorization.v1.SelfSubjectRulesReview": {
1846      "description": "SelfSubjectRulesReview enumerates the set of actions the current user can perform within a namespace. The returned list of actions may be incomplete depending on the server's authorization mode, and any errors experienced during the evaluation. SelfSubjectRulesReview should be used by UIs to show/hide actions, or to quickly let an end user reason about their permissions. It should NOT Be used by external systems to drive authorization decisions as this raises confused deputy, cache lifetime/revocation, and correctness concerns. SubjectAccessReview, and LocalAccessReview are the correct way to defer authorization decisions to the API server.",
1847      "properties": {
1848        "apiVersion": {
1849          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
1850          "type": "string"
1851        },
1852        "kind": {
1853          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
1854          "type": "string"
1855        },
1856        "metadata": {
1857          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
1858          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
1859        },
1860        "spec": {
1861          "$ref": "#/definitions/io.k8s.api.authorization.v1.SelfSubjectRulesReviewSpec",
1862          "description": "Spec holds information about the request being evaluated."
1863        },
1864        "status": {
1865          "$ref": "#/definitions/io.k8s.api.authorization.v1.SubjectRulesReviewStatus",
1866          "description": "Status is filled in by the server and indicates the set of actions a user can perform."
1867        }
1868      },
1869      "required": [
1870        "spec"
1871      ],
1872      "type": "object",
1873      "x-kubernetes-group-version-kind": [
1874        {
1875          "group": "authorization.k8s.io",
1876          "kind": "SelfSubjectRulesReview",
1877          "version": "v1"
1878        }
1879      ]
1880    },
1881    "io.k8s.api.authorization.v1.SelfSubjectRulesReviewSpec": {
1882      "description": "SelfSubjectRulesReviewSpec defines the specification for SelfSubjectRulesReview.",
1883      "properties": {
1884        "namespace": {
1885          "description": "Namespace to evaluate rules for. Required.",
1886          "type": "string"
1887        }
1888      },
1889      "type": "object"
1890    },
1891    "io.k8s.api.authorization.v1.SubjectAccessReview": {
1892      "description": "SubjectAccessReview checks whether or not a user or group can perform an action.",
1893      "properties": {
1894        "apiVersion": {
1895          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
1896          "type": "string"
1897        },
1898        "kind": {
1899          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
1900          "type": "string"
1901        },
1902        "metadata": {
1903          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
1904          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
1905        },
1906        "spec": {
1907          "$ref": "#/definitions/io.k8s.api.authorization.v1.SubjectAccessReviewSpec",
1908          "description": "Spec holds information about the request being evaluated"
1909        },
1910        "status": {
1911          "$ref": "#/definitions/io.k8s.api.authorization.v1.SubjectAccessReviewStatus",
1912          "description": "Status is filled in by the server and indicates whether the request is allowed or not"
1913        }
1914      },
1915      "required": [
1916        "spec"
1917      ],
1918      "type": "object",
1919      "x-kubernetes-group-version-kind": [
1920        {
1921          "group": "authorization.k8s.io",
1922          "kind": "SubjectAccessReview",
1923          "version": "v1"
1924        }
1925      ]
1926    },
1927    "io.k8s.api.authorization.v1.SubjectAccessReviewSpec": {
1928      "description": "SubjectAccessReviewSpec is a description of the access request.  Exactly one of ResourceAuthorizationAttributes and NonResourceAuthorizationAttributes must be set",
1929      "properties": {
1930        "extra": {
1931          "additionalProperties": {
1932            "items": {
1933              "type": "string"
1934            },
1935            "type": "array"
1936          },
1937          "description": "Extra corresponds to the user.Info.GetExtra() method from the authenticator.  Since that is input to the authorizer it needs a reflection here.",
1938          "type": "object"
1939        },
1940        "groups": {
1941          "description": "Groups is the groups you're testing for.",
1942          "items": {
1943            "type": "string"
1944          },
1945          "type": "array"
1946        },
1947        "nonResourceAttributes": {
1948          "$ref": "#/definitions/io.k8s.api.authorization.v1.NonResourceAttributes",
1949          "description": "NonResourceAttributes describes information for a non-resource access request"
1950        },
1951        "resourceAttributes": {
1952          "$ref": "#/definitions/io.k8s.api.authorization.v1.ResourceAttributes",
1953          "description": "ResourceAuthorizationAttributes describes information for a resource access request"
1954        },
1955        "uid": {
1956          "description": "UID information about the requesting user.",
1957          "type": "string"
1958        },
1959        "user": {
1960          "description": "User is the user you're testing for. If you specify \"User\" but not \"Groups\", then is it interpreted as \"What if User were not a member of any groups",
1961          "type": "string"
1962        }
1963      },
1964      "type": "object"
1965    },
1966    "io.k8s.api.authorization.v1.SubjectAccessReviewStatus": {
1967      "description": "SubjectAccessReviewStatus",
1968      "properties": {
1969        "allowed": {
1970          "description": "Allowed is required. True if the action would be allowed, false otherwise.",
1971          "type": "boolean"
1972        },
1973        "denied": {
1974          "description": "Denied is optional. True if the action would be denied, otherwise false. If both allowed is false and denied is false, then the authorizer has no opinion on whether to authorize the action. Denied may not be true if Allowed is true.",
1975          "type": "boolean"
1976        },
1977        "evaluationError": {
1978          "description": "EvaluationError is an indication that some error occurred during the authorization check. It is entirely possible to get an error and be able to continue determine authorization status in spite of it. For instance, RBAC can be missing a role, but enough roles are still present and bound to reason about the request.",
1979          "type": "string"
1980        },
1981        "reason": {
1982          "description": "Reason is optional.  It indicates why a request was allowed or denied.",
1983          "type": "string"
1984        }
1985      },
1986      "required": [
1987        "allowed"
1988      ],
1989      "type": "object"
1990    },
1991    "io.k8s.api.authorization.v1.SubjectRulesReviewStatus": {
1992      "description": "SubjectRulesReviewStatus contains the result of a rules check. This check can be incomplete depending on the set of authorizers the server is configured with and any errors experienced during evaluation. Because authorization rules are additive, if a rule appears in a list it's safe to assume the subject has that permission, even if that list is incomplete.",
1993      "properties": {
1994        "evaluationError": {
1995          "description": "EvaluationError can appear in combination with Rules. It indicates an error occurred during rule evaluation, such as an authorizer that doesn't support rule evaluation, and that ResourceRules and/or NonResourceRules may be incomplete.",
1996          "type": "string"
1997        },
1998        "incomplete": {
1999          "description": "Incomplete is true when the rules returned by this call are incomplete. This is most commonly encountered when an authorizer, such as an external authorizer, doesn't support rules evaluation.",
2000          "type": "boolean"
2001        },
2002        "nonResourceRules": {
2003          "description": "NonResourceRules is the list of actions the subject is allowed to perform on non-resources. The list ordering isn't significant, may contain duplicates, and possibly be incomplete.",
2004          "items": {
2005            "$ref": "#/definitions/io.k8s.api.authorization.v1.NonResourceRule"
2006          },
2007          "type": "array"
2008        },
2009        "resourceRules": {
2010          "description": "ResourceRules is the list of actions the subject is allowed to perform on resources. The list ordering isn't significant, may contain duplicates, and possibly be incomplete.",
2011          "items": {
2012            "$ref": "#/definitions/io.k8s.api.authorization.v1.ResourceRule"
2013          },
2014          "type": "array"
2015        }
2016      },
2017      "required": [
2018        "resourceRules",
2019        "nonResourceRules",
2020        "incomplete"
2021      ],
2022      "type": "object"
2023    },
2024    "io.k8s.api.autoscaling.v1.CrossVersionObjectReference": {
2025      "description": "CrossVersionObjectReference contains enough information to let you identify the referred resource.",
2026      "properties": {
2027        "apiVersion": {
2028          "description": "API version of the referent",
2029          "type": "string"
2030        },
2031        "kind": {
2032          "description": "Kind of the referent; More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds\"",
2033          "type": "string"
2034        },
2035        "name": {
2036          "description": "Name of the referent; More info: http://kubernetes.io/docs/user-guide/identifiers#names",
2037          "type": "string"
2038        }
2039      },
2040      "required": [
2041        "kind",
2042        "name"
2043      ],
2044      "type": "object",
2045      "x-kubernetes-map-type": "atomic"
2046    },
2047    "io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler": {
2048      "description": "configuration of a horizontal pod autoscaler.",
2049      "properties": {
2050        "apiVersion": {
2051          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
2052          "type": "string"
2053        },
2054        "kind": {
2055          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
2056          "type": "string"
2057        },
2058        "metadata": {
2059          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
2060          "description": "Standard object metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
2061        },
2062        "spec": {
2063          "$ref": "#/definitions/io.k8s.api.autoscaling.v1.HorizontalPodAutoscalerSpec",
2064          "description": "behaviour of autoscaler. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status."
2065        },
2066        "status": {
2067          "$ref": "#/definitions/io.k8s.api.autoscaling.v1.HorizontalPodAutoscalerStatus",
2068          "description": "current information about the autoscaler."
2069        }
2070      },
2071      "type": "object",
2072      "x-kubernetes-group-version-kind": [
2073        {
2074          "group": "autoscaling",
2075          "kind": "HorizontalPodAutoscaler",
2076          "version": "v1"
2077        }
2078      ]
2079    },
2080    "io.k8s.api.autoscaling.v1.HorizontalPodAutoscalerList": {
2081      "description": "list of horizontal pod autoscaler objects.",
2082      "properties": {
2083        "apiVersion": {
2084          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
2085          "type": "string"
2086        },
2087        "items": {
2088          "description": "list of horizontal pod autoscaler objects.",
2089          "items": {
2090            "$ref": "#/definitions/io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler"
2091          },
2092          "type": "array"
2093        },
2094        "kind": {
2095          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
2096          "type": "string"
2097        },
2098        "metadata": {
2099          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
2100          "description": "Standard list metadata."
2101        }
2102      },
2103      "required": [
2104        "items"
2105      ],
2106      "type": "object",
2107      "x-kubernetes-group-version-kind": [
2108        {
2109          "group": "autoscaling",
2110          "kind": "HorizontalPodAutoscalerList",
2111          "version": "v1"
2112        }
2113      ]
2114    },
2115    "io.k8s.api.autoscaling.v1.HorizontalPodAutoscalerSpec": {
2116      "description": "specification of a horizontal pod autoscaler.",
2117      "properties": {
2118        "maxReplicas": {
2119          "description": "upper limit for the number of pods that can be set by the autoscaler; cannot be smaller than MinReplicas.",
2120          "format": "int32",
2121          "type": "integer"
2122        },
2123        "minReplicas": {
2124          "description": "minReplicas is the lower limit for the number of replicas to which the autoscaler can scale down.  It defaults to 1 pod.  minReplicas is allowed to be 0 if the alpha feature gate HPAScaleToZero is enabled and at least one Object or External metric is configured.  Scaling is active as long as at least one metric value is available.",
2125          "format": "int32",
2126          "type": "integer"
2127        },
2128        "scaleTargetRef": {
2129          "$ref": "#/definitions/io.k8s.api.autoscaling.v1.CrossVersionObjectReference",
2130          "description": "reference to scaled resource; horizontal pod autoscaler will learn the current resource consumption and will set the desired number of pods by using its Scale subresource."
2131        },
2132        "targetCPUUtilizationPercentage": {
2133          "description": "target average CPU utilization (represented as a percentage of requested CPU) over all the pods; if not specified the default autoscaling policy will be used.",
2134          "format": "int32",
2135          "type": "integer"
2136        }
2137      },
2138      "required": [
2139        "scaleTargetRef",
2140        "maxReplicas"
2141      ],
2142      "type": "object"
2143    },
2144    "io.k8s.api.autoscaling.v1.HorizontalPodAutoscalerStatus": {
2145      "description": "current status of a horizontal pod autoscaler",
2146      "properties": {
2147        "currentCPUUtilizationPercentage": {
2148          "description": "current average CPU utilization over all pods, represented as a percentage of requested CPU, e.g. 70 means that an average pod is using now 70% of its requested CPU.",
2149          "format": "int32",
2150          "type": "integer"
2151        },
2152        "currentReplicas": {
2153          "description": "current number of replicas of pods managed by this autoscaler.",
2154          "format": "int32",
2155          "type": "integer"
2156        },
2157        "desiredReplicas": {
2158          "description": "desired number of replicas of pods managed by this autoscaler.",
2159          "format": "int32",
2160          "type": "integer"
2161        },
2162        "lastScaleTime": {
2163          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
2164          "description": "last time the HorizontalPodAutoscaler scaled the number of pods; used by the autoscaler to control how often the number of pods is changed."
2165        },
2166        "observedGeneration": {
2167          "description": "most recent generation observed by this autoscaler.",
2168          "format": "int64",
2169          "type": "integer"
2170        }
2171      },
2172      "required": [
2173        "currentReplicas",
2174        "desiredReplicas"
2175      ],
2176      "type": "object"
2177    },
2178    "io.k8s.api.autoscaling.v1.Scale": {
2179      "description": "Scale represents a scaling request for a resource.",
2180      "properties": {
2181        "apiVersion": {
2182          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
2183          "type": "string"
2184        },
2185        "kind": {
2186          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
2187          "type": "string"
2188        },
2189        "metadata": {
2190          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
2191          "description": "Standard object metadata; More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata."
2192        },
2193        "spec": {
2194          "$ref": "#/definitions/io.k8s.api.autoscaling.v1.ScaleSpec",
2195          "description": "defines the behavior of the scale. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status."
2196        },
2197        "status": {
2198          "$ref": "#/definitions/io.k8s.api.autoscaling.v1.ScaleStatus",
2199          "description": "current status of the scale. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status. Read-only."
2200        }
2201      },
2202      "type": "object",
2203      "x-kubernetes-group-version-kind": [
2204        {
2205          "group": "autoscaling",
2206          "kind": "Scale",
2207          "version": "v1"
2208        }
2209      ]
2210    },
2211    "io.k8s.api.autoscaling.v1.ScaleSpec": {
2212      "description": "ScaleSpec describes the attributes of a scale subresource.",
2213      "properties": {
2214        "replicas": {
2215          "description": "desired number of instances for the scaled object.",
2216          "format": "int32",
2217          "type": "integer"
2218        }
2219      },
2220      "type": "object"
2221    },
2222    "io.k8s.api.autoscaling.v1.ScaleStatus": {
2223      "description": "ScaleStatus represents the current status of a scale subresource.",
2224      "properties": {
2225        "replicas": {
2226          "description": "actual number of observed instances of the scaled object.",
2227          "format": "int32",
2228          "type": "integer"
2229        },
2230        "selector": {
2231          "description": "label query over pods that should match the replicas count. This is same as the label selector but in the string format to avoid introspection by clients. The string will be in the same format as the query-param syntax. More info about label selectors: http://kubernetes.io/docs/user-guide/labels#label-selectors",
2232          "type": "string"
2233        }
2234      },
2235      "required": [
2236        "replicas"
2237      ],
2238      "type": "object"
2239    },
2240    "io.k8s.api.autoscaling.v2beta1.ContainerResourceMetricSource": {
2241      "description": "ContainerResourceMetricSource indicates how to scale on a resource metric known to Kubernetes, as specified in requests and limits, describing each pod in the current scale target (e.g. CPU or memory).  The values will be averaged together before being compared to the target.  Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the \"pods\" source.  Only one \"target\" type should be set.",
2242      "properties": {
2243        "container": {
2244          "description": "container is the name of the container in the pods of the scaling target",
2245          "type": "string"
2246        },
2247        "name": {
2248          "description": "name is the name of the resource in question.",
2249          "type": "string"
2250        },
2251        "targetAverageUtilization": {
2252          "description": "targetAverageUtilization is the target value of the average of the resource metric across all relevant pods, represented as a percentage of the requested value of the resource for the pods.",
2253          "format": "int32",
2254          "type": "integer"
2255        },
2256        "targetAverageValue": {
2257          "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity",
2258          "description": "targetAverageValue is the target value of the average of the resource metric across all relevant pods, as a raw value (instead of as a percentage of the request), similar to the \"pods\" metric source type."
2259        }
2260      },
2261      "required": [
2262        "name",
2263        "container"
2264      ],
2265      "type": "object"
2266    },
2267    "io.k8s.api.autoscaling.v2beta1.ContainerResourceMetricStatus": {
2268      "description": "ContainerResourceMetricStatus indicates the current value of a resource metric known to Kubernetes, as specified in requests and limits, describing a single container in each pod in the current scale target (e.g. CPU or memory).  Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the \"pods\" source.",
2269      "properties": {
2270        "container": {
2271          "description": "container is the name of the container in the pods of the scaling target",
2272          "type": "string"
2273        },
2274        "currentAverageUtilization": {
2275          "description": "currentAverageUtilization is the current value of the average of the resource metric across all relevant pods, represented as a percentage of the requested value of the resource for the pods.  It will only be present if `targetAverageValue` was set in the corresponding metric specification.",
2276          "format": "int32",
2277          "type": "integer"
2278        },
2279        "currentAverageValue": {
2280          "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity",
2281          "description": "currentAverageValue is the current value of the average of the resource metric across all relevant pods, as a raw value (instead of as a percentage of the request), similar to the \"pods\" metric source type. It will always be set, regardless of the corresponding metric specification."
2282        },
2283        "name": {
2284          "description": "name is the name of the resource in question.",
2285          "type": "string"
2286        }
2287      },
2288      "required": [
2289        "name",
2290        "currentAverageValue",
2291        "container"
2292      ],
2293      "type": "object"
2294    },
2295    "io.k8s.api.autoscaling.v2beta1.CrossVersionObjectReference": {
2296      "description": "CrossVersionObjectReference contains enough information to let you identify the referred resource.",
2297      "properties": {
2298        "apiVersion": {
2299          "description": "API version of the referent",
2300          "type": "string"
2301        },
2302        "kind": {
2303          "description": "Kind of the referent; More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds\"",
2304          "type": "string"
2305        },
2306        "name": {
2307          "description": "Name of the referent; More info: http://kubernetes.io/docs/user-guide/identifiers#names",
2308          "type": "string"
2309        }
2310      },
2311      "required": [
2312        "kind",
2313        "name"
2314      ],
2315      "type": "object"
2316    },
2317    "io.k8s.api.autoscaling.v2beta1.ExternalMetricSource": {
2318      "description": "ExternalMetricSource indicates how to scale on a metric not associated with any Kubernetes object (for example length of queue in cloud messaging service, or QPS from loadbalancer running outside of cluster). Exactly one \"target\" type should be set.",
2319      "properties": {
2320        "metricName": {
2321          "description": "metricName is the name of the metric in question.",
2322          "type": "string"
2323        },
2324        "metricSelector": {
2325          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector",
2326          "description": "metricSelector is used to identify a specific time series within a given metric."
2327        },
2328        "targetAverageValue": {
2329          "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity",
2330          "description": "targetAverageValue is the target per-pod value of global metric (as a quantity). Mutually exclusive with TargetValue."
2331        },
2332        "targetValue": {
2333          "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity",
2334          "description": "targetValue is the target value of the metric (as a quantity). Mutually exclusive with TargetAverageValue."
2335        }
2336      },
2337      "required": [
2338        "metricName"
2339      ],
2340      "type": "object"
2341    },
2342    "io.k8s.api.autoscaling.v2beta1.ExternalMetricStatus": {
2343      "description": "ExternalMetricStatus indicates the current value of a global metric not associated with any Kubernetes object.",
2344      "properties": {
2345        "currentAverageValue": {
2346          "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity",
2347          "description": "currentAverageValue is the current value of metric averaged over autoscaled pods."
2348        },
2349        "currentValue": {
2350          "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity",
2351          "description": "currentValue is the current value of the metric (as a quantity)"
2352        },
2353        "metricName": {
2354          "description": "metricName is the name of a metric used for autoscaling in metric system.",
2355          "type": "string"
2356        },
2357        "metricSelector": {
2358          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector",
2359          "description": "metricSelector is used to identify a specific time series within a given metric."
2360        }
2361      },
2362      "required": [
2363        "metricName",
2364        "currentValue"
2365      ],
2366      "type": "object"
2367    },
2368    "io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscaler": {
2369      "description": "HorizontalPodAutoscaler is the configuration for a horizontal pod autoscaler, which automatically manages the replica count of any resource implementing the scale subresource based on the metrics specified.",
2370      "properties": {
2371        "apiVersion": {
2372          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
2373          "type": "string"
2374        },
2375        "kind": {
2376          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
2377          "type": "string"
2378        },
2379        "metadata": {
2380          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
2381          "description": "metadata is the standard object metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
2382        },
2383        "spec": {
2384          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscalerSpec",
2385          "description": "spec is the specification for the behaviour of the autoscaler. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status."
2386        },
2387        "status": {
2388          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscalerStatus",
2389          "description": "status is the current information about the autoscaler."
2390        }
2391      },
2392      "type": "object",
2393      "x-kubernetes-group-version-kind": [
2394        {
2395          "group": "autoscaling",
2396          "kind": "HorizontalPodAutoscaler",
2397          "version": "v2beta1"
2398        }
2399      ]
2400    },
2401    "io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscalerCondition": {
2402      "description": "HorizontalPodAutoscalerCondition describes the state of a HorizontalPodAutoscaler at a certain point.",
2403      "properties": {
2404        "lastTransitionTime": {
2405          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
2406          "description": "lastTransitionTime is the last time the condition transitioned from one status to another"
2407        },
2408        "message": {
2409          "description": "message is a human-readable explanation containing details about the transition",
2410          "type": "string"
2411        },
2412        "reason": {
2413          "description": "reason is the reason for the condition's last transition.",
2414          "type": "string"
2415        },
2416        "status": {
2417          "description": "status is the status of the condition (True, False, Unknown)",
2418          "type": "string"
2419        },
2420        "type": {
2421          "description": "type describes the current condition",
2422          "type": "string"
2423        }
2424      },
2425      "required": [
2426        "type",
2427        "status"
2428      ],
2429      "type": "object"
2430    },
2431    "io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscalerList": {
2432      "description": "HorizontalPodAutoscaler is a list of horizontal pod autoscaler objects.",
2433      "properties": {
2434        "apiVersion": {
2435          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
2436          "type": "string"
2437        },
2438        "items": {
2439          "description": "items is the list of horizontal pod autoscaler objects.",
2440          "items": {
2441            "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscaler"
2442          },
2443          "type": "array"
2444        },
2445        "kind": {
2446          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
2447          "type": "string"
2448        },
2449        "metadata": {
2450          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
2451          "description": "metadata is the standard list metadata."
2452        }
2453      },
2454      "required": [
2455        "items"
2456      ],
2457      "type": "object",
2458      "x-kubernetes-group-version-kind": [
2459        {
2460          "group": "autoscaling",
2461          "kind": "HorizontalPodAutoscalerList",
2462          "version": "v2beta1"
2463        }
2464      ]
2465    },
2466    "io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscalerSpec": {
2467      "description": "HorizontalPodAutoscalerSpec describes the desired functionality of the HorizontalPodAutoscaler.",
2468      "properties": {
2469        "maxReplicas": {
2470          "description": "maxReplicas is the upper limit for the number of replicas to which the autoscaler can scale up. It cannot be less that minReplicas.",
2471          "format": "int32",
2472          "type": "integer"
2473        },
2474        "metrics": {
2475          "description": "metrics contains the specifications for which to use to calculate the desired replica count (the maximum replica count across all metrics will be used).  The desired replica count is calculated multiplying the ratio between the target value and the current value by the current number of pods.  Ergo, metrics used must decrease as the pod count is increased, and vice-versa.  See the individual metric source types for more information about how each type of metric must respond.",
2476          "items": {
2477            "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.MetricSpec"
2478          },
2479          "type": "array"
2480        },
2481        "minReplicas": {
2482          "description": "minReplicas is the lower limit for the number of replicas to which the autoscaler can scale down.  It defaults to 1 pod.  minReplicas is allowed to be 0 if the alpha feature gate HPAScaleToZero is enabled and at least one Object or External metric is configured.  Scaling is active as long as at least one metric value is available.",
2483          "format": "int32",
2484          "type": "integer"
2485        },
2486        "scaleTargetRef": {
2487          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.CrossVersionObjectReference",
2488          "description": "scaleTargetRef points to the target resource to scale, and is used to the pods for which metrics should be collected, as well as to actually change the replica count."
2489        }
2490      },
2491      "required": [
2492        "scaleTargetRef",
2493        "maxReplicas"
2494      ],
2495      "type": "object"
2496    },
2497    "io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscalerStatus": {
2498      "description": "HorizontalPodAutoscalerStatus describes the current status of a horizontal pod autoscaler.",
2499      "properties": {
2500        "conditions": {
2501          "description": "conditions is the set of conditions required for this autoscaler to scale its target, and indicates whether or not those conditions are met.",
2502          "items": {
2503            "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscalerCondition"
2504          },
2505          "type": "array"
2506        },
2507        "currentMetrics": {
2508          "description": "currentMetrics is the last read state of the metrics used by this autoscaler.",
2509          "items": {
2510            "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.MetricStatus"
2511          },
2512          "type": "array"
2513        },
2514        "currentReplicas": {
2515          "description": "currentReplicas is current number of replicas of pods managed by this autoscaler, as last seen by the autoscaler.",
2516          "format": "int32",
2517          "type": "integer"
2518        },
2519        "desiredReplicas": {
2520          "description": "desiredReplicas is the desired number of replicas of pods managed by this autoscaler, as last calculated by the autoscaler.",
2521          "format": "int32",
2522          "type": "integer"
2523        },
2524        "lastScaleTime": {
2525          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
2526          "description": "lastScaleTime is the last time the HorizontalPodAutoscaler scaled the number of pods, used by the autoscaler to control how often the number of pods is changed."
2527        },
2528        "observedGeneration": {
2529          "description": "observedGeneration is the most recent generation observed by this autoscaler.",
2530          "format": "int64",
2531          "type": "integer"
2532        }
2533      },
2534      "required": [
2535        "currentReplicas",
2536        "desiredReplicas",
2537        "conditions"
2538      ],
2539      "type": "object"
2540    },
2541    "io.k8s.api.autoscaling.v2beta1.MetricSpec": {
2542      "description": "MetricSpec specifies how to scale based on a single metric (only `type` and one other matching field should be set at once).",
2543      "properties": {
2544        "containerResource": {
2545          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.ContainerResourceMetricSource",
2546          "description": "container resource refers to a resource metric (such as those specified in requests and limits) known to Kubernetes describing a single container in each pod of the current scale target (e.g. CPU or memory). Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the \"pods\" source. This is an alpha feature and can be enabled by the HPAContainerMetrics feature flag."
2547        },
2548        "external": {
2549          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.ExternalMetricSource",
2550          "description": "external refers to a global metric that is not associated with any Kubernetes object. It allows autoscaling based on information coming from components running outside of cluster (for example length of queue in cloud messaging service, or QPS from loadbalancer running outside of cluster)."
2551        },
2552        "object": {
2553          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.ObjectMetricSource",
2554          "description": "object refers to a metric describing a single kubernetes object (for example, hits-per-second on an Ingress object)."
2555        },
2556        "pods": {
2557          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.PodsMetricSource",
2558          "description": "pods refers to a metric describing each pod in the current scale target (for example, transactions-processed-per-second).  The values will be averaged together before being compared to the target value."
2559        },
2560        "resource": {
2561          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.ResourceMetricSource",
2562          "description": "resource refers to a resource metric (such as those specified in requests and limits) known to Kubernetes describing each pod in the current scale target (e.g. CPU or memory). Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the \"pods\" source."
2563        },
2564        "type": {
2565          "description": "type is the type of metric source.  It should be one of \"ContainerResource\", \"External\", \"Object\", \"Pods\" or \"Resource\", each mapping to a matching field in the object. Note: \"ContainerResource\" type is available on when the feature-gate HPAContainerMetrics is enabled",
2566          "type": "string"
2567        }
2568      },
2569      "required": [
2570        "type"
2571      ],
2572      "type": "object"
2573    },
2574    "io.k8s.api.autoscaling.v2beta1.MetricStatus": {
2575      "description": "MetricStatus describes the last-read state of a single metric.",
2576      "properties": {
2577        "containerResource": {
2578          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.ContainerResourceMetricStatus",
2579          "description": "container resource refers to a resource metric (such as those specified in requests and limits) known to Kubernetes describing a single container in each pod in the current scale target (e.g. CPU or memory). Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the \"pods\" source."
2580        },
2581        "external": {
2582          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.ExternalMetricStatus",
2583          "description": "external refers to a global metric that is not associated with any Kubernetes object. It allows autoscaling based on information coming from components running outside of cluster (for example length of queue in cloud messaging service, or QPS from loadbalancer running outside of cluster)."
2584        },
2585        "object": {
2586          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.ObjectMetricStatus",
2587          "description": "object refers to a metric describing a single kubernetes object (for example, hits-per-second on an Ingress object)."
2588        },
2589        "pods": {
2590          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.PodsMetricStatus",
2591          "description": "pods refers to a metric describing each pod in the current scale target (for example, transactions-processed-per-second).  The values will be averaged together before being compared to the target value."
2592        },
2593        "resource": {
2594          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.ResourceMetricStatus",
2595          "description": "resource refers to a resource metric (such as those specified in requests and limits) known to Kubernetes describing each pod in the current scale target (e.g. CPU or memory). Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the \"pods\" source."
2596        },
2597        "type": {
2598          "description": "type is the type of metric source.  It will be one of \"ContainerResource\", \"External\", \"Object\", \"Pods\" or \"Resource\", each corresponds to a matching field in the object. Note: \"ContainerResource\" type is available on when the feature-gate HPAContainerMetrics is enabled",
2599          "type": "string"
2600        }
2601      },
2602      "required": [
2603        "type"
2604      ],
2605      "type": "object"
2606    },
2607    "io.k8s.api.autoscaling.v2beta1.ObjectMetricSource": {
2608      "description": "ObjectMetricSource indicates how to scale on a metric describing a kubernetes object (for example, hits-per-second on an Ingress object).",
2609      "properties": {
2610        "averageValue": {
2611          "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity",
2612          "description": "averageValue is the target value of the average of the metric across all relevant pods (as a quantity)"
2613        },
2614        "metricName": {
2615          "description": "metricName is the name of the metric in question.",
2616          "type": "string"
2617        },
2618        "selector": {
2619          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector",
2620          "description": "selector is the string-encoded form of a standard kubernetes label selector for the given metric When set, it is passed as an additional parameter to the metrics server for more specific metrics scoping When unset, just the metricName will be used to gather metrics."
2621        },
2622        "target": {
2623          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.CrossVersionObjectReference",
2624          "description": "target is the described Kubernetes object."
2625        },
2626        "targetValue": {
2627          "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity",
2628          "description": "targetValue is the target value of the metric (as a quantity)."
2629        }
2630      },
2631      "required": [
2632        "target",
2633        "metricName",
2634        "targetValue"
2635      ],
2636      "type": "object"
2637    },
2638    "io.k8s.api.autoscaling.v2beta1.ObjectMetricStatus": {
2639      "description": "ObjectMetricStatus indicates the current value of a metric describing a kubernetes object (for example, hits-per-second on an Ingress object).",
2640      "properties": {
2641        "averageValue": {
2642          "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity",
2643          "description": "averageValue is the current value of the average of the metric across all relevant pods (as a quantity)"
2644        },
2645        "currentValue": {
2646          "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity",
2647          "description": "currentValue is the current value of the metric (as a quantity)."
2648        },
2649        "metricName": {
2650          "description": "metricName is the name of the metric in question.",
2651          "type": "string"
2652        },
2653        "selector": {
2654          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector",
2655          "description": "selector is the string-encoded form of a standard kubernetes label selector for the given metric When set in the ObjectMetricSource, it is passed as an additional parameter to the metrics server for more specific metrics scoping. When unset, just the metricName will be used to gather metrics."
2656        },
2657        "target": {
2658          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.CrossVersionObjectReference",
2659          "description": "target is the described Kubernetes object."
2660        }
2661      },
2662      "required": [
2663        "target",
2664        "metricName",
2665        "currentValue"
2666      ],
2667      "type": "object"
2668    },
2669    "io.k8s.api.autoscaling.v2beta1.PodsMetricSource": {
2670      "description": "PodsMetricSource indicates how to scale on a metric describing each pod in the current scale target (for example, transactions-processed-per-second). The values will be averaged together before being compared to the target value.",
2671      "properties": {
2672        "metricName": {
2673          "description": "metricName is the name of the metric in question",
2674          "type": "string"
2675        },
2676        "selector": {
2677          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector",
2678          "description": "selector is the string-encoded form of a standard kubernetes label selector for the given metric When set, it is passed as an additional parameter to the metrics server for more specific metrics scoping When unset, just the metricName will be used to gather metrics."
2679        },
2680        "targetAverageValue": {
2681          "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity",
2682          "description": "targetAverageValue is the target value of the average of the metric across all relevant pods (as a quantity)"
2683        }
2684      },
2685      "required": [
2686        "metricName",
2687        "targetAverageValue"
2688      ],
2689      "type": "object"
2690    },
2691    "io.k8s.api.autoscaling.v2beta1.PodsMetricStatus": {
2692      "description": "PodsMetricStatus indicates the current value of a metric describing each pod in the current scale target (for example, transactions-processed-per-second).",
2693      "properties": {
2694        "currentAverageValue": {
2695          "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity",
2696          "description": "currentAverageValue is the current value of the average of the metric across all relevant pods (as a quantity)"
2697        },
2698        "metricName": {
2699          "description": "metricName is the name of the metric in question",
2700          "type": "string"
2701        },
2702        "selector": {
2703          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector",
2704          "description": "selector is the string-encoded form of a standard kubernetes label selector for the given metric When set in the PodsMetricSource, it is passed as an additional parameter to the metrics server for more specific metrics scoping. When unset, just the metricName will be used to gather metrics."
2705        }
2706      },
2707      "required": [
2708        "metricName",
2709        "currentAverageValue"
2710      ],
2711      "type": "object"
2712    },
2713    "io.k8s.api.autoscaling.v2beta1.ResourceMetricSource": {
2714      "description": "ResourceMetricSource indicates how to scale on a resource metric known to Kubernetes, as specified in requests and limits, describing each pod in the current scale target (e.g. CPU or memory).  The values will be averaged together before being compared to the target.  Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the \"pods\" source.  Only one \"target\" type should be set.",
2715      "properties": {
2716        "name": {
2717          "description": "name is the name of the resource in question.",
2718          "type": "string"
2719        },
2720        "targetAverageUtilization": {
2721          "description": "targetAverageUtilization is the target value of the average of the resource metric across all relevant pods, represented as a percentage of the requested value of the resource for the pods.",
2722          "format": "int32",
2723          "type": "integer"
2724        },
2725        "targetAverageValue": {
2726          "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity",
2727          "description": "targetAverageValue is the target value of the average of the resource metric across all relevant pods, as a raw value (instead of as a percentage of the request), similar to the \"pods\" metric source type."
2728        }
2729      },
2730      "required": [
2731        "name"
2732      ],
2733      "type": "object"
2734    },
2735    "io.k8s.api.autoscaling.v2beta1.ResourceMetricStatus": {
2736      "description": "ResourceMetricStatus indicates the current value of a resource metric known to Kubernetes, as specified in requests and limits, describing each pod in the current scale target (e.g. CPU or memory).  Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the \"pods\" source.",
2737      "properties": {
2738        "currentAverageUtilization": {
2739          "description": "currentAverageUtilization is the current value of the average of the resource metric across all relevant pods, represented as a percentage of the requested value of the resource for the pods.  It will only be present if `targetAverageValue` was set in the corresponding metric specification.",
2740          "format": "int32",
2741          "type": "integer"
2742        },
2743        "currentAverageValue": {
2744          "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity",
2745          "description": "currentAverageValue is the current value of the average of the resource metric across all relevant pods, as a raw value (instead of as a percentage of the request), similar to the \"pods\" metric source type. It will always be set, regardless of the corresponding metric specification."
2746        },
2747        "name": {
2748          "description": "name is the name of the resource in question.",
2749          "type": "string"
2750        }
2751      },
2752      "required": [
2753        "name",
2754        "currentAverageValue"
2755      ],
2756      "type": "object"
2757    },
2758    "io.k8s.api.autoscaling.v2beta2.ContainerResourceMetricSource": {
2759      "description": "ContainerResourceMetricSource indicates how to scale on a resource metric known to Kubernetes, as specified in requests and limits, describing each pod in the current scale target (e.g. CPU or memory).  The values will be averaged together before being compared to the target.  Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the \"pods\" source.  Only one \"target\" type should be set.",
2760      "properties": {
2761        "container": {
2762          "description": "container is the name of the container in the pods of the scaling target",
2763          "type": "string"
2764        },
2765        "name": {
2766          "description": "name is the name of the resource in question.",
2767          "type": "string"
2768        },
2769        "target": {
2770          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.MetricTarget",
2771          "description": "target specifies the target value for the given metric"
2772        }
2773      },
2774      "required": [
2775        "name",
2776        "target",
2777        "container"
2778      ],
2779      "type": "object"
2780    },
2781    "io.k8s.api.autoscaling.v2beta2.ContainerResourceMetricStatus": {
2782      "description": "ContainerResourceMetricStatus indicates the current value of a resource metric known to Kubernetes, as specified in requests and limits, describing a single container in each pod in the current scale target (e.g. CPU or memory).  Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the \"pods\" source.",
2783      "properties": {
2784        "container": {
2785          "description": "Container is the name of the container in the pods of the scaling target",
2786          "type": "string"
2787        },
2788        "current": {
2789          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.MetricValueStatus",
2790          "description": "current contains the current value for the given metric"
2791        },
2792        "name": {
2793          "description": "Name is the name of the resource in question.",
2794          "type": "string"
2795        }
2796      },
2797      "required": [
2798        "name",
2799        "current",
2800        "container"
2801      ],
2802      "type": "object"
2803    },
2804    "io.k8s.api.autoscaling.v2beta2.CrossVersionObjectReference": {
2805      "description": "CrossVersionObjectReference contains enough information to let you identify the referred resource.",
2806      "properties": {
2807        "apiVersion": {
2808          "description": "API version of the referent",
2809          "type": "string"
2810        },
2811        "kind": {
2812          "description": "Kind of the referent; More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds\"",
2813          "type": "string"
2814        },
2815        "name": {
2816          "description": "Name of the referent; More info: http://kubernetes.io/docs/user-guide/identifiers#names",
2817          "type": "string"
2818        }
2819      },
2820      "required": [
2821        "kind",
2822        "name"
2823      ],
2824      "type": "object"
2825    },
2826    "io.k8s.api.autoscaling.v2beta2.ExternalMetricSource": {
2827      "description": "ExternalMetricSource indicates how to scale on a metric not associated with any Kubernetes object (for example length of queue in cloud messaging service, or QPS from loadbalancer running outside of cluster).",
2828      "properties": {
2829        "metric": {
2830          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.MetricIdentifier",
2831          "description": "metric identifies the target metric by name and selector"
2832        },
2833        "target": {
2834          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.MetricTarget",
2835          "description": "target specifies the target value for the given metric"
2836        }
2837      },
2838      "required": [
2839        "metric",
2840        "target"
2841      ],
2842      "type": "object"
2843    },
2844    "io.k8s.api.autoscaling.v2beta2.ExternalMetricStatus": {
2845      "description": "ExternalMetricStatus indicates the current value of a global metric not associated with any Kubernetes object.",
2846      "properties": {
2847        "current": {
2848          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.MetricValueStatus",
2849          "description": "current contains the current value for the given metric"
2850        },
2851        "metric": {
2852          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.MetricIdentifier",
2853          "description": "metric identifies the target metric by name and selector"
2854        }
2855      },
2856      "required": [
2857        "metric",
2858        "current"
2859      ],
2860      "type": "object"
2861    },
2862    "io.k8s.api.autoscaling.v2beta2.HPAScalingPolicy": {
2863      "description": "HPAScalingPolicy is a single policy which must hold true for a specified past interval.",
2864      "properties": {
2865        "periodSeconds": {
2866          "description": "PeriodSeconds specifies the window of time for which the policy should hold true. PeriodSeconds must be greater than zero and less than or equal to 1800 (30 min).",
2867          "format": "int32",
2868          "type": "integer"
2869        },
2870        "type": {
2871          "description": "Type is used to specify the scaling policy.",
2872          "type": "string"
2873        },
2874        "value": {
2875          "description": "Value contains the amount of change which is permitted by the policy. It must be greater than zero",
2876          "format": "int32",
2877          "type": "integer"
2878        }
2879      },
2880      "required": [
2881        "type",
2882        "value",
2883        "periodSeconds"
2884      ],
2885      "type": "object"
2886    },
2887    "io.k8s.api.autoscaling.v2beta2.HPAScalingRules": {
2888      "description": "HPAScalingRules configures the scaling behavior for one direction. These Rules are applied after calculating DesiredReplicas from metrics for the HPA. They can limit the scaling velocity by specifying scaling policies. They can prevent flapping by specifying the stabilization window, so that the number of replicas is not set instantly, instead, the safest value from the stabilization window is chosen.",
2889      "properties": {
2890        "policies": {
2891          "description": "policies is a list of potential scaling polices which can be used during scaling. At least one policy must be specified, otherwise the HPAScalingRules will be discarded as invalid",
2892          "items": {
2893            "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.HPAScalingPolicy"
2894          },
2895          "type": "array"
2896        },
2897        "selectPolicy": {
2898          "description": "selectPolicy is used to specify which policy should be used. If not set, the default value MaxPolicySelect is used.",
2899          "type": "string"
2900        },
2901        "stabilizationWindowSeconds": {
2902          "description": "StabilizationWindowSeconds is the number of seconds for which past recommendations should be considered while scaling up or scaling down. StabilizationWindowSeconds must be greater than or equal to zero and less than or equal to 3600 (one hour). If not set, use the default values: - For scale up: 0 (i.e. no stabilization is done). - For scale down: 300 (i.e. the stabilization window is 300 seconds long).",
2903          "format": "int32",
2904          "type": "integer"
2905        }
2906      },
2907      "type": "object"
2908    },
2909    "io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscaler": {
2910      "description": "HorizontalPodAutoscaler is the configuration for a horizontal pod autoscaler, which automatically manages the replica count of any resource implementing the scale subresource based on the metrics specified.",
2911      "properties": {
2912        "apiVersion": {
2913          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
2914          "type": "string"
2915        },
2916        "kind": {
2917          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
2918          "type": "string"
2919        },
2920        "metadata": {
2921          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
2922          "description": "metadata is the standard object metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
2923        },
2924        "spec": {
2925          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscalerSpec",
2926          "description": "spec is the specification for the behaviour of the autoscaler. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status."
2927        },
2928        "status": {
2929          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscalerStatus",
2930          "description": "status is the current information about the autoscaler."
2931        }
2932      },
2933      "type": "object",
2934      "x-kubernetes-group-version-kind": [
2935        {
2936          "group": "autoscaling",
2937          "kind": "HorizontalPodAutoscaler",
2938          "version": "v2beta2"
2939        }
2940      ]
2941    },
2942    "io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscalerBehavior": {
2943      "description": "HorizontalPodAutoscalerBehavior configures the scaling behavior of the target in both Up and Down directions (scaleUp and scaleDown fields respectively).",
2944      "properties": {
2945        "scaleDown": {
2946          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.HPAScalingRules",
2947          "description": "scaleDown is scaling policy for scaling Down. If not set, the default value is to allow to scale down to minReplicas pods, with a 300 second stabilization window (i.e., the highest recommendation for the last 300sec is used)."
2948        },
2949        "scaleUp": {
2950          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.HPAScalingRules",
2951          "description": "scaleUp is scaling policy for scaling Up. If not set, the default value is the higher of:\n  * increase no more than 4 pods per 60 seconds\n  * double the number of pods per 60 seconds\nNo stabilization is used."
2952        }
2953      },
2954      "type": "object"
2955    },
2956    "io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscalerCondition": {
2957      "description": "HorizontalPodAutoscalerCondition describes the state of a HorizontalPodAutoscaler at a certain point.",
2958      "properties": {
2959        "lastTransitionTime": {
2960          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
2961          "description": "lastTransitionTime is the last time the condition transitioned from one status to another"
2962        },
2963        "message": {
2964          "description": "message is a human-readable explanation containing details about the transition",
2965          "type": "string"
2966        },
2967        "reason": {
2968          "description": "reason is the reason for the condition's last transition.",
2969          "type": "string"
2970        },
2971        "status": {
2972          "description": "status is the status of the condition (True, False, Unknown)",
2973          "type": "string"
2974        },
2975        "type": {
2976          "description": "type describes the current condition",
2977          "type": "string"
2978        }
2979      },
2980      "required": [
2981        "type",
2982        "status"
2983      ],
2984      "type": "object"
2985    },
2986    "io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscalerList": {
2987      "description": "HorizontalPodAutoscalerList is a list of horizontal pod autoscaler objects.",
2988      "properties": {
2989        "apiVersion": {
2990          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
2991          "type": "string"
2992        },
2993        "items": {
2994          "description": "items is the list of horizontal pod autoscaler objects.",
2995          "items": {
2996            "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscaler"
2997          },
2998          "type": "array"
2999        },
3000        "kind": {
3001          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
3002          "type": "string"
3003        },
3004        "metadata": {
3005          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
3006          "description": "metadata is the standard list metadata."
3007        }
3008      },
3009      "required": [
3010        "items"
3011      ],
3012      "type": "object",
3013      "x-kubernetes-group-version-kind": [
3014        {
3015          "group": "autoscaling",
3016          "kind": "HorizontalPodAutoscalerList",
3017          "version": "v2beta2"
3018        }
3019      ]
3020    },
3021    "io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscalerSpec": {
3022      "description": "HorizontalPodAutoscalerSpec describes the desired functionality of the HorizontalPodAutoscaler.",
3023      "properties": {
3024        "behavior": {
3025          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscalerBehavior",
3026          "description": "behavior configures the scaling behavior of the target in both Up and Down directions (scaleUp and scaleDown fields respectively). If not set, the default HPAScalingRules for scale up and scale down are used."
3027        },
3028        "maxReplicas": {
3029          "description": "maxReplicas is the upper limit for the number of replicas to which the autoscaler can scale up. It cannot be less that minReplicas.",
3030          "format": "int32",
3031          "type": "integer"
3032        },
3033        "metrics": {
3034          "description": "metrics contains the specifications for which to use to calculate the desired replica count (the maximum replica count across all metrics will be used).  The desired replica count is calculated multiplying the ratio between the target value and the current value by the current number of pods.  Ergo, metrics used must decrease as the pod count is increased, and vice-versa.  See the individual metric source types for more information about how each type of metric must respond. If not set, the default metric will be set to 80% average CPU utilization.",
3035          "items": {
3036            "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.MetricSpec"
3037          },
3038          "type": "array"
3039        },
3040        "minReplicas": {
3041          "description": "minReplicas is the lower limit for the number of replicas to which the autoscaler can scale down.  It defaults to 1 pod.  minReplicas is allowed to be 0 if the alpha feature gate HPAScaleToZero is enabled and at least one Object or External metric is configured.  Scaling is active as long as at least one metric value is available.",
3042          "format": "int32",
3043          "type": "integer"
3044        },
3045        "scaleTargetRef": {
3046          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.CrossVersionObjectReference",
3047          "description": "scaleTargetRef points to the target resource to scale, and is used to the pods for which metrics should be collected, as well as to actually change the replica count."
3048        }
3049      },
3050      "required": [
3051        "scaleTargetRef",
3052        "maxReplicas"
3053      ],
3054      "type": "object"
3055    },
3056    "io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscalerStatus": {
3057      "description": "HorizontalPodAutoscalerStatus describes the current status of a horizontal pod autoscaler.",
3058      "properties": {
3059        "conditions": {
3060          "description": "conditions is the set of conditions required for this autoscaler to scale its target, and indicates whether or not those conditions are met.",
3061          "items": {
3062            "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscalerCondition"
3063          },
3064          "type": "array"
3065        },
3066        "currentMetrics": {
3067          "description": "currentMetrics is the last read state of the metrics used by this autoscaler.",
3068          "items": {
3069            "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.MetricStatus"
3070          },
3071          "type": "array"
3072        },
3073        "currentReplicas": {
3074          "description": "currentReplicas is current number of replicas of pods managed by this autoscaler, as last seen by the autoscaler.",
3075          "format": "int32",
3076          "type": "integer"
3077        },
3078        "desiredReplicas": {
3079          "description": "desiredReplicas is the desired number of replicas of pods managed by this autoscaler, as last calculated by the autoscaler.",
3080          "format": "int32",
3081          "type": "integer"
3082        },
3083        "lastScaleTime": {
3084          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
3085          "description": "lastScaleTime is the last time the HorizontalPodAutoscaler scaled the number of pods, used by the autoscaler to control how often the number of pods is changed."
3086        },
3087        "observedGeneration": {
3088          "description": "observedGeneration is the most recent generation observed by this autoscaler.",
3089          "format": "int64",
3090          "type": "integer"
3091        }
3092      },
3093      "required": [
3094        "currentReplicas",
3095        "desiredReplicas",
3096        "conditions"
3097      ],
3098      "type": "object"
3099    },
3100    "io.k8s.api.autoscaling.v2beta2.MetricIdentifier": {
3101      "description": "MetricIdentifier defines the name and optionally selector for a metric",
3102      "properties": {
3103        "name": {
3104          "description": "name is the name of the given metric",
3105          "type": "string"
3106        },
3107        "selector": {
3108          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector",
3109          "description": "selector is the string-encoded form of a standard kubernetes label selector for the given metric When set, it is passed as an additional parameter to the metrics server for more specific metrics scoping. When unset, just the metricName will be used to gather metrics."
3110        }
3111      },
3112      "required": [
3113        "name"
3114      ],
3115      "type": "object"
3116    },
3117    "io.k8s.api.autoscaling.v2beta2.MetricSpec": {
3118      "description": "MetricSpec specifies how to scale based on a single metric (only `type` and one other matching field should be set at once).",
3119      "properties": {
3120        "containerResource": {
3121          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.ContainerResourceMetricSource",
3122          "description": "container resource refers to a resource metric (such as those specified in requests and limits) known to Kubernetes describing a single container in each pod of the current scale target (e.g. CPU or memory). Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the \"pods\" source. This is an alpha feature and can be enabled by the HPAContainerMetrics feature flag."
3123        },
3124        "external": {
3125          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.ExternalMetricSource",
3126          "description": "external refers to a global metric that is not associated with any Kubernetes object. It allows autoscaling based on information coming from components running outside of cluster (for example length of queue in cloud messaging service, or QPS from loadbalancer running outside of cluster)."
3127        },
3128        "object": {
3129          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.ObjectMetricSource",
3130          "description": "object refers to a metric describing a single kubernetes object (for example, hits-per-second on an Ingress object)."
3131        },
3132        "pods": {
3133          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.PodsMetricSource",
3134          "description": "pods refers to a metric describing each pod in the current scale target (for example, transactions-processed-per-second).  The values will be averaged together before being compared to the target value."
3135        },
3136        "resource": {
3137          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.ResourceMetricSource",
3138          "description": "resource refers to a resource metric (such as those specified in requests and limits) known to Kubernetes describing each pod in the current scale target (e.g. CPU or memory). Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the \"pods\" source."
3139        },
3140        "type": {
3141          "description": "type is the type of metric source.  It should be one of \"ContainerResource\", \"External\", \"Object\", \"Pods\" or \"Resource\", each mapping to a matching field in the object. Note: \"ContainerResource\" type is available on when the feature-gate HPAContainerMetrics is enabled",
3142          "type": "string"
3143        }
3144      },
3145      "required": [
3146        "type"
3147      ],
3148      "type": "object"
3149    },
3150    "io.k8s.api.autoscaling.v2beta2.MetricStatus": {
3151      "description": "MetricStatus describes the last-read state of a single metric.",
3152      "properties": {
3153        "containerResource": {
3154          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.ContainerResourceMetricStatus",
3155          "description": "container resource refers to a resource metric (such as those specified in requests and limits) known to Kubernetes describing a single container in each pod in the current scale target (e.g. CPU or memory). Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the \"pods\" source."
3156        },
3157        "external": {
3158          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.ExternalMetricStatus",
3159          "description": "external refers to a global metric that is not associated with any Kubernetes object. It allows autoscaling based on information coming from components running outside of cluster (for example length of queue in cloud messaging service, or QPS from loadbalancer running outside of cluster)."
3160        },
3161        "object": {
3162          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.ObjectMetricStatus",
3163          "description": "object refers to a metric describing a single kubernetes object (for example, hits-per-second on an Ingress object)."
3164        },
3165        "pods": {
3166          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.PodsMetricStatus",
3167          "description": "pods refers to a metric describing each pod in the current scale target (for example, transactions-processed-per-second).  The values will be averaged together before being compared to the target value."
3168        },
3169        "resource": {
3170          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.ResourceMetricStatus",
3171          "description": "resource refers to a resource metric (such as those specified in requests and limits) known to Kubernetes describing each pod in the current scale target (e.g. CPU or memory). Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the \"pods\" source."
3172        },
3173        "type": {
3174          "description": "type is the type of metric source.  It will be one of \"ContainerResource\", \"External\", \"Object\", \"Pods\" or \"Resource\", each corresponds to a matching field in the object. Note: \"ContainerResource\" type is available on when the feature-gate HPAContainerMetrics is enabled",
3175          "type": "string"
3176        }
3177      },
3178      "required": [
3179        "type"
3180      ],
3181      "type": "object"
3182    },
3183    "io.k8s.api.autoscaling.v2beta2.MetricTarget": {
3184      "description": "MetricTarget defines the target value, average value, or average utilization of a specific metric",
3185      "properties": {
3186        "averageUtilization": {
3187          "description": "averageUtilization is the target value of the average of the resource metric across all relevant pods, represented as a percentage of the requested value of the resource for the pods. Currently only valid for Resource metric source type",
3188          "format": "int32",
3189          "type": "integer"
3190        },
3191        "averageValue": {
3192          "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity",
3193          "description": "averageValue is the target value of the average of the metric across all relevant pods (as a quantity)"
3194        },
3195        "type": {
3196          "description": "type represents whether the metric type is Utilization, Value, or AverageValue",
3197          "type": "string"
3198        },
3199        "value": {
3200          "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity",
3201          "description": "value is the target value of the metric (as a quantity)."
3202        }
3203      },
3204      "required": [
3205        "type"
3206      ],
3207      "type": "object"
3208    },
3209    "io.k8s.api.autoscaling.v2beta2.MetricValueStatus": {
3210      "description": "MetricValueStatus holds the current value for a metric",
3211      "properties": {
3212        "averageUtilization": {
3213          "description": "currentAverageUtilization is the current value of the average of the resource metric across all relevant pods, represented as a percentage of the requested value of the resource for the pods.",
3214          "format": "int32",
3215          "type": "integer"
3216        },
3217        "averageValue": {
3218          "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity",
3219          "description": "averageValue is the current value of the average of the metric across all relevant pods (as a quantity)"
3220        },
3221        "value": {
3222          "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity",
3223          "description": "value is the current value of the metric (as a quantity)."
3224        }
3225      },
3226      "type": "object"
3227    },
3228    "io.k8s.api.autoscaling.v2beta2.ObjectMetricSource": {
3229      "description": "ObjectMetricSource indicates how to scale on a metric describing a kubernetes object (for example, hits-per-second on an Ingress object).",
3230      "properties": {
3231        "describedObject": {
3232          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.CrossVersionObjectReference"
3233        },
3234        "metric": {
3235          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.MetricIdentifier",
3236          "description": "metric identifies the target metric by name and selector"
3237        },
3238        "target": {
3239          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.MetricTarget",
3240          "description": "target specifies the target value for the given metric"
3241        }
3242      },
3243      "required": [
3244        "describedObject",
3245        "target",
3246        "metric"
3247      ],
3248      "type": "object"
3249    },
3250    "io.k8s.api.autoscaling.v2beta2.ObjectMetricStatus": {
3251      "description": "ObjectMetricStatus indicates the current value of a metric describing a kubernetes object (for example, hits-per-second on an Ingress object).",
3252      "properties": {
3253        "current": {
3254          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.MetricValueStatus",
3255          "description": "current contains the current value for the given metric"
3256        },
3257        "describedObject": {
3258          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.CrossVersionObjectReference"
3259        },
3260        "metric": {
3261          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.MetricIdentifier",
3262          "description": "metric identifies the target metric by name and selector"
3263        }
3264      },
3265      "required": [
3266        "metric",
3267        "current",
3268        "describedObject"
3269      ],
3270      "type": "object"
3271    },
3272    "io.k8s.api.autoscaling.v2beta2.PodsMetricSource": {
3273      "description": "PodsMetricSource indicates how to scale on a metric describing each pod in the current scale target (for example, transactions-processed-per-second). The values will be averaged together before being compared to the target value.",
3274      "properties": {
3275        "metric": {
3276          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.MetricIdentifier",
3277          "description": "metric identifies the target metric by name and selector"
3278        },
3279        "target": {
3280          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.MetricTarget",
3281          "description": "target specifies the target value for the given metric"
3282        }
3283      },
3284      "required": [
3285        "metric",
3286        "target"
3287      ],
3288      "type": "object"
3289    },
3290    "io.k8s.api.autoscaling.v2beta2.PodsMetricStatus": {
3291      "description": "PodsMetricStatus indicates the current value of a metric describing each pod in the current scale target (for example, transactions-processed-per-second).",
3292      "properties": {
3293        "current": {
3294          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.MetricValueStatus",
3295          "description": "current contains the current value for the given metric"
3296        },
3297        "metric": {
3298          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.MetricIdentifier",
3299          "description": "metric identifies the target metric by name and selector"
3300        }
3301      },
3302      "required": [
3303        "metric",
3304        "current"
3305      ],
3306      "type": "object"
3307    },
3308    "io.k8s.api.autoscaling.v2beta2.ResourceMetricSource": {
3309      "description": "ResourceMetricSource indicates how to scale on a resource metric known to Kubernetes, as specified in requests and limits, describing each pod in the current scale target (e.g. CPU or memory).  The values will be averaged together before being compared to the target.  Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the \"pods\" source.  Only one \"target\" type should be set.",
3310      "properties": {
3311        "name": {
3312          "description": "name is the name of the resource in question.",
3313          "type": "string"
3314        },
3315        "target": {
3316          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.MetricTarget",
3317          "description": "target specifies the target value for the given metric"
3318        }
3319      },
3320      "required": [
3321        "name",
3322        "target"
3323      ],
3324      "type": "object"
3325    },
3326    "io.k8s.api.autoscaling.v2beta2.ResourceMetricStatus": {
3327      "description": "ResourceMetricStatus indicates the current value of a resource metric known to Kubernetes, as specified in requests and limits, describing each pod in the current scale target (e.g. CPU or memory).  Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the \"pods\" source.",
3328      "properties": {
3329        "current": {
3330          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.MetricValueStatus",
3331          "description": "current contains the current value for the given metric"
3332        },
3333        "name": {
3334          "description": "Name is the name of the resource in question.",
3335          "type": "string"
3336        }
3337      },
3338      "required": [
3339        "name",
3340        "current"
3341      ],
3342      "type": "object"
3343    },
3344    "io.k8s.api.batch.v1.CronJob": {
3345      "description": "CronJob represents the configuration of a single cron job.",
3346      "properties": {
3347        "apiVersion": {
3348          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
3349          "type": "string"
3350        },
3351        "kind": {
3352          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
3353          "type": "string"
3354        },
3355        "metadata": {
3356          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
3357          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
3358        },
3359        "spec": {
3360          "$ref": "#/definitions/io.k8s.api.batch.v1.CronJobSpec",
3361          "description": "Specification of the desired behavior of a cron job, including the schedule. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status"
3362        },
3363        "status": {
3364          "$ref": "#/definitions/io.k8s.api.batch.v1.CronJobStatus",
3365          "description": "Current status of a cron job. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status"
3366        }
3367      },
3368      "type": "object",
3369      "x-kubernetes-group-version-kind": [
3370        {
3371          "group": "batch",
3372          "kind": "CronJob",
3373          "version": "v1"
3374        }
3375      ]
3376    },
3377    "io.k8s.api.batch.v1.CronJobList": {
3378      "description": "CronJobList is a collection of cron jobs.",
3379      "properties": {
3380        "apiVersion": {
3381          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
3382          "type": "string"
3383        },
3384        "items": {
3385          "description": "items is the list of CronJobs.",
3386          "items": {
3387            "$ref": "#/definitions/io.k8s.api.batch.v1.CronJob"
3388          },
3389          "type": "array"
3390        },
3391        "kind": {
3392          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
3393          "type": "string"
3394        },
3395        "metadata": {
3396          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
3397          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
3398        }
3399      },
3400      "required": [
3401        "items"
3402      ],
3403      "type": "object",
3404      "x-kubernetes-group-version-kind": [
3405        {
3406          "group": "batch",
3407          "kind": "CronJobList",
3408          "version": "v1"
3409        }
3410      ]
3411    },
3412    "io.k8s.api.batch.v1.CronJobSpec": {
3413      "description": "CronJobSpec describes how the job execution will look like and when it will actually run.",
3414      "properties": {
3415        "concurrencyPolicy": {
3416          "description": "Specifies how to treat concurrent executions of a Job. Valid values are: - \"Allow\" (default): allows CronJobs to run concurrently; - \"Forbid\": forbids concurrent runs, skipping next run if previous run hasn't finished yet; - \"Replace\": cancels currently running job and replaces it with a new one",
3417          "type": "string"
3418        },
3419        "failedJobsHistoryLimit": {
3420          "description": "The number of failed finished jobs to retain. Value must be non-negative integer. Defaults to 1.",
3421          "format": "int32",
3422          "type": "integer"
3423        },
3424        "jobTemplate": {
3425          "$ref": "#/definitions/io.k8s.api.batch.v1.JobTemplateSpec",
3426          "description": "Specifies the job that will be created when executing a CronJob."
3427        },
3428        "schedule": {
3429          "description": "The schedule in Cron format, see https://en.wikipedia.org/wiki/Cron.",
3430          "type": "string"
3431        },
3432        "startingDeadlineSeconds": {
3433          "description": "Optional deadline in seconds for starting the job if it misses scheduled time for any reason.  Missed jobs executions will be counted as failed ones.",
3434          "format": "int64",
3435          "type": "integer"
3436        },
3437        "successfulJobsHistoryLimit": {
3438          "description": "The number of successful finished jobs to retain. Value must be non-negative integer. Defaults to 3.",
3439          "format": "int32",
3440          "type": "integer"
3441        },
3442        "suspend": {
3443          "description": "This flag tells the controller to suspend subsequent executions, it does not apply to already started executions.  Defaults to false.",
3444          "type": "boolean"
3445        }
3446      },
3447      "required": [
3448        "schedule",
3449        "jobTemplate"
3450      ],
3451      "type": "object"
3452    },
3453    "io.k8s.api.batch.v1.CronJobStatus": {
3454      "description": "CronJobStatus represents the current state of a cron job.",
3455      "properties": {
3456        "active": {
3457          "description": "A list of pointers to currently running jobs.",
3458          "items": {
3459            "$ref": "#/definitions/io.k8s.api.core.v1.ObjectReference"
3460          },
3461          "type": "array",
3462          "x-kubernetes-list-type": "atomic"
3463        },
3464        "lastScheduleTime": {
3465          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
3466          "description": "Information when was the last time the job was successfully scheduled."
3467        },
3468        "lastSuccessfulTime": {
3469          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
3470          "description": "Information when was the last time the job successfully completed."
3471        }
3472      },
3473      "type": "object"
3474    },
3475    "io.k8s.api.batch.v1.Job": {
3476      "description": "Job represents the configuration of a single job.",
3477      "properties": {
3478        "apiVersion": {
3479          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
3480          "type": "string"
3481        },
3482        "kind": {
3483          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
3484          "type": "string"
3485        },
3486        "metadata": {
3487          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
3488          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
3489        },
3490        "spec": {
3491          "$ref": "#/definitions/io.k8s.api.batch.v1.JobSpec",
3492          "description": "Specification of the desired behavior of a job. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status"
3493        },
3494        "status": {
3495          "$ref": "#/definitions/io.k8s.api.batch.v1.JobStatus",
3496          "description": "Current status of a job. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status"
3497        }
3498      },
3499      "type": "object",
3500      "x-kubernetes-group-version-kind": [
3501        {
3502          "group": "batch",
3503          "kind": "Job",
3504          "version": "v1"
3505        }
3506      ]
3507    },
3508    "io.k8s.api.batch.v1.JobCondition": {
3509      "description": "JobCondition describes current state of a job.",
3510      "properties": {
3511        "lastProbeTime": {
3512          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
3513          "description": "Last time the condition was checked."
3514        },
3515        "lastTransitionTime": {
3516          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
3517          "description": "Last time the condition transit from one status to another."
3518        },
3519        "message": {
3520          "description": "Human readable message indicating details about last transition.",
3521          "type": "string"
3522        },
3523        "reason": {
3524          "description": "(brief) reason for the condition's last transition.",
3525          "type": "string"
3526        },
3527        "status": {
3528          "description": "Status of the condition, one of True, False, Unknown.",
3529          "type": "string"
3530        },
3531        "type": {
3532          "description": "Type of job condition, Complete or Failed.",
3533          "type": "string"
3534        }
3535      },
3536      "required": [
3537        "type",
3538        "status"
3539      ],
3540      "type": "object"
3541    },
3542    "io.k8s.api.batch.v1.JobList": {
3543      "description": "JobList is a collection of jobs.",
3544      "properties": {
3545        "apiVersion": {
3546          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
3547          "type": "string"
3548        },
3549        "items": {
3550          "description": "items is the list of Jobs.",
3551          "items": {
3552            "$ref": "#/definitions/io.k8s.api.batch.v1.Job"
3553          },
3554          "type": "array"
3555        },
3556        "kind": {
3557          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
3558          "type": "string"
3559        },
3560        "metadata": {
3561          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
3562          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
3563        }
3564      },
3565      "required": [
3566        "items"
3567      ],
3568      "type": "object",
3569      "x-kubernetes-group-version-kind": [
3570        {
3571          "group": "batch",
3572          "kind": "JobList",
3573          "version": "v1"
3574        }
3575      ]
3576    },
3577    "io.k8s.api.batch.v1.JobSpec": {
3578      "description": "JobSpec describes how the job execution will look like.",
3579      "properties": {
3580        "activeDeadlineSeconds": {
3581          "description": "Specifies the duration in seconds relative to the startTime that the job may be continuously active before the system tries to terminate it; value must be positive integer. If a Job is suspended (at creation or through an update), this timer will effectively be stopped and reset when the Job is resumed again.",
3582          "format": "int64",
3583          "type": "integer"
3584        },
3585        "backoffLimit": {
3586          "description": "Specifies the number of retries before marking this job failed. Defaults to 6",
3587          "format": "int32",
3588          "type": "integer"
3589        },
3590        "completionMode": {
3591          "description": "CompletionMode specifies how Pod completions are tracked. It can be `NonIndexed` (default) or `Indexed`.\n\n`NonIndexed` means that the Job is considered complete when there have been .spec.completions successfully completed Pods. Each Pod completion is homologous to each other.\n\n`Indexed` means that the Pods of a Job get an associated completion index from 0 to (.spec.completions - 1), available in the annotation batch.kubernetes.io/job-completion-index. The Job is considered complete when there is one successfully completed Pod for each index. When value is `Indexed`, .spec.completions must be specified and `.spec.parallelism` must be less than or equal to 10^5. In addition, The Pod name takes the form `$(job-name)-$(index)-$(random-string)`, the Pod hostname takes the form `$(job-name)-$(index)`.\n\nThis field is beta-level. More completion modes can be added in the future. If the Job controller observes a mode that it doesn't recognize, the controller skips updates for the Job.",
3592          "type": "string"
3593        },
3594        "completions": {
3595          "description": "Specifies the desired number of successfully finished pods the job should be run with.  Setting to nil means that the success of any pod signals the success of all pods, and allows parallelism to have any positive value.  Setting to 1 means that parallelism is limited to 1 and the success of that pod signals the success of the job. More info: https://kubernetes.io/docs/concepts/workloads/controllers/jobs-run-to-completion/",
3596          "format": "int32",
3597          "type": "integer"
3598        },
3599        "manualSelector": {
3600          "description": "manualSelector controls generation of pod labels and pod selectors. Leave `manualSelector` unset unless you are certain what you are doing. When false or unset, the system pick labels unique to this job and appends those labels to the pod template.  When true, the user is responsible for picking unique labels and specifying the selector.  Failure to pick a unique label may cause this and other jobs to not function correctly.  However, You may see `manualSelector=true` in jobs that were created with the old `extensions/v1beta1` API. More info: https://kubernetes.io/docs/concepts/workloads/controllers/jobs-run-to-completion/#specifying-your-own-pod-selector",
3601          "type": "boolean"
3602        },
3603        "parallelism": {
3604          "description": "Specifies the maximum desired number of pods the job should run at any given time. The actual number of pods running in steady state will be less than this number when ((.spec.completions - .status.successful) < .spec.parallelism), i.e. when the work left to do is less than max parallelism. More info: https://kubernetes.io/docs/concepts/workloads/controllers/jobs-run-to-completion/",
3605          "format": "int32",
3606          "type": "integer"
3607        },
3608        "selector": {
3609          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector",
3610          "description": "A label query over pods that should match the pod count. Normally, the system sets this field for you. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors"
3611        },
3612        "suspend": {
3613          "description": "Suspend specifies whether the Job controller should create Pods or not. If a Job is created with suspend set to true, no Pods are created by the Job controller. If a Job is suspended after creation (i.e. the flag goes from false to true), the Job controller will delete all active Pods associated with this Job. Users must design their workload to gracefully handle this. Suspending a Job will reset the StartTime field of the Job, effectively resetting the ActiveDeadlineSeconds timer too. Defaults to false.\n\nThis field is beta-level, gated by SuspendJob feature flag (enabled by default).",
3614          "type": "boolean"
3615        },
3616        "template": {
3617          "$ref": "#/definitions/io.k8s.api.core.v1.PodTemplateSpec",
3618          "description": "Describes the pod that will be created when executing a job. More info: https://kubernetes.io/docs/concepts/workloads/controllers/jobs-run-to-completion/"
3619        },
3620        "ttlSecondsAfterFinished": {
3621          "description": "ttlSecondsAfterFinished limits the lifetime of a Job that has finished execution (either Complete or Failed). If this field is set, ttlSecondsAfterFinished after the Job finishes, it is eligible to be automatically deleted. When the Job is being deleted, its lifecycle guarantees (e.g. finalizers) will be honored. If this field is unset, the Job won't be automatically deleted. If this field is set to zero, the Job becomes eligible to be deleted immediately after it finishes. This field is alpha-level and is only honored by servers that enable the TTLAfterFinished feature.",
3622          "format": "int32",
3623          "type": "integer"
3624        }
3625      },
3626      "required": [
3627        "template"
3628      ],
3629      "type": "object"
3630    },
3631    "io.k8s.api.batch.v1.JobStatus": {
3632      "description": "JobStatus represents the current state of a Job.",
3633      "properties": {
3634        "active": {
3635          "description": "The number of actively running pods.",
3636          "format": "int32",
3637          "type": "integer"
3638        },
3639        "completedIndexes": {
3640          "description": "CompletedIndexes holds the completed indexes when .spec.completionMode = \"Indexed\" in a text format. The indexes are represented as decimal integers separated by commas. The numbers are listed in increasing order. Three or more consecutive numbers are compressed and represented by the first and last element of the series, separated by a hyphen. For example, if the completed indexes are 1, 3, 4, 5 and 7, they are represented as \"1,3-5,7\".",
3641          "type": "string"
3642        },
3643        "completionTime": {
3644          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
3645          "description": "Represents time when the job was completed. It is not guaranteed to be set in happens-before order across separate operations. It is represented in RFC3339 form and is in UTC. The completion time is only set when the job finishes successfully."
3646        },
3647        "conditions": {
3648          "description": "The latest available observations of an object's current state. When a Job fails, one of the conditions will have type \"Failed\" and status true. When a Job is suspended, one of the conditions will have type \"Suspended\" and status true; when the Job is resumed, the status of this condition will become false. When a Job is completed, one of the conditions will have type \"Complete\" and status true. More info: https://kubernetes.io/docs/concepts/workloads/controllers/jobs-run-to-completion/",
3649          "items": {
3650            "$ref": "#/definitions/io.k8s.api.batch.v1.JobCondition"
3651          },
3652          "type": "array",
3653          "x-kubernetes-list-type": "atomic",
3654          "x-kubernetes-patch-merge-key": "type",
3655          "x-kubernetes-patch-strategy": "merge"
3656        },
3657        "failed": {
3658          "description": "The number of pods which reached phase Failed.",
3659          "format": "int32",
3660          "type": "integer"
3661        },
3662        "startTime": {
3663          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
3664          "description": "Represents time when the job controller started processing a job. When a Job is created in the suspended state, this field is not set until the first time it is resumed. This field is reset every time a Job is resumed from suspension. It is represented in RFC3339 form and is in UTC."
3665        },
3666        "succeeded": {
3667          "description": "The number of pods which reached phase Succeeded.",
3668          "format": "int32",
3669          "type": "integer"
3670        },
3671        "uncountedTerminatedPods": {
3672          "$ref": "#/definitions/io.k8s.api.batch.v1.UncountedTerminatedPods",
3673          "description": "UncountedTerminatedPods holds the UIDs of Pods that have terminated but the job controller hasn't yet accounted for in the status counters.\n\nThe job controller creates pods with a finalizer. When a pod terminates (succeeded or failed), the controller does three steps to account for it in the job status: (1) Add the pod UID to the arrays in this field. (2) Remove the pod finalizer. (3) Remove the pod UID from the arrays while increasing the corresponding\n    counter.\n\nThis field is alpha-level. The job controller only makes use of this field when the feature gate PodTrackingWithFinalizers is enabled. Old jobs might not be tracked using this field, in which case the field remains null."
3674        }
3675      },
3676      "type": "object"
3677    },
3678    "io.k8s.api.batch.v1.JobTemplateSpec": {
3679      "description": "JobTemplateSpec describes the data a Job should have when created from a template",
3680      "properties": {
3681        "metadata": {
3682          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
3683          "description": "Standard object's metadata of the jobs created from this template. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
3684        },
3685        "spec": {
3686          "$ref": "#/definitions/io.k8s.api.batch.v1.JobSpec",
3687          "description": "Specification of the desired behavior of the job. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status"
3688        }
3689      },
3690      "type": "object"
3691    },
3692    "io.k8s.api.batch.v1.UncountedTerminatedPods": {
3693      "description": "UncountedTerminatedPods holds UIDs of Pods that have terminated but haven't been accounted in Job status counters.",
3694      "properties": {
3695        "failed": {
3696          "description": "Failed holds UIDs of failed Pods.",
3697          "items": {
3698            "type": "string"
3699          },
3700          "type": "array",
3701          "x-kubernetes-list-type": "set"
3702        },
3703        "succeeded": {
3704          "description": "Succeeded holds UIDs of succeeded Pods.",
3705          "items": {
3706            "type": "string"
3707          },
3708          "type": "array",
3709          "x-kubernetes-list-type": "set"
3710        }
3711      },
3712      "type": "object"
3713    },
3714    "io.k8s.api.batch.v1beta1.CronJob": {
3715      "description": "CronJob represents the configuration of a single cron job.",
3716      "properties": {
3717        "apiVersion": {
3718          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
3719          "type": "string"
3720        },
3721        "kind": {
3722          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
3723          "type": "string"
3724        },
3725        "metadata": {
3726          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
3727          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
3728        },
3729        "spec": {
3730          "$ref": "#/definitions/io.k8s.api.batch.v1beta1.CronJobSpec",
3731          "description": "Specification of the desired behavior of a cron job, including the schedule. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status"
3732        },
3733        "status": {
3734          "$ref": "#/definitions/io.k8s.api.batch.v1beta1.CronJobStatus",
3735          "description": "Current status of a cron job. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status"
3736        }
3737      },
3738      "type": "object",
3739      "x-kubernetes-group-version-kind": [
3740        {
3741          "group": "batch",
3742          "kind": "CronJob",
3743          "version": "v1beta1"
3744        }
3745      ]
3746    },
3747    "io.k8s.api.batch.v1beta1.CronJobList": {
3748      "description": "CronJobList is a collection of cron jobs.",
3749      "properties": {
3750        "apiVersion": {
3751          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
3752          "type": "string"
3753        },
3754        "items": {
3755          "description": "items is the list of CronJobs.",
3756          "items": {
3757            "$ref": "#/definitions/io.k8s.api.batch.v1beta1.CronJob"
3758          },
3759          "type": "array"
3760        },
3761        "kind": {
3762          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
3763          "type": "string"
3764        },
3765        "metadata": {
3766          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
3767          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
3768        }
3769      },
3770      "required": [
3771        "items"
3772      ],
3773      "type": "object",
3774      "x-kubernetes-group-version-kind": [
3775        {
3776          "group": "batch",
3777          "kind": "CronJobList",
3778          "version": "v1beta1"
3779        }
3780      ]
3781    },
3782    "io.k8s.api.batch.v1beta1.CronJobSpec": {
3783      "description": "CronJobSpec describes how the job execution will look like and when it will actually run.",
3784      "properties": {
3785        "concurrencyPolicy": {
3786          "description": "Specifies how to treat concurrent executions of a Job. Valid values are: - \"Allow\" (default): allows CronJobs to run concurrently; - \"Forbid\": forbids concurrent runs, skipping next run if previous run hasn't finished yet; - \"Replace\": cancels currently running job and replaces it with a new one",
3787          "type": "string"
3788        },
3789        "failedJobsHistoryLimit": {
3790          "description": "The number of failed finished jobs to retain. This is a pointer to distinguish between explicit zero and not specified. Defaults to 1.",
3791          "format": "int32",
3792          "type": "integer"
3793        },
3794        "jobTemplate": {
3795          "$ref": "#/definitions/io.k8s.api.batch.v1beta1.JobTemplateSpec",
3796          "description": "Specifies the job that will be created when executing a CronJob."
3797        },
3798        "schedule": {
3799          "description": "The schedule in Cron format, see https://en.wikipedia.org/wiki/Cron.",
3800          "type": "string"
3801        },
3802        "startingDeadlineSeconds": {
3803          "description": "Optional deadline in seconds for starting the job if it misses scheduled time for any reason.  Missed jobs executions will be counted as failed ones.",
3804          "format": "int64",
3805          "type": "integer"
3806        },
3807        "successfulJobsHistoryLimit": {
3808          "description": "The number of successful finished jobs to retain. This is a pointer to distinguish between explicit zero and not specified. Defaults to 3.",
3809          "format": "int32",
3810          "type": "integer"
3811        },
3812        "suspend": {
3813          "description": "This flag tells the controller to suspend subsequent executions, it does not apply to already started executions.  Defaults to false.",
3814          "type": "boolean"
3815        }
3816      },
3817      "required": [
3818        "schedule",
3819        "jobTemplate"
3820      ],
3821      "type": "object"
3822    },
3823    "io.k8s.api.batch.v1beta1.CronJobStatus": {
3824      "description": "CronJobStatus represents the current state of a cron job.",
3825      "properties": {
3826        "active": {
3827          "description": "A list of pointers to currently running jobs.",
3828          "items": {
3829            "$ref": "#/definitions/io.k8s.api.core.v1.ObjectReference"
3830          },
3831          "type": "array",
3832          "x-kubernetes-list-type": "atomic"
3833        },
3834        "lastScheduleTime": {
3835          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
3836          "description": "Information when was the last time the job was successfully scheduled."
3837        },
3838        "lastSuccessfulTime": {
3839          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
3840          "description": "Information when was the last time the job successfully completed."
3841        }
3842      },
3843      "type": "object"
3844    },
3845    "io.k8s.api.batch.v1beta1.JobTemplateSpec": {
3846      "description": "JobTemplateSpec describes the data a Job should have when created from a template",
3847      "properties": {
3848        "metadata": {
3849          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
3850          "description": "Standard object's metadata of the jobs created from this template. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
3851        },
3852        "spec": {
3853          "$ref": "#/definitions/io.k8s.api.batch.v1.JobSpec",
3854          "description": "Specification of the desired behavior of the job. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status"
3855        }
3856      },
3857      "type": "object"
3858    },
3859    "io.k8s.api.certificates.v1.CertificateSigningRequest": {
3860      "description": "CertificateSigningRequest objects provide a mechanism to obtain x509 certificates by submitting a certificate signing request, and having it asynchronously approved and issued.\n\nKubelets use this API to obtain:\n 1. client certificates to authenticate to kube-apiserver (with the \"kubernetes.io/kube-apiserver-client-kubelet\" signerName).\n 2. serving certificates for TLS endpoints kube-apiserver can connect to securely (with the \"kubernetes.io/kubelet-serving\" signerName).\n\nThis API can be used to request client certificates to authenticate to kube-apiserver (with the \"kubernetes.io/kube-apiserver-client\" signerName), or to obtain certificates from custom non-Kubernetes signers.",
3861      "properties": {
3862        "apiVersion": {
3863          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
3864          "type": "string"
3865        },
3866        "kind": {
3867          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
3868          "type": "string"
3869        },
3870        "metadata": {
3871          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta"
3872        },
3873        "spec": {
3874          "$ref": "#/definitions/io.k8s.api.certificates.v1.CertificateSigningRequestSpec",
3875          "description": "spec contains the certificate request, and is immutable after creation. Only the request, signerName, expirationSeconds, and usages fields can be set on creation. Other fields are derived by Kubernetes and cannot be modified by users."
3876        },
3877        "status": {
3878          "$ref": "#/definitions/io.k8s.api.certificates.v1.CertificateSigningRequestStatus",
3879          "description": "status contains information about whether the request is approved or denied, and the certificate issued by the signer, or the failure condition indicating signer failure."
3880        }
3881      },
3882      "required": [
3883        "spec"
3884      ],
3885      "type": "object",
3886      "x-kubernetes-group-version-kind": [
3887        {
3888          "group": "certificates.k8s.io",
3889          "kind": "CertificateSigningRequest",
3890          "version": "v1"
3891        }
3892      ]
3893    },
3894    "io.k8s.api.certificates.v1.CertificateSigningRequestCondition": {
3895      "description": "CertificateSigningRequestCondition describes a condition of a CertificateSigningRequest object",
3896      "properties": {
3897        "lastTransitionTime": {
3898          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
3899          "description": "lastTransitionTime is the time the condition last transitioned from one status to another. If unset, when a new condition type is added or an existing condition's status is changed, the server defaults this to the current time."
3900        },
3901        "lastUpdateTime": {
3902          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
3903          "description": "lastUpdateTime is the time of the last update to this condition"
3904        },
3905        "message": {
3906          "description": "message contains a human readable message with details about the request state",
3907          "type": "string"
3908        },
3909        "reason": {
3910          "description": "reason indicates a brief reason for the request state",
3911          "type": "string"
3912        },
3913        "status": {
3914          "description": "status of the condition, one of True, False, Unknown. Approved, Denied, and Failed conditions may not be \"False\" or \"Unknown\".",
3915          "type": "string"
3916        },
3917        "type": {
3918          "description": "type of the condition. Known conditions are \"Approved\", \"Denied\", and \"Failed\".\n\nAn \"Approved\" condition is added via the /approval subresource, indicating the request was approved and should be issued by the signer.\n\nA \"Denied\" condition is added via the /approval subresource, indicating the request was denied and should not be issued by the signer.\n\nA \"Failed\" condition is added via the /status subresource, indicating the signer failed to issue the certificate.\n\nApproved and Denied conditions are mutually exclusive. Approved, Denied, and Failed conditions cannot be removed once added.\n\nOnly one condition of a given type is allowed.",
3919          "type": "string"
3920        }
3921      },
3922      "required": [
3923        "type",
3924        "status"
3925      ],
3926      "type": "object"
3927    },
3928    "io.k8s.api.certificates.v1.CertificateSigningRequestList": {
3929      "description": "CertificateSigningRequestList is a collection of CertificateSigningRequest objects",
3930      "properties": {
3931        "apiVersion": {
3932          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
3933          "type": "string"
3934        },
3935        "items": {
3936          "description": "items is a collection of CertificateSigningRequest objects",
3937          "items": {
3938            "$ref": "#/definitions/io.k8s.api.certificates.v1.CertificateSigningRequest"
3939          },
3940          "type": "array"
3941        },
3942        "kind": {
3943          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
3944          "type": "string"
3945        },
3946        "metadata": {
3947          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta"
3948        }
3949      },
3950      "required": [
3951        "items"
3952      ],
3953      "type": "object",
3954      "x-kubernetes-group-version-kind": [
3955        {
3956          "group": "certificates.k8s.io",
3957          "kind": "CertificateSigningRequestList",
3958          "version": "v1"
3959        }
3960      ]
3961    },
3962    "io.k8s.api.certificates.v1.CertificateSigningRequestSpec": {
3963      "description": "CertificateSigningRequestSpec contains the certificate request.",
3964      "properties": {
3965        "expirationSeconds": {
3966          "description": "expirationSeconds is the requested duration of validity of the issued certificate. The certificate signer may issue a certificate with a different validity duration so a client must check the delta between the notBefore and and notAfter fields in the issued certificate to determine the actual duration.\n\nThe v1.22+ in-tree implementations of the well-known Kubernetes signers will honor this field as long as the requested duration is not greater than the maximum duration they will honor per the --cluster-signing-duration CLI flag to the Kubernetes controller manager.\n\nCertificate signers may not honor this field for various reasons:\n\n  1. Old signer that is unaware of the field (such as the in-tree\n     implementations prior to v1.22)\n  2. Signer whose configured maximum is shorter than the requested duration\n  3. Signer whose configured minimum is longer than the requested duration\n\nThe minimum valid value for expirationSeconds is 600, i.e. 10 minutes.\n\nAs of v1.22, this field is beta and is controlled via the CSRDuration feature gate.",
3967          "format": "int32",
3968          "type": "integer"
3969        },
3970        "extra": {
3971          "additionalProperties": {
3972            "items": {
3973              "type": "string"
3974            },
3975            "type": "array"
3976          },
3977          "description": "extra contains extra attributes of the user that created the CertificateSigningRequest. Populated by the API server on creation and immutable.",
3978          "type": "object"
3979        },
3980        "groups": {
3981          "description": "groups contains group membership of the user that created the CertificateSigningRequest. Populated by the API server on creation and immutable.",
3982          "items": {
3983            "type": "string"
3984          },
3985          "type": "array",
3986          "x-kubernetes-list-type": "atomic"
3987        },
3988        "request": {
3989          "description": "request contains an x509 certificate signing request encoded in a \"CERTIFICATE REQUEST\" PEM block. When serialized as JSON or YAML, the data is additionally base64-encoded.",
3990          "format": "byte",
3991          "type": "string",
3992          "x-kubernetes-list-type": "atomic"
3993        },
3994        "signerName": {
3995          "description": "signerName indicates the requested signer, and is a qualified name.\n\nList/watch requests for CertificateSigningRequests can filter on this field using a \"spec.signerName=NAME\" fieldSelector.\n\nWell-known Kubernetes signers are:\n 1. \"kubernetes.io/kube-apiserver-client\": issues client certificates that can be used to authenticate to kube-apiserver.\n  Requests for this signer are never auto-approved by kube-controller-manager, can be issued by the \"csrsigning\" controller in kube-controller-manager.\n 2. \"kubernetes.io/kube-apiserver-client-kubelet\": issues client certificates that kubelets use to authenticate to kube-apiserver.\n  Requests for this signer can be auto-approved by the \"csrapproving\" controller in kube-controller-manager, and can be issued by the \"csrsigning\" controller in kube-controller-manager.\n 3. \"kubernetes.io/kubelet-serving\" issues serving certificates that kubelets use to serve TLS endpoints, which kube-apiserver can connect to securely.\n  Requests for this signer are never auto-approved by kube-controller-manager, and can be issued by the \"csrsigning\" controller in kube-controller-manager.\n\nMore details are available at https://k8s.io/docs/reference/access-authn-authz/certificate-signing-requests/#kubernetes-signers\n\nCustom signerNames can also be specified. The signer defines:\n 1. Trust distribution: how trust (CA bundles) are distributed.\n 2. Permitted subjects: and behavior when a disallowed subject is requested.\n 3. Required, permitted, or forbidden x509 extensions in the request (including whether subjectAltNames are allowed, which types, restrictions on allowed values) and behavior when a disallowed extension is requested.\n 4. Required, permitted, or forbidden key usages / extended key usages.\n 5. Expiration/certificate lifetime: whether it is fixed by the signer, configurable by the admin.\n 6. Whether or not requests for CA certificates are allowed.",
3996          "type": "string"
3997        },
3998        "uid": {
3999          "description": "uid contains the uid of the user that created the CertificateSigningRequest. Populated by the API server on creation and immutable.",
4000          "type": "string"
4001        },
4002        "usages": {
4003          "description": "usages specifies a set of key usages requested in the issued certificate.\n\nRequests for TLS client certificates typically request: \"digital signature\", \"key encipherment\", \"client auth\".\n\nRequests for TLS serving certificates typically request: \"key encipherment\", \"digital signature\", \"server auth\".\n\nValid values are:\n \"signing\", \"digital signature\", \"content commitment\",\n \"key encipherment\", \"key agreement\", \"data encipherment\",\n \"cert sign\", \"crl sign\", \"encipher only\", \"decipher only\", \"any\",\n \"server auth\", \"client auth\",\n \"code signing\", \"email protection\", \"s/mime\",\n \"ipsec end system\", \"ipsec tunnel\", \"ipsec user\",\n \"timestamping\", \"ocsp signing\", \"microsoft sgc\", \"netscape sgc\"",
4004          "items": {
4005            "type": "string"
4006          },
4007          "type": "array",
4008          "x-kubernetes-list-type": "atomic"
4009        },
4010        "username": {
4011          "description": "username contains the name of the user that created the CertificateSigningRequest. Populated by the API server on creation and immutable.",
4012          "type": "string"
4013        }
4014      },
4015      "required": [
4016        "request",
4017        "signerName"
4018      ],
4019      "type": "object"
4020    },
4021    "io.k8s.api.certificates.v1.CertificateSigningRequestStatus": {
4022      "description": "CertificateSigningRequestStatus contains conditions used to indicate approved/denied/failed status of the request, and the issued certificate.",
4023      "properties": {
4024        "certificate": {
4025          "description": "certificate is populated with an issued certificate by the signer after an Approved condition is present. This field is set via the /status subresource. Once populated, this field is immutable.\n\nIf the certificate signing request is denied, a condition of type \"Denied\" is added and this field remains empty. If the signer cannot issue the certificate, a condition of type \"Failed\" is added and this field remains empty.\n\nValidation requirements:\n 1. certificate must contain one or more PEM blocks.\n 2. All PEM blocks must have the \"CERTIFICATE\" label, contain no headers, and the encoded data\n  must be a BER-encoded ASN.1 Certificate structure as described in section 4 of RFC5280.\n 3. Non-PEM content may appear before or after the \"CERTIFICATE\" PEM blocks and is unvalidated,\n  to allow for explanatory text as described in section 5.2 of RFC7468.\n\nIf more than one PEM block is present, and the definition of the requested spec.signerName does not indicate otherwise, the first block is the issued certificate, and subsequent blocks should be treated as intermediate certificates and presented in TLS handshakes.\n\nThe certificate is encoded in PEM format.\n\nWhen serialized as JSON or YAML, the data is additionally base64-encoded, so it consists of:\n\n    base64(\n    -----BEGIN CERTIFICATE-----\n    ...\n    -----END CERTIFICATE-----\n    )",
4026          "format": "byte",
4027          "type": "string",
4028          "x-kubernetes-list-type": "atomic"
4029        },
4030        "conditions": {
4031          "description": "conditions applied to the request. Known conditions are \"Approved\", \"Denied\", and \"Failed\".",
4032          "items": {
4033            "$ref": "#/definitions/io.k8s.api.certificates.v1.CertificateSigningRequestCondition"
4034          },
4035          "type": "array",
4036          "x-kubernetes-list-map-keys": [
4037            "type"
4038          ],
4039          "x-kubernetes-list-type": "map"
4040        }
4041      },
4042      "type": "object"
4043    },
4044    "io.k8s.api.coordination.v1.Lease": {
4045      "description": "Lease defines a lease concept.",
4046      "properties": {
4047        "apiVersion": {
4048          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
4049          "type": "string"
4050        },
4051        "kind": {
4052          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
4053          "type": "string"
4054        },
4055        "metadata": {
4056          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
4057          "description": "More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
4058        },
4059        "spec": {
4060          "$ref": "#/definitions/io.k8s.api.coordination.v1.LeaseSpec",
4061          "description": "Specification of the Lease. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status"
4062        }
4063      },
4064      "type": "object",
4065      "x-kubernetes-group-version-kind": [
4066        {
4067          "group": "coordination.k8s.io",
4068          "kind": "Lease",
4069          "version": "v1"
4070        }
4071      ]
4072    },
4073    "io.k8s.api.coordination.v1.LeaseList": {
4074      "description": "LeaseList is a list of Lease objects.",
4075      "properties": {
4076        "apiVersion": {
4077          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
4078          "type": "string"
4079        },
4080        "items": {
4081          "description": "Items is a list of schema objects.",
4082          "items": {
4083            "$ref": "#/definitions/io.k8s.api.coordination.v1.Lease"
4084          },
4085          "type": "array"
4086        },
4087        "kind": {
4088          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
4089          "type": "string"
4090        },
4091        "metadata": {
4092          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
4093          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
4094        }
4095      },
4096      "required": [
4097        "items"
4098      ],
4099      "type": "object",
4100      "x-kubernetes-group-version-kind": [
4101        {
4102          "group": "coordination.k8s.io",
4103          "kind": "LeaseList",
4104          "version": "v1"
4105        }
4106      ]
4107    },
4108    "io.k8s.api.coordination.v1.LeaseSpec": {
4109      "description": "LeaseSpec is a specification of a Lease.",
4110      "properties": {
4111        "acquireTime": {
4112          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.MicroTime",
4113          "description": "acquireTime is a time when the current lease was acquired."
4114        },
4115        "holderIdentity": {
4116          "description": "holderIdentity contains the identity of the holder of a current lease.",
4117          "type": "string"
4118        },
4119        "leaseDurationSeconds": {
4120          "description": "leaseDurationSeconds is a duration that candidates for a lease need to wait to force acquire it. This is measure against time of last observed RenewTime.",
4121          "format": "int32",
4122          "type": "integer"
4123        },
4124        "leaseTransitions": {
4125          "description": "leaseTransitions is the number of transitions of a lease between holders.",
4126          "format": "int32",
4127          "type": "integer"
4128        },
4129        "renewTime": {
4130          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.MicroTime",
4131          "description": "renewTime is a time when the current holder of a lease has last updated the lease."
4132        }
4133      },
4134      "type": "object"
4135    },
4136    "io.k8s.api.core.v1.AWSElasticBlockStoreVolumeSource": {
4137      "description": "Represents a Persistent Disk resource in AWS.\n\nAn AWS EBS disk must exist before mounting to a container. The disk must also be in the same AWS zone as the kubelet. An AWS EBS disk can only be mounted as read/write once. AWS EBS volumes support ownership management and SELinux relabeling.",
4138      "properties": {
4139        "fsType": {
4140          "description": "Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore",
4141          "type": "string"
4142        },
4143        "partition": {
4144          "description": "The partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as \"1\". Similarly, the volume partition for /dev/sda is \"0\" (or you can leave the property empty).",
4145          "format": "int32",
4146          "type": "integer"
4147        },
4148        "readOnly": {
4149          "description": "Specify \"true\" to force and set the ReadOnly property in VolumeMounts to \"true\". If omitted, the default is \"false\". More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore",
4150          "type": "boolean"
4151        },
4152        "volumeID": {
4153          "description": "Unique ID of the persistent disk resource in AWS (Amazon EBS volume). More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore",
4154          "type": "string"
4155        }
4156      },
4157      "required": [
4158        "volumeID"
4159      ],
4160      "type": "object"
4161    },
4162    "io.k8s.api.core.v1.Affinity": {
4163      "description": "Affinity is a group of affinity scheduling rules.",
4164      "properties": {
4165        "nodeAffinity": {
4166          "$ref": "#/definitions/io.k8s.api.core.v1.NodeAffinity",
4167          "description": "Describes node affinity scheduling rules for the pod."
4168        },
4169        "podAffinity": {
4170          "$ref": "#/definitions/io.k8s.api.core.v1.PodAffinity",
4171          "description": "Describes pod affinity scheduling rules (e.g. co-locate this pod in the same node, zone, etc. as some other pod(s))."
4172        },
4173        "podAntiAffinity": {
4174          "$ref": "#/definitions/io.k8s.api.core.v1.PodAntiAffinity",
4175          "description": "Describes pod anti-affinity scheduling rules (e.g. avoid putting this pod in the same node, zone, etc. as some other pod(s))."
4176        }
4177      },
4178      "type": "object"
4179    },
4180    "io.k8s.api.core.v1.AttachedVolume": {
4181      "description": "AttachedVolume describes a volume attached to a node",
4182      "properties": {
4183        "devicePath": {
4184          "description": "DevicePath represents the device path where the volume should be available",
4185          "type": "string"
4186        },
4187        "name": {
4188          "description": "Name of the attached volume",
4189          "type": "string"
4190        }
4191      },
4192      "required": [
4193        "name",
4194        "devicePath"
4195      ],
4196      "type": "object"
4197    },
4198    "io.k8s.api.core.v1.AzureDiskVolumeSource": {
4199      "description": "AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.",
4200      "properties": {
4201        "cachingMode": {
4202          "description": "Host Caching mode: None, Read Only, Read Write.",
4203          "type": "string"
4204        },
4205        "diskName": {
4206          "description": "The Name of the data disk in the blob storage",
4207          "type": "string"
4208        },
4209        "diskURI": {
4210          "description": "The URI the data disk in the blob storage",
4211          "type": "string"
4212        },
4213        "fsType": {
4214          "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.",
4215          "type": "string"
4216        },
4217        "kind": {
4218          "description": "Expected values Shared: multiple blob disks per storage account  Dedicated: single blob disk per storage account  Managed: azure managed data disk (only in managed availability set). defaults to shared",
4219          "type": "string"
4220        },
4221        "readOnly": {
4222          "description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
4223          "type": "boolean"
4224        }
4225      },
4226      "required": [
4227        "diskName",
4228        "diskURI"
4229      ],
4230      "type": "object"
4231    },
4232    "io.k8s.api.core.v1.AzureFilePersistentVolumeSource": {
4233      "description": "AzureFile represents an Azure File Service mount on the host and bind mount to the pod.",
4234      "properties": {
4235        "readOnly": {
4236          "description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
4237          "type": "boolean"
4238        },
4239        "secretName": {
4240          "description": "the name of secret that contains Azure Storage Account Name and Key",
4241          "type": "string"
4242        },
4243        "secretNamespace": {
4244          "description": "the namespace of the secret that contains Azure Storage Account Name and Key default is the same as the Pod",
4245          "type": "string"
4246        },
4247        "shareName": {
4248          "description": "Share Name",
4249          "type": "string"
4250        }
4251      },
4252      "required": [
4253        "secretName",
4254        "shareName"
4255      ],
4256      "type": "object"
4257    },
4258    "io.k8s.api.core.v1.AzureFileVolumeSource": {
4259      "description": "AzureFile represents an Azure File Service mount on the host and bind mount to the pod.",
4260      "properties": {
4261        "readOnly": {
4262          "description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
4263          "type": "boolean"
4264        },
4265        "secretName": {
4266          "description": "the name of secret that contains Azure Storage Account Name and Key",
4267          "type": "string"
4268        },
4269        "shareName": {
4270          "description": "Share Name",
4271          "type": "string"
4272        }
4273      },
4274      "required": [
4275        "secretName",
4276        "shareName"
4277      ],
4278      "type": "object"
4279    },
4280    "io.k8s.api.core.v1.Binding": {
4281      "description": "Binding ties one object to another; for example, a pod is bound to a node by a scheduler. Deprecated in 1.7, please use the bindings subresource of pods instead.",
4282      "properties": {
4283        "apiVersion": {
4284          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
4285          "type": "string"
4286        },
4287        "kind": {
4288          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
4289          "type": "string"
4290        },
4291        "metadata": {
4292          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
4293          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
4294        },
4295        "target": {
4296          "$ref": "#/definitions/io.k8s.api.core.v1.ObjectReference",
4297          "description": "The target object that you want to bind to the standard object."
4298        }
4299      },
4300      "required": [
4301        "target"
4302      ],
4303      "type": "object",
4304      "x-kubernetes-group-version-kind": [
4305        {
4306          "group": "",
4307          "kind": "Binding",
4308          "version": "v1"
4309        }
4310      ]
4311    },
4312    "io.k8s.api.core.v1.CSIPersistentVolumeSource": {
4313      "description": "Represents storage that is managed by an external CSI volume driver (Beta feature)",
4314      "properties": {
4315        "controllerExpandSecretRef": {
4316          "$ref": "#/definitions/io.k8s.api.core.v1.SecretReference",
4317          "description": "ControllerExpandSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI ControllerExpandVolume call. This is an alpha field and requires enabling ExpandCSIVolumes feature gate. This field is optional, and may be empty if no secret is required. If the secret object contains more than one secret, all secrets are passed."
4318        },
4319        "controllerPublishSecretRef": {
4320          "$ref": "#/definitions/io.k8s.api.core.v1.SecretReference",
4321          "description": "ControllerPublishSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI ControllerPublishVolume and ControllerUnpublishVolume calls. This field is optional, and may be empty if no secret is required. If the secret object contains more than one secret, all secrets are passed."
4322        },
4323        "driver": {
4324          "description": "Driver is the name of the driver to use for this volume. Required.",
4325          "type": "string"
4326        },
4327        "fsType": {
4328          "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\".",
4329          "type": "string"
4330        },
4331        "nodePublishSecretRef": {
4332          "$ref": "#/definitions/io.k8s.api.core.v1.SecretReference",
4333          "description": "NodePublishSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodePublishVolume and NodeUnpublishVolume calls. This field is optional, and may be empty if no secret is required. If the secret object contains more than one secret, all secrets are passed."
4334        },
4335        "nodeStageSecretRef": {
4336          "$ref": "#/definitions/io.k8s.api.core.v1.SecretReference",
4337          "description": "NodeStageSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodeStageVolume and NodeStageVolume and NodeUnstageVolume calls. This field is optional, and may be empty if no secret is required. If the secret object contains more than one secret, all secrets are passed."
4338        },
4339        "readOnly": {
4340          "description": "Optional: The value to pass to ControllerPublishVolumeRequest. Defaults to false (read/write).",
4341          "type": "boolean"
4342        },
4343        "volumeAttributes": {
4344          "additionalProperties": {
4345            "type": "string"
4346          },
4347          "description": "Attributes of the volume to publish.",
4348          "type": "object"
4349        },
4350        "volumeHandle": {
4351          "description": "VolumeHandle is the unique volume name returned by the CSI volume plugin’s CreateVolume to refer to the volume on all subsequent calls. Required.",
4352          "type": "string"
4353        }
4354      },
4355      "required": [
4356        "driver",
4357        "volumeHandle"
4358      ],
4359      "type": "object"
4360    },
4361    "io.k8s.api.core.v1.CSIVolumeSource": {
4362      "description": "Represents a source location of a volume to mount, managed by an external CSI driver",
4363      "properties": {
4364        "driver": {
4365          "description": "Driver is the name of the CSI driver that handles this volume. Consult with your admin for the correct name as registered in the cluster.",
4366          "type": "string"
4367        },
4368        "fsType": {
4369          "description": "Filesystem type to mount. Ex. \"ext4\", \"xfs\", \"ntfs\". If not provided, the empty value is passed to the associated CSI driver which will determine the default filesystem to apply.",
4370          "type": "string"
4371        },
4372        "nodePublishSecretRef": {
4373          "$ref": "#/definitions/io.k8s.api.core.v1.LocalObjectReference",
4374          "description": "NodePublishSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodePublishVolume and NodeUnpublishVolume calls. This field is optional, and  may be empty if no secret is required. If the secret object contains more than one secret, all secret references are passed."
4375        },
4376        "readOnly": {
4377          "description": "Specifies a read-only configuration for the volume. Defaults to false (read/write).",
4378          "type": "boolean"
4379        },
4380        "volumeAttributes": {
4381          "additionalProperties": {
4382            "type": "string"
4383          },
4384          "description": "VolumeAttributes stores driver-specific properties that are passed to the CSI driver. Consult your driver's documentation for supported values.",
4385          "type": "object"
4386        }
4387      },
4388      "required": [
4389        "driver"
4390      ],
4391      "type": "object"
4392    },
4393    "io.k8s.api.core.v1.Capabilities": {
4394      "description": "Adds and removes POSIX capabilities from running containers.",
4395      "properties": {
4396        "add": {
4397          "description": "Added capabilities",
4398          "items": {
4399            "type": "string"
4400          },
4401          "type": "array"
4402        },
4403        "drop": {
4404          "description": "Removed capabilities",
4405          "items": {
4406            "type": "string"
4407          },
4408          "type": "array"
4409        }
4410      },
4411      "type": "object"
4412    },
4413    "io.k8s.api.core.v1.CephFSPersistentVolumeSource": {
4414      "description": "Represents a Ceph Filesystem mount that lasts the lifetime of a pod Cephfs volumes do not support ownership management or SELinux relabeling.",
4415      "properties": {
4416        "monitors": {
4417          "description": "Required: Monitors is a collection of Ceph monitors More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it",
4418          "items": {
4419            "type": "string"
4420          },
4421          "type": "array"
4422        },
4423        "path": {
4424          "description": "Optional: Used as the mounted root, rather than the full Ceph tree, default is /",
4425          "type": "string"
4426        },
4427        "readOnly": {
4428          "description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it",
4429          "type": "boolean"
4430        },
4431        "secretFile": {
4432          "description": "Optional: SecretFile is the path to key ring for User, default is /etc/ceph/user.secret More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it",
4433          "type": "string"
4434        },
4435        "secretRef": {
4436          "$ref": "#/definitions/io.k8s.api.core.v1.SecretReference",
4437          "description": "Optional: SecretRef is reference to the authentication secret for User, default is empty. More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it"
4438        },
4439        "user": {
4440          "description": "Optional: User is the rados user name, default is admin More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it",
4441          "type": "string"
4442        }
4443      },
4444      "required": [
4445        "monitors"
4446      ],
4447      "type": "object"
4448    },
4449    "io.k8s.api.core.v1.CephFSVolumeSource": {
4450      "description": "Represents a Ceph Filesystem mount that lasts the lifetime of a pod Cephfs volumes do not support ownership management or SELinux relabeling.",
4451      "properties": {
4452        "monitors": {
4453          "description": "Required: Monitors is a collection of Ceph monitors More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it",
4454          "items": {
4455            "type": "string"
4456          },
4457          "type": "array"
4458        },
4459        "path": {
4460          "description": "Optional: Used as the mounted root, rather than the full Ceph tree, default is /",
4461          "type": "string"
4462        },
4463        "readOnly": {
4464          "description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it",
4465          "type": "boolean"
4466        },
4467        "secretFile": {
4468          "description": "Optional: SecretFile is the path to key ring for User, default is /etc/ceph/user.secret More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it",
4469          "type": "string"
4470        },
4471        "secretRef": {
4472          "$ref": "#/definitions/io.k8s.api.core.v1.LocalObjectReference",
4473          "description": "Optional: SecretRef is reference to the authentication secret for User, default is empty. More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it"
4474        },
4475        "user": {
4476          "description": "Optional: User is the rados user name, default is admin More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it",
4477          "type": "string"
4478        }
4479      },
4480      "required": [
4481        "monitors"
4482      ],
4483      "type": "object"
4484    },
4485    "io.k8s.api.core.v1.CinderPersistentVolumeSource": {
4486      "description": "Represents a cinder volume resource in Openstack. A Cinder volume must exist before mounting to a container. The volume must also be in the same region as the kubelet. Cinder volumes support ownership management and SELinux relabeling.",
4487      "properties": {
4488        "fsType": {
4489          "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://examples.k8s.io/mysql-cinder-pd/README.md",
4490          "type": "string"
4491        },
4492        "readOnly": {
4493          "description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://examples.k8s.io/mysql-cinder-pd/README.md",
4494          "type": "boolean"
4495        },
4496        "secretRef": {
4497          "$ref": "#/definitions/io.k8s.api.core.v1.SecretReference",
4498          "description": "Optional: points to a secret object containing parameters used to connect to OpenStack."
4499        },
4500        "volumeID": {
4501          "description": "volume id used to identify the volume in cinder. More info: https://examples.k8s.io/mysql-cinder-pd/README.md",
4502          "type": "string"
4503        }
4504      },
4505      "required": [
4506        "volumeID"
4507      ],
4508      "type": "object"
4509    },
4510    "io.k8s.api.core.v1.CinderVolumeSource": {
4511      "description": "Represents a cinder volume resource in Openstack. A Cinder volume must exist before mounting to a container. The volume must also be in the same region as the kubelet. Cinder volumes support ownership management and SELinux relabeling.",
4512      "properties": {
4513        "fsType": {
4514          "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://examples.k8s.io/mysql-cinder-pd/README.md",
4515          "type": "string"
4516        },
4517        "readOnly": {
4518          "description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://examples.k8s.io/mysql-cinder-pd/README.md",
4519          "type": "boolean"
4520        },
4521        "secretRef": {
4522          "$ref": "#/definitions/io.k8s.api.core.v1.LocalObjectReference",
4523          "description": "Optional: points to a secret object containing parameters used to connect to OpenStack."
4524        },
4525        "volumeID": {
4526          "description": "volume id used to identify the volume in cinder. More info: https://examples.k8s.io/mysql-cinder-pd/README.md",
4527          "type": "string"
4528        }
4529      },
4530      "required": [
4531        "volumeID"
4532      ],
4533      "type": "object"
4534    },
4535    "io.k8s.api.core.v1.ClientIPConfig": {
4536      "description": "ClientIPConfig represents the configurations of Client IP based session affinity.",
4537      "properties": {
4538        "timeoutSeconds": {
4539          "description": "timeoutSeconds specifies the seconds of ClientIP type session sticky time. The value must be >0 && <=86400(for 1 day) if ServiceAffinity == \"ClientIP\". Default value is 10800(for 3 hours).",
4540          "format": "int32",
4541          "type": "integer"
4542        }
4543      },
4544      "type": "object"
4545    },
4546    "io.k8s.api.core.v1.ComponentCondition": {
4547      "description": "Information about the condition of a component.",
4548      "properties": {
4549        "error": {
4550          "description": "Condition error code for a component. For example, a health check error code.",
4551          "type": "string"
4552        },
4553        "message": {
4554          "description": "Message about the condition for a component. For example, information about a health check.",
4555          "type": "string"
4556        },
4557        "status": {
4558          "description": "Status of the condition for a component. Valid values for \"Healthy\": \"True\", \"False\", or \"Unknown\".",
4559          "type": "string"
4560        },
4561        "type": {
4562          "description": "Type of condition for a component. Valid value: \"Healthy\"",
4563          "type": "string"
4564        }
4565      },
4566      "required": [
4567        "type",
4568        "status"
4569      ],
4570      "type": "object"
4571    },
4572    "io.k8s.api.core.v1.ComponentStatus": {
4573      "description": "ComponentStatus (and ComponentStatusList) holds the cluster validation info. Deprecated: This API is deprecated in v1.19+",
4574      "properties": {
4575        "apiVersion": {
4576          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
4577          "type": "string"
4578        },
4579        "conditions": {
4580          "description": "List of component conditions observed",
4581          "items": {
4582            "$ref": "#/definitions/io.k8s.api.core.v1.ComponentCondition"
4583          },
4584          "type": "array",
4585          "x-kubernetes-patch-merge-key": "type",
4586          "x-kubernetes-patch-strategy": "merge"
4587        },
4588        "kind": {
4589          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
4590          "type": "string"
4591        },
4592        "metadata": {
4593          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
4594          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
4595        }
4596      },
4597      "type": "object",
4598      "x-kubernetes-group-version-kind": [
4599        {
4600          "group": "",
4601          "kind": "ComponentStatus",
4602          "version": "v1"
4603        }
4604      ]
4605    },
4606    "io.k8s.api.core.v1.ComponentStatusList": {
4607      "description": "Status of all the conditions for the component as a list of ComponentStatus objects. Deprecated: This API is deprecated in v1.19+",
4608      "properties": {
4609        "apiVersion": {
4610          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
4611          "type": "string"
4612        },
4613        "items": {
4614          "description": "List of ComponentStatus objects.",
4615          "items": {
4616            "$ref": "#/definitions/io.k8s.api.core.v1.ComponentStatus"
4617          },
4618          "type": "array"
4619        },
4620        "kind": {
4621          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
4622          "type": "string"
4623        },
4624        "metadata": {
4625          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
4626          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds"
4627        }
4628      },
4629      "required": [
4630        "items"
4631      ],
4632      "type": "object",
4633      "x-kubernetes-group-version-kind": [
4634        {
4635          "group": "",
4636          "kind": "ComponentStatusList",
4637          "version": "v1"
4638        }
4639      ]
4640    },
4641    "io.k8s.api.core.v1.ConfigMap": {
4642      "description": "ConfigMap holds configuration data for pods to consume.",
4643      "properties": {
4644        "apiVersion": {
4645          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
4646          "type": "string"
4647        },
4648        "binaryData": {
4649          "additionalProperties": {
4650            "format": "byte",
4651            "type": "string"
4652          },
4653          "description": "BinaryData contains the binary data. Each key must consist of alphanumeric characters, '-', '_' or '.'. BinaryData can contain byte sequences that are not in the UTF-8 range. The keys stored in BinaryData must not overlap with the ones in the Data field, this is enforced during validation process. Using this field will require 1.10+ apiserver and kubelet.",
4654          "type": "object"
4655        },
4656        "data": {
4657          "additionalProperties": {
4658            "type": "string"
4659          },
4660          "description": "Data contains the configuration data. Each key must consist of alphanumeric characters, '-', '_' or '.'. Values with non-UTF-8 byte sequences must use the BinaryData field. The keys stored in Data must not overlap with the keys in the BinaryData field, this is enforced during validation process.",
4661          "type": "object"
4662        },
4663        "immutable": {
4664          "description": "Immutable, if set to true, ensures that data stored in the ConfigMap cannot be updated (only object metadata can be modified). If not set to true, the field can be modified at any time. Defaulted to nil.",
4665          "type": "boolean"
4666        },
4667        "kind": {
4668          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
4669          "type": "string"
4670        },
4671        "metadata": {
4672          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
4673          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
4674        }
4675      },
4676      "type": "object",
4677      "x-kubernetes-group-version-kind": [
4678        {
4679          "group": "",
4680          "kind": "ConfigMap",
4681          "version": "v1"
4682        }
4683      ]
4684    },
4685    "io.k8s.api.core.v1.ConfigMapEnvSource": {
4686      "description": "ConfigMapEnvSource selects a ConfigMap to populate the environment variables with.\n\nThe contents of the target ConfigMap's Data field will represent the key-value pairs as environment variables.",
4687      "properties": {
4688        "name": {
4689          "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
4690          "type": "string"
4691        },
4692        "optional": {
4693          "description": "Specify whether the ConfigMap must be defined",
4694          "type": "boolean"
4695        }
4696      },
4697      "type": "object"
4698    },
4699    "io.k8s.api.core.v1.ConfigMapKeySelector": {
4700      "description": "Selects a key from a ConfigMap.",
4701      "properties": {
4702        "key": {
4703          "description": "The key to select.",
4704          "type": "string"
4705        },
4706        "name": {
4707          "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
4708          "type": "string"
4709        },
4710        "optional": {
4711          "description": "Specify whether the ConfigMap or its key must be defined",
4712          "type": "boolean"
4713        }
4714      },
4715      "required": [
4716        "key"
4717      ],
4718      "type": "object",
4719      "x-kubernetes-map-type": "atomic"
4720    },
4721    "io.k8s.api.core.v1.ConfigMapList": {
4722      "description": "ConfigMapList is a resource containing a list of ConfigMap objects.",
4723      "properties": {
4724        "apiVersion": {
4725          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
4726          "type": "string"
4727        },
4728        "items": {
4729          "description": "Items is the list of ConfigMaps.",
4730          "items": {
4731            "$ref": "#/definitions/io.k8s.api.core.v1.ConfigMap"
4732          },
4733          "type": "array"
4734        },
4735        "kind": {
4736          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
4737          "type": "string"
4738        },
4739        "metadata": {
4740          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
4741          "description": "More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
4742        }
4743      },
4744      "required": [
4745        "items"
4746      ],
4747      "type": "object",
4748      "x-kubernetes-group-version-kind": [
4749        {
4750          "group": "",
4751          "kind": "ConfigMapList",
4752          "version": "v1"
4753        }
4754      ]
4755    },
4756    "io.k8s.api.core.v1.ConfigMapNodeConfigSource": {
4757      "description": "ConfigMapNodeConfigSource contains the information to reference a ConfigMap as a config source for the Node. This API is deprecated since 1.22: https://git.k8s.io/enhancements/keps/sig-node/281-dynamic-kubelet-configuration",
4758      "properties": {
4759        "kubeletConfigKey": {
4760          "description": "KubeletConfigKey declares which key of the referenced ConfigMap corresponds to the KubeletConfiguration structure This field is required in all cases.",
4761          "type": "string"
4762        },
4763        "name": {
4764          "description": "Name is the metadata.name of the referenced ConfigMap. This field is required in all cases.",
4765          "type": "string"
4766        },
4767        "namespace": {
4768          "description": "Namespace is the metadata.namespace of the referenced ConfigMap. This field is required in all cases.",
4769          "type": "string"
4770        },
4771        "resourceVersion": {
4772          "description": "ResourceVersion is the metadata.ResourceVersion of the referenced ConfigMap. This field is forbidden in Node.Spec, and required in Node.Status.",
4773          "type": "string"
4774        },
4775        "uid": {
4776          "description": "UID is the metadata.UID of the referenced ConfigMap. This field is forbidden in Node.Spec, and required in Node.Status.",
4777          "type": "string"
4778        }
4779      },
4780      "required": [
4781        "namespace",
4782        "name",
4783        "kubeletConfigKey"
4784      ],
4785      "type": "object"
4786    },
4787    "io.k8s.api.core.v1.ConfigMapProjection": {
4788      "description": "Adapts a ConfigMap into a projected volume.\n\nThe contents of the target ConfigMap's Data field will be presented in a projected volume as files using the keys in the Data field as the file names, unless the items element is populated with specific mappings of keys to paths. Note that this is identical to a configmap volume source without the default mode.",
4789      "properties": {
4790        "items": {
4791          "description": "If unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.",
4792          "items": {
4793            "$ref": "#/definitions/io.k8s.api.core.v1.KeyToPath"
4794          },
4795          "type": "array"
4796        },
4797        "name": {
4798          "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
4799          "type": "string"
4800        },
4801        "optional": {
4802          "description": "Specify whether the ConfigMap or its keys must be defined",
4803          "type": "boolean"
4804        }
4805      },
4806      "type": "object"
4807    },
4808    "io.k8s.api.core.v1.ConfigMapVolumeSource": {
4809      "description": "Adapts a ConfigMap into a volume.\n\nThe contents of the target ConfigMap's Data field will be presented in a volume as files using the keys in the Data field as the file names, unless the items element is populated with specific mappings of keys to paths. ConfigMap volumes support ownership management and SELinux relabeling.",
4810      "properties": {
4811        "defaultMode": {
4812          "description": "Optional: mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.",
4813          "format": "int32",
4814          "type": "integer"
4815        },
4816        "items": {
4817          "description": "If unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.",
4818          "items": {
4819            "$ref": "#/definitions/io.k8s.api.core.v1.KeyToPath"
4820          },
4821          "type": "array"
4822        },
4823        "name": {
4824          "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
4825          "type": "string"
4826        },
4827        "optional": {
4828          "description": "Specify whether the ConfigMap or its keys must be defined",
4829          "type": "boolean"
4830        }
4831      },
4832      "type": "object"
4833    },
4834    "io.k8s.api.core.v1.Container": {
4835      "description": "A single application container that you want to run within a pod.",
4836      "properties": {
4837        "args": {
4838          "description": "Arguments to the entrypoint. The docker image's CMD is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. \"$$(VAR_NAME)\" will produce the string literal \"$(VAR_NAME)\". Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell",
4839          "items": {
4840            "type": "string"
4841          },
4842          "type": "array"
4843        },
4844        "command": {
4845          "description": "Entrypoint array. Not executed within a shell. The docker image's ENTRYPOINT is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. \"$$(VAR_NAME)\" will produce the string literal \"$(VAR_NAME)\". Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell",
4846          "items": {
4847            "type": "string"
4848          },
4849          "type": "array"
4850        },
4851        "env": {
4852          "description": "List of environment variables to set in the container. Cannot be updated.",
4853          "items": {
4854            "$ref": "#/definitions/io.k8s.api.core.v1.EnvVar"
4855          },
4856          "type": "array",
4857          "x-kubernetes-patch-merge-key": "name",
4858          "x-kubernetes-patch-strategy": "merge"
4859        },
4860        "envFrom": {
4861          "description": "List of sources to populate environment variables in the container. The keys defined within a source must be a C_IDENTIFIER. All invalid keys will be reported as an event when the container is starting. When a key exists in multiple sources, the value associated with the last source will take precedence. Values defined by an Env with a duplicate key will take precedence. Cannot be updated.",
4862          "items": {
4863            "$ref": "#/definitions/io.k8s.api.core.v1.EnvFromSource"
4864          },
4865          "type": "array"
4866        },
4867        "image": {
4868          "description": "Docker image name. More info: https://kubernetes.io/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and StatefulSets.",
4869          "type": "string"
4870        },
4871        "imagePullPolicy": {
4872          "description": "Image pull policy. One of Always, Never, IfNotPresent. Defaults to Always if :latest tag is specified, or IfNotPresent otherwise. Cannot be updated. More info: https://kubernetes.io/docs/concepts/containers/images#updating-images",
4873          "type": "string"
4874        },
4875        "lifecycle": {
4876          "$ref": "#/definitions/io.k8s.api.core.v1.Lifecycle",
4877          "description": "Actions that the management system should take in response to container lifecycle events. Cannot be updated."
4878        },
4879        "livenessProbe": {
4880          "$ref": "#/definitions/io.k8s.api.core.v1.Probe",
4881          "description": "Periodic probe of container liveness. Container will be restarted if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes"
4882        },
4883        "name": {
4884          "description": "Name of the container specified as a DNS_LABEL. Each container in a pod must have a unique name (DNS_LABEL). Cannot be updated.",
4885          "type": "string"
4886        },
4887        "ports": {
4888          "description": "List of ports to expose from the container. Exposing a port here gives the system additional information about the network connections a container uses, but is primarily informational. Not specifying a port here DOES NOT prevent that port from being exposed. Any port which is listening on the default \"0.0.0.0\" address inside a container will be accessible from the network. Cannot be updated.",
4889          "items": {
4890            "$ref": "#/definitions/io.k8s.api.core.v1.ContainerPort"
4891          },
4892          "type": "array",
4893          "x-kubernetes-list-map-keys": [
4894            "containerPort",
4895            "protocol"
4896          ],
4897          "x-kubernetes-list-type": "map",
4898          "x-kubernetes-patch-merge-key": "containerPort",
4899          "x-kubernetes-patch-strategy": "merge"
4900        },
4901        "readinessProbe": {
4902          "$ref": "#/definitions/io.k8s.api.core.v1.Probe",
4903          "description": "Periodic probe of container service readiness. Container will be removed from service endpoints if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes"
4904        },
4905        "resources": {
4906          "$ref": "#/definitions/io.k8s.api.core.v1.ResourceRequirements",
4907          "description": "Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/"
4908        },
4909        "securityContext": {
4910          "$ref": "#/definitions/io.k8s.api.core.v1.SecurityContext",
4911          "description": "SecurityContext defines the security options the container should be run with. If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext. More info: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/"
4912        },
4913        "startupProbe": {
4914          "$ref": "#/definitions/io.k8s.api.core.v1.Probe",
4915          "description": "StartupProbe indicates that the Pod has successfully initialized. If specified, no other probes are executed until this completes successfully. If this probe fails, the Pod will be restarted, just as if the livenessProbe failed. This can be used to provide different probe parameters at the beginning of a Pod's lifecycle, when it might take a long time to load data or warm a cache, than during steady-state operation. This cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes"
4916        },
4917        "stdin": {
4918          "description": "Whether this container should allocate a buffer for stdin in the container runtime. If this is not set, reads from stdin in the container will always result in EOF. Default is false.",
4919          "type": "boolean"
4920        },
4921        "stdinOnce": {
4922          "description": "Whether the container runtime should close the stdin channel after it has been opened by a single attach. When stdin is true the stdin stream will remain open across multiple attach sessions. If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted. If this flag is false, a container processes that reads from stdin will never receive an EOF. Default is false",
4923          "type": "boolean"
4924        },
4925        "terminationMessagePath": {
4926          "description": "Optional: Path at which the file to which the container's termination message will be written is mounted into the container's filesystem. Message written is intended to be brief final status, such as an assertion failure message. Will be truncated by the node if greater than 4096 bytes. The total message length across all containers will be limited to 12kb. Defaults to /dev/termination-log. Cannot be updated.",
4927          "type": "string"
4928        },
4929        "terminationMessagePolicy": {
4930          "description": "Indicate how the termination message should be populated. File will use the contents of terminationMessagePath to populate the container status message on both success and failure. FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error. The log output is limited to 2048 bytes or 80 lines, whichever is smaller. Defaults to File. Cannot be updated.",
4931          "type": "string"
4932        },
4933        "tty": {
4934          "description": "Whether this container should allocate a TTY for itself, also requires 'stdin' to be true. Default is false.",
4935          "type": "boolean"
4936        },
4937        "volumeDevices": {
4938          "description": "volumeDevices is the list of block devices to be used by the container.",
4939          "items": {
4940            "$ref": "#/definitions/io.k8s.api.core.v1.VolumeDevice"
4941          },
4942          "type": "array",
4943          "x-kubernetes-patch-merge-key": "devicePath",
4944          "x-kubernetes-patch-strategy": "merge"
4945        },
4946        "volumeMounts": {
4947          "description": "Pod volumes to mount into the container's filesystem. Cannot be updated.",
4948          "items": {
4949            "$ref": "#/definitions/io.k8s.api.core.v1.VolumeMount"
4950          },
4951          "type": "array",
4952          "x-kubernetes-patch-merge-key": "mountPath",
4953          "x-kubernetes-patch-strategy": "merge"
4954        },
4955        "workingDir": {
4956          "description": "Container's working directory. If not specified, the container runtime's default will be used, which might be configured in the container image. Cannot be updated.",
4957          "type": "string"
4958        }
4959      },
4960      "required": [
4961        "name"
4962      ],
4963      "type": "object"
4964    },
4965    "io.k8s.api.core.v1.ContainerImage": {
4966      "description": "Describe a container image",
4967      "properties": {
4968        "names": {
4969          "description": "Names by which this image is known. e.g. [\"k8s.gcr.io/hyperkube:v1.0.7\", \"dockerhub.io/google_containers/hyperkube:v1.0.7\"]",
4970          "items": {
4971            "type": "string"
4972          },
4973          "type": "array"
4974        },
4975        "sizeBytes": {
4976          "description": "The size of the image in bytes.",
4977          "format": "int64",
4978          "type": "integer"
4979        }
4980      },
4981      "type": "object"
4982    },
4983    "io.k8s.api.core.v1.ContainerPort": {
4984      "description": "ContainerPort represents a network port in a single container.",
4985      "properties": {
4986        "containerPort": {
4987          "description": "Number of port to expose on the pod's IP address. This must be a valid port number, 0 < x < 65536.",
4988          "format": "int32",
4989          "type": "integer"
4990        },
4991        "hostIP": {
4992          "description": "What host IP to bind the external port to.",
4993          "type": "string"
4994        },
4995        "hostPort": {
4996          "description": "Number of port to expose on the host. If specified, this must be a valid port number, 0 < x < 65536. If HostNetwork is specified, this must match ContainerPort. Most containers do not need this.",
4997          "format": "int32",
4998          "type": "integer"
4999        },
5000        "name": {
5001          "description": "If specified, this must be an IANA_SVC_NAME and unique within the pod. Each named port in a pod must have a unique name. Name for the port that can be referred to by services.",
5002          "type": "string"
5003        },
5004        "protocol": {
5005          "description": "Protocol for port. Must be UDP, TCP, or SCTP. Defaults to \"TCP\".",
5006          "type": "string"
5007        }
5008      },
5009      "required": [
5010        "containerPort"
5011      ],
5012      "type": "object"
5013    },
5014    "io.k8s.api.core.v1.ContainerState": {
5015      "description": "ContainerState holds a possible state of container. Only one of its members may be specified. If none of them is specified, the default one is ContainerStateWaiting.",
5016      "properties": {
5017        "running": {
5018          "$ref": "#/definitions/io.k8s.api.core.v1.ContainerStateRunning",
5019          "description": "Details about a running container"
5020        },
5021        "terminated": {
5022          "$ref": "#/definitions/io.k8s.api.core.v1.ContainerStateTerminated",
5023          "description": "Details about a terminated container"
5024        },
5025        "waiting": {
5026          "$ref": "#/definitions/io.k8s.api.core.v1.ContainerStateWaiting",
5027          "description": "Details about a waiting container"
5028        }
5029      },
5030      "type": "object"
5031    },
5032    "io.k8s.api.core.v1.ContainerStateRunning": {
5033      "description": "ContainerStateRunning is a running state of a container.",
5034      "properties": {
5035        "startedAt": {
5036          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
5037          "description": "Time at which the container was last (re-)started"
5038        }
5039      },
5040      "type": "object"
5041    },
5042    "io.k8s.api.core.v1.ContainerStateTerminated": {
5043      "description": "ContainerStateTerminated is a terminated state of a container.",
5044      "properties": {
5045        "containerID": {
5046          "description": "Container's ID in the format 'docker://<container_id>'",
5047          "type": "string"
5048        },
5049        "exitCode": {
5050          "description": "Exit status from the last termination of the container",
5051          "format": "int32",
5052          "type": "integer"
5053        },
5054        "finishedAt": {
5055          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
5056          "description": "Time at which the container last terminated"
5057        },
5058        "message": {
5059          "description": "Message regarding the last termination of the container",
5060          "type": "string"
5061        },
5062        "reason": {
5063          "description": "(brief) reason from the last termination of the container",
5064          "type": "string"
5065        },
5066        "signal": {
5067          "description": "Signal from the last termination of the container",
5068          "format": "int32",
5069          "type": "integer"
5070        },
5071        "startedAt": {
5072          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
5073          "description": "Time at which previous execution of the container started"
5074        }
5075      },
5076      "required": [
5077        "exitCode"
5078      ],
5079      "type": "object"
5080    },
5081    "io.k8s.api.core.v1.ContainerStateWaiting": {
5082      "description": "ContainerStateWaiting is a waiting state of a container.",
5083      "properties": {
5084        "message": {
5085          "description": "Message regarding why the container is not yet running.",
5086          "type": "string"
5087        },
5088        "reason": {
5089          "description": "(brief) reason the container is not yet running.",
5090          "type": "string"
5091        }
5092      },
5093      "type": "object"
5094    },
5095    "io.k8s.api.core.v1.ContainerStatus": {
5096      "description": "ContainerStatus contains details for the current status of this container.",
5097      "properties": {
5098        "containerID": {
5099          "description": "Container's ID in the format 'docker://<container_id>'.",
5100          "type": "string"
5101        },
5102        "image": {
5103          "description": "The image the container is running. More info: https://kubernetes.io/docs/concepts/containers/images",
5104          "type": "string"
5105        },
5106        "imageID": {
5107          "description": "ImageID of the container's image.",
5108          "type": "string"
5109        },
5110        "lastState": {
5111          "$ref": "#/definitions/io.k8s.api.core.v1.ContainerState",
5112          "description": "Details about the container's last termination condition."
5113        },
5114        "name": {
5115          "description": "This must be a DNS_LABEL. Each container in a pod must have a unique name. Cannot be updated.",
5116          "type": "string"
5117        },
5118        "ready": {
5119          "description": "Specifies whether the container has passed its readiness probe.",
5120          "type": "boolean"
5121        },
5122        "restartCount": {
5123          "description": "The number of times the container has been restarted, currently based on the number of dead containers that have not yet been removed. Note that this is calculated from dead containers. But those containers are subject to garbage collection. This value will get capped at 5 by GC.",
5124          "format": "int32",
5125          "type": "integer"
5126        },
5127        "started": {
5128          "description": "Specifies whether the container has passed its startup probe. Initialized as false, becomes true after startupProbe is considered successful. Resets to false when the container is restarted, or if kubelet loses state temporarily. Is always true when no startupProbe is defined.",
5129          "type": "boolean"
5130        },
5131        "state": {
5132          "$ref": "#/definitions/io.k8s.api.core.v1.ContainerState",
5133          "description": "Details about the container's current condition."
5134        }
5135      },
5136      "required": [
5137        "name",
5138        "ready",
5139        "restartCount",
5140        "image",
5141        "imageID"
5142      ],
5143      "type": "object"
5144    },
5145    "io.k8s.api.core.v1.DaemonEndpoint": {
5146      "description": "DaemonEndpoint contains information about a single Daemon endpoint.",
5147      "properties": {
5148        "Port": {
5149          "description": "Port number of the given endpoint.",
5150          "format": "int32",
5151          "type": "integer"
5152        }
5153      },
5154      "required": [
5155        "Port"
5156      ],
5157      "type": "object"
5158    },
5159    "io.k8s.api.core.v1.DownwardAPIProjection": {
5160      "description": "Represents downward API info for projecting into a projected volume. Note that this is identical to a downwardAPI volume source without the default mode.",
5161      "properties": {
5162        "items": {
5163          "description": "Items is a list of DownwardAPIVolume file",
5164          "items": {
5165            "$ref": "#/definitions/io.k8s.api.core.v1.DownwardAPIVolumeFile"
5166          },
5167          "type": "array"
5168        }
5169      },
5170      "type": "object"
5171    },
5172    "io.k8s.api.core.v1.DownwardAPIVolumeFile": {
5173      "description": "DownwardAPIVolumeFile represents information to create the file containing the pod field",
5174      "properties": {
5175        "fieldRef": {
5176          "$ref": "#/definitions/io.k8s.api.core.v1.ObjectFieldSelector",
5177          "description": "Required: Selects a field of the pod: only annotations, labels, name and namespace are supported."
5178        },
5179        "mode": {
5180          "description": "Optional: mode bits used to set permissions on this file, must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.",
5181          "format": "int32",
5182          "type": "integer"
5183        },
5184        "path": {
5185          "description": "Required: Path is  the relative path name of the file to be created. Must not be absolute or contain the '..' path. Must be utf-8 encoded. The first item of the relative path must not start with '..'",
5186          "type": "string"
5187        },
5188        "resourceFieldRef": {
5189          "$ref": "#/definitions/io.k8s.api.core.v1.ResourceFieldSelector",
5190          "description": "Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported."
5191        }
5192      },
5193      "required": [
5194        "path"
5195      ],
5196      "type": "object"
5197    },
5198    "io.k8s.api.core.v1.DownwardAPIVolumeSource": {
5199      "description": "DownwardAPIVolumeSource represents a volume containing downward API info. Downward API volumes support ownership management and SELinux relabeling.",
5200      "properties": {
5201        "defaultMode": {
5202          "description": "Optional: mode bits to use on created files by default. Must be a Optional: mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.",
5203          "format": "int32",
5204          "type": "integer"
5205        },
5206        "items": {
5207          "description": "Items is a list of downward API volume file",
5208          "items": {
5209            "$ref": "#/definitions/io.k8s.api.core.v1.DownwardAPIVolumeFile"
5210          },
5211          "type": "array"
5212        }
5213      },
5214      "type": "object"
5215    },
5216    "io.k8s.api.core.v1.EmptyDirVolumeSource": {
5217      "description": "Represents an empty directory for a pod. Empty directory volumes support ownership management and SELinux relabeling.",
5218      "properties": {
5219        "medium": {
5220          "description": "What type of storage medium should back this directory. The default is \"\" which means to use the node's default medium. Must be an empty string (default) or Memory. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir",
5221          "type": "string"
5222        },
5223        "sizeLimit": {
5224          "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity",
5225          "description": "Total amount of local storage required for this EmptyDir volume. The size limit is also applicable for memory medium. The maximum usage on memory medium EmptyDir would be the minimum value between the SizeLimit specified here and the sum of memory limits of all containers in a pod. The default is nil which means that the limit is undefined. More info: http://kubernetes.io/docs/user-guide/volumes#emptydir"
5226        }
5227      },
5228      "type": "object"
5229    },
5230    "io.k8s.api.core.v1.EndpointAddress": {
5231      "description": "EndpointAddress is a tuple that describes single IP address.",
5232      "properties": {
5233        "hostname": {
5234          "description": "The Hostname of this endpoint",
5235          "type": "string"
5236        },
5237        "ip": {
5238          "description": "The IP of this endpoint. May not be loopback (127.0.0.0/8), link-local (169.254.0.0/16), or link-local multicast ((224.0.0.0/24). IPv6 is also accepted but not fully supported on all platforms. Also, certain kubernetes components, like kube-proxy, are not IPv6 ready.",
5239          "type": "string"
5240        },
5241        "nodeName": {
5242          "description": "Optional: Node hosting this endpoint. This can be used to determine endpoints local to a node.",
5243          "type": "string"
5244        },
5245        "targetRef": {
5246          "$ref": "#/definitions/io.k8s.api.core.v1.ObjectReference",
5247          "description": "Reference to object providing the endpoint."
5248        }
5249      },
5250      "required": [
5251        "ip"
5252      ],
5253      "type": "object",
5254      "x-kubernetes-map-type": "atomic"
5255    },
5256    "io.k8s.api.core.v1.EndpointPort": {
5257      "description": "EndpointPort is a tuple that describes a single port.",
5258      "properties": {
5259        "appProtocol": {
5260          "description": "The application protocol for this port. This field follows standard Kubernetes label syntax. Un-prefixed names are reserved for IANA standard service names (as per RFC-6335 and http://www.iana.org/assignments/service-names). Non-standard protocols should use prefixed names such as mycompany.com/my-custom-protocol.",
5261          "type": "string"
5262        },
5263        "name": {
5264          "description": "The name of this port.  This must match the 'name' field in the corresponding ServicePort. Must be a DNS_LABEL. Optional only if one port is defined.",
5265          "type": "string"
5266        },
5267        "port": {
5268          "description": "The port number of the endpoint.",
5269          "format": "int32",
5270          "type": "integer"
5271        },
5272        "protocol": {
5273          "description": "The IP protocol for this port. Must be UDP, TCP, or SCTP. Default is TCP.",
5274          "type": "string"
5275        }
5276      },
5277      "required": [
5278        "port"
5279      ],
5280      "type": "object",
5281      "x-kubernetes-map-type": "atomic"
5282    },
5283    "io.k8s.api.core.v1.EndpointSubset": {
5284      "description": "EndpointSubset is a group of addresses with a common set of ports. The expanded set of endpoints is the Cartesian product of Addresses x Ports. For example, given:\n  {\n    Addresses: [{\"ip\": \"10.10.1.1\"}, {\"ip\": \"10.10.2.2\"}],\n    Ports:     [{\"name\": \"a\", \"port\": 8675}, {\"name\": \"b\", \"port\": 309}]\n  }\nThe resulting set of endpoints can be viewed as:\n    a: [ 10.10.1.1:8675, 10.10.2.2:8675 ],\n    b: [ 10.10.1.1:309, 10.10.2.2:309 ]",
5285      "properties": {
5286        "addresses": {
5287          "description": "IP addresses which offer the related ports that are marked as ready. These endpoints should be considered safe for load balancers and clients to utilize.",
5288          "items": {
5289            "$ref": "#/definitions/io.k8s.api.core.v1.EndpointAddress"
5290          },
5291          "type": "array"
5292        },
5293        "notReadyAddresses": {
5294          "description": "IP addresses which offer the related ports but are not currently marked as ready because they have not yet finished starting, have recently failed a readiness check, or have recently failed a liveness check.",
5295          "items": {
5296            "$ref": "#/definitions/io.k8s.api.core.v1.EndpointAddress"
5297          },
5298          "type": "array"
5299        },
5300        "ports": {
5301          "description": "Port numbers available on the related IP addresses.",
5302          "items": {
5303            "$ref": "#/definitions/io.k8s.api.core.v1.EndpointPort"
5304          },
5305          "type": "array"
5306        }
5307      },
5308      "type": "object"
5309    },
5310    "io.k8s.api.core.v1.Endpoints": {
5311      "description": "Endpoints is a collection of endpoints that implement the actual service. Example:\n  Name: \"mysvc\",\n  Subsets: [\n    {\n      Addresses: [{\"ip\": \"10.10.1.1\"}, {\"ip\": \"10.10.2.2\"}],\n      Ports: [{\"name\": \"a\", \"port\": 8675}, {\"name\": \"b\", \"port\": 309}]\n    },\n    {\n      Addresses: [{\"ip\": \"10.10.3.3\"}],\n      Ports: [{\"name\": \"a\", \"port\": 93}, {\"name\": \"b\", \"port\": 76}]\n    },\n ]",
5312      "properties": {
5313        "apiVersion": {
5314          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
5315          "type": "string"
5316        },
5317        "kind": {
5318          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
5319          "type": "string"
5320        },
5321        "metadata": {
5322          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
5323          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
5324        },
5325        "subsets": {
5326          "description": "The set of all endpoints is the union of all subsets. Addresses are placed into subsets according to the IPs they share. A single address with multiple ports, some of which are ready and some of which are not (because they come from different containers) will result in the address being displayed in different subsets for the different ports. No address will appear in both Addresses and NotReadyAddresses in the same subset. Sets of addresses and ports that comprise a service.",
5327          "items": {
5328            "$ref": "#/definitions/io.k8s.api.core.v1.EndpointSubset"
5329          },
5330          "type": "array"
5331        }
5332      },
5333      "type": "object",
5334      "x-kubernetes-group-version-kind": [
5335        {
5336          "group": "",
5337          "kind": "Endpoints",
5338          "version": "v1"
5339        }
5340      ]
5341    },
5342    "io.k8s.api.core.v1.EndpointsList": {
5343      "description": "EndpointsList is a list of endpoints.",
5344      "properties": {
5345        "apiVersion": {
5346          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
5347          "type": "string"
5348        },
5349        "items": {
5350          "description": "List of endpoints.",
5351          "items": {
5352            "$ref": "#/definitions/io.k8s.api.core.v1.Endpoints"
5353          },
5354          "type": "array"
5355        },
5356        "kind": {
5357          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
5358          "type": "string"
5359        },
5360        "metadata": {
5361          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
5362          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds"
5363        }
5364      },
5365      "required": [
5366        "items"
5367      ],
5368      "type": "object",
5369      "x-kubernetes-group-version-kind": [
5370        {
5371          "group": "",
5372          "kind": "EndpointsList",
5373          "version": "v1"
5374        }
5375      ]
5376    },
5377    "io.k8s.api.core.v1.EnvFromSource": {
5378      "description": "EnvFromSource represents the source of a set of ConfigMaps",
5379      "properties": {
5380        "configMapRef": {
5381          "$ref": "#/definitions/io.k8s.api.core.v1.ConfigMapEnvSource",
5382          "description": "The ConfigMap to select from"
5383        },
5384        "prefix": {
5385          "description": "An optional identifier to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER.",
5386          "type": "string"
5387        },
5388        "secretRef": {
5389          "$ref": "#/definitions/io.k8s.api.core.v1.SecretEnvSource",
5390          "description": "The Secret to select from"
5391        }
5392      },
5393      "type": "object"
5394    },
5395    "io.k8s.api.core.v1.EnvVar": {
5396      "description": "EnvVar represents an environment variable present in a Container.",
5397      "properties": {
5398        "name": {
5399          "description": "Name of the environment variable. Must be a C_IDENTIFIER.",
5400          "type": "string"
5401        },
5402        "value": {
5403          "description": "Variable references $(VAR_NAME) are expanded using the previously defined environment variables in the container and any service environment variables. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. \"$$(VAR_NAME)\" will produce the string literal \"$(VAR_NAME)\". Escaped references will never be expanded, regardless of whether the variable exists or not. Defaults to \"\".",
5404          "type": "string"
5405        },
5406        "valueFrom": {
5407          "$ref": "#/definitions/io.k8s.api.core.v1.EnvVarSource",
5408          "description": "Source for the environment variable's value. Cannot be used if value is not empty."
5409        }
5410      },
5411      "required": [
5412        "name"
5413      ],
5414      "type": "object"
5415    },
5416    "io.k8s.api.core.v1.EnvVarSource": {
5417      "description": "EnvVarSource represents a source for the value of an EnvVar.",
5418      "properties": {
5419        "configMapKeyRef": {
5420          "$ref": "#/definitions/io.k8s.api.core.v1.ConfigMapKeySelector",
5421          "description": "Selects a key of a ConfigMap."
5422        },
5423        "fieldRef": {
5424          "$ref": "#/definitions/io.k8s.api.core.v1.ObjectFieldSelector",
5425          "description": "Selects a field of the pod: supports metadata.name, metadata.namespace, `metadata.labels['<KEY>']`, `metadata.annotations['<KEY>']`, spec.nodeName, spec.serviceAccountName, status.hostIP, status.podIP, status.podIPs."
5426        },
5427        "resourceFieldRef": {
5428          "$ref": "#/definitions/io.k8s.api.core.v1.ResourceFieldSelector",
5429          "description": "Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, limits.ephemeral-storage, requests.cpu, requests.memory and requests.ephemeral-storage) are currently supported."
5430        },
5431        "secretKeyRef": {
5432          "$ref": "#/definitions/io.k8s.api.core.v1.SecretKeySelector",
5433          "description": "Selects a key of a secret in the pod's namespace"
5434        }
5435      },
5436      "type": "object"
5437    },
5438    "io.k8s.api.core.v1.EphemeralContainer": {
5439      "description": "An EphemeralContainer is a container that may be added temporarily to an existing pod for user-initiated activities such as debugging. Ephemeral containers have no resource or scheduling guarantees, and they will not be restarted when they exit or when a pod is removed or restarted. If an ephemeral container causes a pod to exceed its resource allocation, the pod may be evicted. Ephemeral containers may not be added by directly updating the pod spec. They must be added via the pod's ephemeralcontainers subresource, and they will appear in the pod spec once added. This is an alpha feature enabled by the EphemeralContainers feature flag.",
5440      "properties": {
5441        "args": {
5442          "description": "Arguments to the entrypoint. The docker image's CMD is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. \"$$(VAR_NAME)\" will produce the string literal \"$(VAR_NAME)\". Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell",
5443          "items": {
5444            "type": "string"
5445          },
5446          "type": "array"
5447        },
5448        "command": {
5449          "description": "Entrypoint array. Not executed within a shell. The docker image's ENTRYPOINT is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. \"$$(VAR_NAME)\" will produce the string literal \"$(VAR_NAME)\". Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell",
5450          "items": {
5451            "type": "string"
5452          },
5453          "type": "array"
5454        },
5455        "env": {
5456          "description": "List of environment variables to set in the container. Cannot be updated.",
5457          "items": {
5458            "$ref": "#/definitions/io.k8s.api.core.v1.EnvVar"
5459          },
5460          "type": "array",
5461          "x-kubernetes-patch-merge-key": "name",
5462          "x-kubernetes-patch-strategy": "merge"
5463        },
5464        "envFrom": {
5465          "description": "List of sources to populate environment variables in the container. The keys defined within a source must be a C_IDENTIFIER. All invalid keys will be reported as an event when the container is starting. When a key exists in multiple sources, the value associated with the last source will take precedence. Values defined by an Env with a duplicate key will take precedence. Cannot be updated.",
5466          "items": {
5467            "$ref": "#/definitions/io.k8s.api.core.v1.EnvFromSource"
5468          },
5469          "type": "array"
5470        },
5471        "image": {
5472          "description": "Docker image name. More info: https://kubernetes.io/docs/concepts/containers/images",
5473          "type": "string"
5474        },
5475        "imagePullPolicy": {
5476          "description": "Image pull policy. One of Always, Never, IfNotPresent. Defaults to Always if :latest tag is specified, or IfNotPresent otherwise. Cannot be updated. More info: https://kubernetes.io/docs/concepts/containers/images#updating-images",
5477          "type": "string"
5478        },
5479        "lifecycle": {
5480          "$ref": "#/definitions/io.k8s.api.core.v1.Lifecycle",
5481          "description": "Lifecycle is not allowed for ephemeral containers."
5482        },
5483        "livenessProbe": {
5484          "$ref": "#/definitions/io.k8s.api.core.v1.Probe",
5485          "description": "Probes are not allowed for ephemeral containers."
5486        },
5487        "name": {
5488          "description": "Name of the ephemeral container specified as a DNS_LABEL. This name must be unique among all containers, init containers and ephemeral containers.",
5489          "type": "string"
5490        },
5491        "ports": {
5492          "description": "Ports are not allowed for ephemeral containers.",
5493          "items": {
5494            "$ref": "#/definitions/io.k8s.api.core.v1.ContainerPort"
5495          },
5496          "type": "array"
5497        },
5498        "readinessProbe": {
5499          "$ref": "#/definitions/io.k8s.api.core.v1.Probe",
5500          "description": "Probes are not allowed for ephemeral containers."
5501        },
5502        "resources": {
5503          "$ref": "#/definitions/io.k8s.api.core.v1.ResourceRequirements",
5504          "description": "Resources are not allowed for ephemeral containers. Ephemeral containers use spare resources already allocated to the pod."
5505        },
5506        "securityContext": {
5507          "$ref": "#/definitions/io.k8s.api.core.v1.SecurityContext",
5508          "description": "Optional: SecurityContext defines the security options the ephemeral container should be run with. If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext."
5509        },
5510        "startupProbe": {
5511          "$ref": "#/definitions/io.k8s.api.core.v1.Probe",
5512          "description": "Probes are not allowed for ephemeral containers."
5513        },
5514        "stdin": {
5515          "description": "Whether this container should allocate a buffer for stdin in the container runtime. If this is not set, reads from stdin in the container will always result in EOF. Default is false.",
5516          "type": "boolean"
5517        },
5518        "stdinOnce": {
5519          "description": "Whether the container runtime should close the stdin channel after it has been opened by a single attach. When stdin is true the stdin stream will remain open across multiple attach sessions. If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted. If this flag is false, a container processes that reads from stdin will never receive an EOF. Default is false",
5520          "type": "boolean"
5521        },
5522        "targetContainerName": {
5523          "description": "If set, the name of the container from PodSpec that this ephemeral container targets. The ephemeral container will be run in the namespaces (IPC, PID, etc) of this container. If not set then the ephemeral container is run in whatever namespaces are shared for the pod. Note that the container runtime must support this feature.",
5524          "type": "string"
5525        },
5526        "terminationMessagePath": {
5527          "description": "Optional: Path at which the file to which the container's termination message will be written is mounted into the container's filesystem. Message written is intended to be brief final status, such as an assertion failure message. Will be truncated by the node if greater than 4096 bytes. The total message length across all containers will be limited to 12kb. Defaults to /dev/termination-log. Cannot be updated.",
5528          "type": "string"
5529        },
5530        "terminationMessagePolicy": {
5531          "description": "Indicate how the termination message should be populated. File will use the contents of terminationMessagePath to populate the container status message on both success and failure. FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error. The log output is limited to 2048 bytes or 80 lines, whichever is smaller. Defaults to File. Cannot be updated.",
5532          "type": "string"
5533        },
5534        "tty": {
5535          "description": "Whether this container should allocate a TTY for itself, also requires 'stdin' to be true. Default is false.",
5536          "type": "boolean"
5537        },
5538        "volumeDevices": {
5539          "description": "volumeDevices is the list of block devices to be used by the container.",
5540          "items": {
5541            "$ref": "#/definitions/io.k8s.api.core.v1.VolumeDevice"
5542          },
5543          "type": "array",
5544          "x-kubernetes-patch-merge-key": "devicePath",
5545          "x-kubernetes-patch-strategy": "merge"
5546        },
5547        "volumeMounts": {
5548          "description": "Pod volumes to mount into the container's filesystem. Cannot be updated.",
5549          "items": {
5550            "$ref": "#/definitions/io.k8s.api.core.v1.VolumeMount"
5551          },
5552          "type": "array",
5553          "x-kubernetes-patch-merge-key": "mountPath",
5554          "x-kubernetes-patch-strategy": "merge"
5555        },
5556        "workingDir": {
5557          "description": "Container's working directory. If not specified, the container runtime's default will be used, which might be configured in the container image. Cannot be updated.",
5558          "type": "string"
5559        }
5560      },
5561      "required": [
5562        "name"
5563      ],
5564      "type": "object"
5565    },
5566    "io.k8s.api.core.v1.EphemeralVolumeSource": {
5567      "description": "Represents an ephemeral volume that is handled by a normal storage driver.",
5568      "properties": {
5569        "volumeClaimTemplate": {
5570          "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaimTemplate",
5571          "description": "Will be used to create a stand-alone PVC to provision the volume. The pod in which this EphemeralVolumeSource is embedded will be the owner of the PVC, i.e. the PVC will be deleted together with the pod.  The name of the PVC will be `<pod name>-<volume name>` where `<volume name>` is the name from the `PodSpec.Volumes` array entry. Pod validation will reject the pod if the concatenated name is not valid for a PVC (for example, too long).\n\nAn existing PVC with that name that is not owned by the pod will *not* be used for the pod to avoid using an unrelated volume by mistake. Starting the pod is then blocked until the unrelated PVC is removed. If such a pre-created PVC is meant to be used by the pod, the PVC has to updated with an owner reference to the pod once the pod exists. Normally this should not be necessary, but it may be useful when manually reconstructing a broken cluster.\n\nThis field is read-only and no changes will be made by Kubernetes to the PVC after it has been created.\n\nRequired, must not be nil."
5572        }
5573      },
5574      "type": "object"
5575    },
5576    "io.k8s.api.core.v1.Event": {
5577      "description": "Event is a report of an event somewhere in the cluster.  Events have a limited retention time and triggers and messages may evolve with time.  Event consumers should not rely on the timing of an event with a given Reason reflecting a consistent underlying trigger, or the continued existence of events with that Reason.  Events should be treated as informative, best-effort, supplemental data.",
5578      "properties": {
5579        "action": {
5580          "description": "What action was taken/failed regarding to the Regarding object.",
5581          "type": "string"
5582        },
5583        "apiVersion": {
5584          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
5585          "type": "string"
5586        },
5587        "count": {
5588          "description": "The number of times this event has occurred.",
5589          "format": "int32",
5590          "type": "integer"
5591        },
5592        "eventTime": {
5593          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.MicroTime",
5594          "description": "Time when this Event was first observed."
5595        },
5596        "firstTimestamp": {
5597          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
5598          "description": "The time at which the event was first recorded. (Time of server receipt is in TypeMeta.)"
5599        },
5600        "involvedObject": {
5601          "$ref": "#/definitions/io.k8s.api.core.v1.ObjectReference",
5602          "description": "The object that this event is about."
5603        },
5604        "kind": {
5605          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
5606          "type": "string"
5607        },
5608        "lastTimestamp": {
5609          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
5610          "description": "The time at which the most recent occurrence of this event was recorded."
5611        },
5612        "message": {
5613          "description": "A human-readable description of the status of this operation.",
5614          "type": "string"
5615        },
5616        "metadata": {
5617          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
5618          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
5619        },
5620        "reason": {
5621          "description": "This should be a short, machine understandable string that gives the reason for the transition into the object's current status.",
5622          "type": "string"
5623        },
5624        "related": {
5625          "$ref": "#/definitions/io.k8s.api.core.v1.ObjectReference",
5626          "description": "Optional secondary object for more complex actions."
5627        },
5628        "reportingComponent": {
5629          "description": "Name of the controller that emitted this Event, e.g. `kubernetes.io/kubelet`.",
5630          "type": "string"
5631        },
5632        "reportingInstance": {
5633          "description": "ID of the controller instance, e.g. `kubelet-xyzf`.",
5634          "type": "string"
5635        },
5636        "series": {
5637          "$ref": "#/definitions/io.k8s.api.core.v1.EventSeries",
5638          "description": "Data about the Event series this event represents or nil if it's a singleton Event."
5639        },
5640        "source": {
5641          "$ref": "#/definitions/io.k8s.api.core.v1.EventSource",
5642          "description": "The component reporting this event. Should be a short machine understandable string."
5643        },
5644        "type": {
5645          "description": "Type of this event (Normal, Warning), new types could be added in the future",
5646          "type": "string"
5647        }
5648      },
5649      "required": [
5650        "metadata",
5651        "involvedObject"
5652      ],
5653      "type": "object",
5654      "x-kubernetes-group-version-kind": [
5655        {
5656          "group": "",
5657          "kind": "Event",
5658          "version": "v1"
5659        }
5660      ]
5661    },
5662    "io.k8s.api.core.v1.EventList": {
5663      "description": "EventList is a list of events.",
5664      "properties": {
5665        "apiVersion": {
5666          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
5667          "type": "string"
5668        },
5669        "items": {
5670          "description": "List of events",
5671          "items": {
5672            "$ref": "#/definitions/io.k8s.api.core.v1.Event"
5673          },
5674          "type": "array"
5675        },
5676        "kind": {
5677          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
5678          "type": "string"
5679        },
5680        "metadata": {
5681          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
5682          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds"
5683        }
5684      },
5685      "required": [
5686        "items"
5687      ],
5688      "type": "object",
5689      "x-kubernetes-group-version-kind": [
5690        {
5691          "group": "",
5692          "kind": "EventList",
5693          "version": "v1"
5694        }
5695      ]
5696    },
5697    "io.k8s.api.core.v1.EventSeries": {
5698      "description": "EventSeries contain information on series of events, i.e. thing that was/is happening continuously for some time.",
5699      "properties": {
5700        "count": {
5701          "description": "Number of occurrences in this series up to the last heartbeat time",
5702          "format": "int32",
5703          "type": "integer"
5704        },
5705        "lastObservedTime": {
5706          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.MicroTime",
5707          "description": "Time of the last occurrence observed"
5708        }
5709      },
5710      "type": "object"
5711    },
5712    "io.k8s.api.core.v1.EventSource": {
5713      "description": "EventSource contains information for an event.",
5714      "properties": {
5715        "component": {
5716          "description": "Component from which the event is generated.",
5717          "type": "string"
5718        },
5719        "host": {
5720          "description": "Node name on which the event is generated.",
5721          "type": "string"
5722        }
5723      },
5724      "type": "object"
5725    },
5726    "io.k8s.api.core.v1.ExecAction": {
5727      "description": "ExecAction describes a \"run in container\" action.",
5728      "properties": {
5729        "command": {
5730          "description": "Command is the command line to execute inside the container, the working directory for the command  is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.",
5731          "items": {
5732            "type": "string"
5733          },
5734          "type": "array"
5735        }
5736      },
5737      "type": "object"
5738    },
5739    "io.k8s.api.core.v1.FCVolumeSource": {
5740      "description": "Represents a Fibre Channel volume. Fibre Channel volumes can only be mounted as read/write once. Fibre Channel volumes support ownership management and SELinux relabeling.",
5741      "properties": {
5742        "fsType": {
5743          "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.",
5744          "type": "string"
5745        },
5746        "lun": {
5747          "description": "Optional: FC target lun number",
5748          "format": "int32",
5749          "type": "integer"
5750        },
5751        "readOnly": {
5752          "description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
5753          "type": "boolean"
5754        },
5755        "targetWWNs": {
5756          "description": "Optional: FC target worldwide names (WWNs)",
5757          "items": {
5758            "type": "string"
5759          },
5760          "type": "array"
5761        },
5762        "wwids": {
5763          "description": "Optional: FC volume world wide identifiers (wwids) Either wwids or combination of targetWWNs and lun must be set, but not both simultaneously.",
5764          "items": {
5765            "type": "string"
5766          },
5767          "type": "array"
5768        }
5769      },
5770      "type": "object"
5771    },
5772    "io.k8s.api.core.v1.FlexPersistentVolumeSource": {
5773      "description": "FlexPersistentVolumeSource represents a generic persistent volume resource that is provisioned/attached using an exec based plugin.",
5774      "properties": {
5775        "driver": {
5776          "description": "Driver is the name of the driver to use for this volume.",
5777          "type": "string"
5778        },
5779        "fsType": {
5780          "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". The default filesystem depends on FlexVolume script.",
5781          "type": "string"
5782        },
5783        "options": {
5784          "additionalProperties": {
5785            "type": "string"
5786          },
5787          "description": "Optional: Extra command options if any.",
5788          "type": "object"
5789        },
5790        "readOnly": {
5791          "description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
5792          "type": "boolean"
5793        },
5794        "secretRef": {
5795          "$ref": "#/definitions/io.k8s.api.core.v1.SecretReference",
5796          "description": "Optional: SecretRef is reference to the secret object containing sensitive information to pass to the plugin scripts. This may be empty if no secret object is specified. If the secret object contains more than one secret, all secrets are passed to the plugin scripts."
5797        }
5798      },
5799      "required": [
5800        "driver"
5801      ],
5802      "type": "object"
5803    },
5804    "io.k8s.api.core.v1.FlexVolumeSource": {
5805      "description": "FlexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin.",
5806      "properties": {
5807        "driver": {
5808          "description": "Driver is the name of the driver to use for this volume.",
5809          "type": "string"
5810        },
5811        "fsType": {
5812          "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". The default filesystem depends on FlexVolume script.",
5813          "type": "string"
5814        },
5815        "options": {
5816          "additionalProperties": {
5817            "type": "string"
5818          },
5819          "description": "Optional: Extra command options if any.",
5820          "type": "object"
5821        },
5822        "readOnly": {
5823          "description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
5824          "type": "boolean"
5825        },
5826        "secretRef": {
5827          "$ref": "#/definitions/io.k8s.api.core.v1.LocalObjectReference",
5828          "description": "Optional: SecretRef is reference to the secret object containing sensitive information to pass to the plugin scripts. This may be empty if no secret object is specified. If the secret object contains more than one secret, all secrets are passed to the plugin scripts."
5829        }
5830      },
5831      "required": [
5832        "driver"
5833      ],
5834      "type": "object"
5835    },
5836    "io.k8s.api.core.v1.FlockerVolumeSource": {
5837      "description": "Represents a Flocker volume mounted by the Flocker agent. One and only one of datasetName and datasetUUID should be set. Flocker volumes do not support ownership management or SELinux relabeling.",
5838      "properties": {
5839        "datasetName": {
5840          "description": "Name of the dataset stored as metadata -> name on the dataset for Flocker should be considered as deprecated",
5841          "type": "string"
5842        },
5843        "datasetUUID": {
5844          "description": "UUID of the dataset. This is unique identifier of a Flocker dataset",
5845          "type": "string"
5846        }
5847      },
5848      "type": "object"
5849    },
5850    "io.k8s.api.core.v1.GCEPersistentDiskVolumeSource": {
5851      "description": "Represents a Persistent Disk resource in Google Compute Engine.\n\nA GCE PD must exist before mounting to a container. The disk must also be in the same GCE project and zone as the kubelet. A GCE PD can only be mounted as read/write once or read-only many times. GCE PDs support ownership management and SELinux relabeling.",
5852      "properties": {
5853        "fsType": {
5854          "description": "Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk",
5855          "type": "string"
5856        },
5857        "partition": {
5858          "description": "The partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as \"1\". Similarly, the volume partition for /dev/sda is \"0\" (or you can leave the property empty). More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk",
5859          "format": "int32",
5860          "type": "integer"
5861        },
5862        "pdName": {
5863          "description": "Unique name of the PD resource in GCE. Used to identify the disk in GCE. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk",
5864          "type": "string"
5865        },
5866        "readOnly": {
5867          "description": "ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk",
5868          "type": "boolean"
5869        }
5870      },
5871      "required": [
5872        "pdName"
5873      ],
5874      "type": "object"
5875    },
5876    "io.k8s.api.core.v1.GitRepoVolumeSource": {
5877      "description": "Represents a volume that is populated with the contents of a git repository. Git repo volumes do not support ownership management. Git repo volumes support SELinux relabeling.\n\nDEPRECATED: GitRepo is deprecated. To provision a container with a git repo, mount an EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir into the Pod's container.",
5878      "properties": {
5879        "directory": {
5880          "description": "Target directory name. Must not contain or start with '..'.  If '.' is supplied, the volume directory will be the git repository.  Otherwise, if specified, the volume will contain the git repository in the subdirectory with the given name.",
5881          "type": "string"
5882        },
5883        "repository": {
5884          "description": "Repository URL",
5885          "type": "string"
5886        },
5887        "revision": {
5888          "description": "Commit hash for the specified revision.",
5889          "type": "string"
5890        }
5891      },
5892      "required": [
5893        "repository"
5894      ],
5895      "type": "object"
5896    },
5897    "io.k8s.api.core.v1.GlusterfsPersistentVolumeSource": {
5898      "description": "Represents a Glusterfs mount that lasts the lifetime of a pod. Glusterfs volumes do not support ownership management or SELinux relabeling.",
5899      "properties": {
5900        "endpoints": {
5901          "description": "EndpointsName is the endpoint name that details Glusterfs topology. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod",
5902          "type": "string"
5903        },
5904        "endpointsNamespace": {
5905          "description": "EndpointsNamespace is the namespace that contains Glusterfs endpoint. If this field is empty, the EndpointNamespace defaults to the same namespace as the bound PVC. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod",
5906          "type": "string"
5907        },
5908        "path": {
5909          "description": "Path is the Glusterfs volume path. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod",
5910          "type": "string"
5911        },
5912        "readOnly": {
5913          "description": "ReadOnly here will force the Glusterfs volume to be mounted with read-only permissions. Defaults to false. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod",
5914          "type": "boolean"
5915        }
5916      },
5917      "required": [
5918        "endpoints",
5919        "path"
5920      ],
5921      "type": "object"
5922    },
5923    "io.k8s.api.core.v1.GlusterfsVolumeSource": {
5924      "description": "Represents a Glusterfs mount that lasts the lifetime of a pod. Glusterfs volumes do not support ownership management or SELinux relabeling.",
5925      "properties": {
5926        "endpoints": {
5927          "description": "EndpointsName is the endpoint name that details Glusterfs topology. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod",
5928          "type": "string"
5929        },
5930        "path": {
5931          "description": "Path is the Glusterfs volume path. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod",
5932          "type": "string"
5933        },
5934        "readOnly": {
5935          "description": "ReadOnly here will force the Glusterfs volume to be mounted with read-only permissions. Defaults to false. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod",
5936          "type": "boolean"
5937        }
5938      },
5939      "required": [
5940        "endpoints",
5941        "path"
5942      ],
5943      "type": "object"
5944    },
5945    "io.k8s.api.core.v1.HTTPGetAction": {
5946      "description": "HTTPGetAction describes an action based on HTTP Get requests.",
5947      "properties": {
5948        "host": {
5949          "description": "Host name to connect to, defaults to the pod IP. You probably want to set \"Host\" in httpHeaders instead.",
5950          "type": "string"
5951        },
5952        "httpHeaders": {
5953          "description": "Custom headers to set in the request. HTTP allows repeated headers.",
5954          "items": {
5955            "$ref": "#/definitions/io.k8s.api.core.v1.HTTPHeader"
5956          },
5957          "type": "array"
5958        },
5959        "path": {
5960          "description": "Path to access on the HTTP server.",
5961          "type": "string"
5962        },
5963        "port": {
5964          "$ref": "#/definitions/io.k8s.apimachinery.pkg.util.intstr.IntOrString",
5965          "description": "Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME."
5966        },
5967        "scheme": {
5968          "description": "Scheme to use for connecting to the host. Defaults to HTTP.",
5969          "type": "string"
5970        }
5971      },
5972      "required": [
5973        "port"
5974      ],
5975      "type": "object"
5976    },
5977    "io.k8s.api.core.v1.HTTPHeader": {
5978      "description": "HTTPHeader describes a custom header to be used in HTTP probes",
5979      "properties": {
5980        "name": {
5981          "description": "The header field name",
5982          "type": "string"
5983        },
5984        "value": {
5985          "description": "The header field value",
5986          "type": "string"
5987        }
5988      },
5989      "required": [
5990        "name",
5991        "value"
5992      ],
5993      "type": "object"
5994    },
5995    "io.k8s.api.core.v1.Handler": {
5996      "description": "Handler defines a specific action that should be taken",
5997      "properties": {
5998        "exec": {
5999          "$ref": "#/definitions/io.k8s.api.core.v1.ExecAction",
6000          "description": "One and only one of the following should be specified. Exec specifies the action to take."
6001        },
6002        "httpGet": {
6003          "$ref": "#/definitions/io.k8s.api.core.v1.HTTPGetAction",
6004          "description": "HTTPGet specifies the http request to perform."
6005        },
6006        "tcpSocket": {
6007          "$ref": "#/definitions/io.k8s.api.core.v1.TCPSocketAction",
6008          "description": "TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported"
6009        }
6010      },
6011      "type": "object"
6012    },
6013    "io.k8s.api.core.v1.HostAlias": {
6014      "description": "HostAlias holds the mapping between IP and hostnames that will be injected as an entry in the pod's hosts file.",
6015      "properties": {
6016        "hostnames": {
6017          "description": "Hostnames for the above IP address.",
6018          "items": {
6019            "type": "string"
6020          },
6021          "type": "array"
6022        },
6023        "ip": {
6024          "description": "IP address of the host file entry.",
6025          "type": "string"
6026        }
6027      },
6028      "type": "object"
6029    },
6030    "io.k8s.api.core.v1.HostPathVolumeSource": {
6031      "description": "Represents a host path mapped into a pod. Host path volumes do not support ownership management or SELinux relabeling.",
6032      "properties": {
6033        "path": {
6034          "description": "Path of the directory on the host. If the path is a symlink, it will follow the link to the real path. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath",
6035          "type": "string"
6036        },
6037        "type": {
6038          "description": "Type for HostPath Volume Defaults to \"\" More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath",
6039          "type": "string"
6040        }
6041      },
6042      "required": [
6043        "path"
6044      ],
6045      "type": "object"
6046    },
6047    "io.k8s.api.core.v1.ISCSIPersistentVolumeSource": {
6048      "description": "ISCSIPersistentVolumeSource represents an ISCSI disk. ISCSI volumes can only be mounted as read/write once. ISCSI volumes support ownership management and SELinux relabeling.",
6049      "properties": {
6050        "chapAuthDiscovery": {
6051          "description": "whether support iSCSI Discovery CHAP authentication",
6052          "type": "boolean"
6053        },
6054        "chapAuthSession": {
6055          "description": "whether support iSCSI Session CHAP authentication",
6056          "type": "boolean"
6057        },
6058        "fsType": {
6059          "description": "Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#iscsi",
6060          "type": "string"
6061        },
6062        "initiatorName": {
6063          "description": "Custom iSCSI Initiator Name. If initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface <target portal>:<volume name> will be created for the connection.",
6064          "type": "string"
6065        },
6066        "iqn": {
6067          "description": "Target iSCSI Qualified Name.",
6068          "type": "string"
6069        },
6070        "iscsiInterface": {
6071          "description": "iSCSI Interface Name that uses an iSCSI transport. Defaults to 'default' (tcp).",
6072          "type": "string"
6073        },
6074        "lun": {
6075          "description": "iSCSI Target Lun number.",
6076          "format": "int32",
6077          "type": "integer"
6078        },
6079        "portals": {
6080          "description": "iSCSI Target Portal List. The Portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260).",
6081          "items": {
6082            "type": "string"
6083          },
6084          "type": "array"
6085        },
6086        "readOnly": {
6087          "description": "ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false.",
6088          "type": "boolean"
6089        },
6090        "secretRef": {
6091          "$ref": "#/definitions/io.k8s.api.core.v1.SecretReference",
6092          "description": "CHAP Secret for iSCSI target and initiator authentication"
6093        },
6094        "targetPortal": {
6095          "description": "iSCSI Target Portal. The Portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260).",
6096          "type": "string"
6097        }
6098      },
6099      "required": [
6100        "targetPortal",
6101        "iqn",
6102        "lun"
6103      ],
6104      "type": "object"
6105    },
6106    "io.k8s.api.core.v1.ISCSIVolumeSource": {
6107      "description": "Represents an ISCSI disk. ISCSI volumes can only be mounted as read/write once. ISCSI volumes support ownership management and SELinux relabeling.",
6108      "properties": {
6109        "chapAuthDiscovery": {
6110          "description": "whether support iSCSI Discovery CHAP authentication",
6111          "type": "boolean"
6112        },
6113        "chapAuthSession": {
6114          "description": "whether support iSCSI Session CHAP authentication",
6115          "type": "boolean"
6116        },
6117        "fsType": {
6118          "description": "Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#iscsi",
6119          "type": "string"
6120        },
6121        "initiatorName": {
6122          "description": "Custom iSCSI Initiator Name. If initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface <target portal>:<volume name> will be created for the connection.",
6123          "type": "string"
6124        },
6125        "iqn": {
6126          "description": "Target iSCSI Qualified Name.",
6127          "type": "string"
6128        },
6129        "iscsiInterface": {
6130          "description": "iSCSI Interface Name that uses an iSCSI transport. Defaults to 'default' (tcp).",
6131          "type": "string"
6132        },
6133        "lun": {
6134          "description": "iSCSI Target Lun number.",
6135          "format": "int32",
6136          "type": "integer"
6137        },
6138        "portals": {
6139          "description": "iSCSI Target Portal List. The portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260).",
6140          "items": {
6141            "type": "string"
6142          },
6143          "type": "array"
6144        },
6145        "readOnly": {
6146          "description": "ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false.",
6147          "type": "boolean"
6148        },
6149        "secretRef": {
6150          "$ref": "#/definitions/io.k8s.api.core.v1.LocalObjectReference",
6151          "description": "CHAP Secret for iSCSI target and initiator authentication"
6152        },
6153        "targetPortal": {
6154          "description": "iSCSI Target Portal. The Portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260).",
6155          "type": "string"
6156        }
6157      },
6158      "required": [
6159        "targetPortal",
6160        "iqn",
6161        "lun"
6162      ],
6163      "type": "object"
6164    },
6165    "io.k8s.api.core.v1.KeyToPath": {
6166      "description": "Maps a string key to a path within a volume.",
6167      "properties": {
6168        "key": {
6169          "description": "The key to project.",
6170          "type": "string"
6171        },
6172        "mode": {
6173          "description": "Optional: mode bits used to set permissions on this file. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.",
6174          "format": "int32",
6175          "type": "integer"
6176        },
6177        "path": {
6178          "description": "The relative path of the file to map the key to. May not be an absolute path. May not contain the path element '..'. May not start with the string '..'.",
6179          "type": "string"
6180        }
6181      },
6182      "required": [
6183        "key",
6184        "path"
6185      ],
6186      "type": "object"
6187    },
6188    "io.k8s.api.core.v1.Lifecycle": {
6189      "description": "Lifecycle describes actions that the management system should take in response to container lifecycle events. For the PostStart and PreStop lifecycle handlers, management of the container blocks until the action is complete, unless the container process fails, in which case the handler is aborted.",
6190      "properties": {
6191        "postStart": {
6192          "$ref": "#/definitions/io.k8s.api.core.v1.Handler",
6193          "description": "PostStart is called immediately after a container is created. If the handler fails, the container is terminated and restarted according to its restart policy. Other management of the container blocks until the hook completes. More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks"
6194        },
6195        "preStop": {
6196          "$ref": "#/definitions/io.k8s.api.core.v1.Handler",
6197          "description": "PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc. The handler is not called if the container crashes or exits. The reason for termination is passed to the handler. The Pod's termination grace period countdown begins before the PreStop hooked is executed. Regardless of the outcome of the handler, the container will eventually terminate within the Pod's termination grace period. Other management of the container blocks until the hook completes or until the termination grace period is reached. More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks"
6198        }
6199      },
6200      "type": "object"
6201    },
6202    "io.k8s.api.core.v1.LimitRange": {
6203      "description": "LimitRange sets resource usage limits for each kind of resource in a Namespace.",
6204      "properties": {
6205        "apiVersion": {
6206          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
6207          "type": "string"
6208        },
6209        "kind": {
6210          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
6211          "type": "string"
6212        },
6213        "metadata": {
6214          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
6215          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
6216        },
6217        "spec": {
6218          "$ref": "#/definitions/io.k8s.api.core.v1.LimitRangeSpec",
6219          "description": "Spec defines the limits enforced. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status"
6220        }
6221      },
6222      "type": "object",
6223      "x-kubernetes-group-version-kind": [
6224        {
6225          "group": "",
6226          "kind": "LimitRange",
6227          "version": "v1"
6228        }
6229      ]
6230    },
6231    "io.k8s.api.core.v1.LimitRangeItem": {
6232      "description": "LimitRangeItem defines a min/max usage limit for any resource that matches on kind.",
6233      "properties": {
6234        "default": {
6235          "additionalProperties": {
6236            "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity"
6237          },
6238          "description": "Default resource requirement limit value by resource name if resource limit is omitted.",
6239          "type": "object"
6240        },
6241        "defaultRequest": {
6242          "additionalProperties": {
6243            "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity"
6244          },
6245          "description": "DefaultRequest is the default resource requirement request value by resource name if resource request is omitted.",
6246          "type": "object"
6247        },
6248        "max": {
6249          "additionalProperties": {
6250            "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity"
6251          },
6252          "description": "Max usage constraints on this kind by resource name.",
6253          "type": "object"
6254        },
6255        "maxLimitRequestRatio": {
6256          "additionalProperties": {
6257            "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity"
6258          },
6259          "description": "MaxLimitRequestRatio if specified, the named resource must have a request and limit that are both non-zero where limit divided by request is less than or equal to the enumerated value; this represents the max burst for the named resource.",
6260          "type": "object"
6261        },
6262        "min": {
6263          "additionalProperties": {
6264            "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity"
6265          },
6266          "description": "Min usage constraints on this kind by resource name.",
6267          "type": "object"
6268        },
6269        "type": {
6270          "description": "Type of resource that this limit applies to.",
6271          "type": "string"
6272        }
6273      },
6274      "required": [
6275        "type"
6276      ],
6277      "type": "object"
6278    },
6279    "io.k8s.api.core.v1.LimitRangeList": {
6280      "description": "LimitRangeList is a list of LimitRange items.",
6281      "properties": {
6282        "apiVersion": {
6283          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
6284          "type": "string"
6285        },
6286        "items": {
6287          "description": "Items is a list of LimitRange objects. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/",
6288          "items": {
6289            "$ref": "#/definitions/io.k8s.api.core.v1.LimitRange"
6290          },
6291          "type": "array"
6292        },
6293        "kind": {
6294          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
6295          "type": "string"
6296        },
6297        "metadata": {
6298          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
6299          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds"
6300        }
6301      },
6302      "required": [
6303        "items"
6304      ],
6305      "type": "object",
6306      "x-kubernetes-group-version-kind": [
6307        {
6308          "group": "",
6309          "kind": "LimitRangeList",
6310          "version": "v1"
6311        }
6312      ]
6313    },
6314    "io.k8s.api.core.v1.LimitRangeSpec": {
6315      "description": "LimitRangeSpec defines a min/max usage limit for resources that match on kind.",
6316      "properties": {
6317        "limits": {
6318          "description": "Limits is the list of LimitRangeItem objects that are enforced.",
6319          "items": {
6320            "$ref": "#/definitions/io.k8s.api.core.v1.LimitRangeItem"
6321          },
6322          "type": "array"
6323        }
6324      },
6325      "required": [
6326        "limits"
6327      ],
6328      "type": "object"
6329    },
6330    "io.k8s.api.core.v1.LoadBalancerIngress": {
6331      "description": "LoadBalancerIngress represents the status of a load-balancer ingress point: traffic intended for the service should be sent to an ingress point.",
6332      "properties": {
6333        "hostname": {
6334          "description": "Hostname is set for load-balancer ingress points that are DNS based (typically AWS load-balancers)",
6335          "type": "string"
6336        },
6337        "ip": {
6338          "description": "IP is set for load-balancer ingress points that are IP based (typically GCE or OpenStack load-balancers)",
6339          "type": "string"
6340        },
6341        "ports": {
6342          "description": "Ports is a list of records of service ports If used, every port defined in the service should have an entry in it",
6343          "items": {
6344            "$ref": "#/definitions/io.k8s.api.core.v1.PortStatus"
6345          },
6346          "type": "array",
6347          "x-kubernetes-list-type": "atomic"
6348        }
6349      },
6350      "type": "object"
6351    },
6352    "io.k8s.api.core.v1.LoadBalancerStatus": {
6353      "description": "LoadBalancerStatus represents the status of a load-balancer.",
6354      "properties": {
6355        "ingress": {
6356          "description": "Ingress is a list containing ingress points for the load-balancer. Traffic intended for the service should be sent to these ingress points.",
6357          "items": {
6358            "$ref": "#/definitions/io.k8s.api.core.v1.LoadBalancerIngress"
6359          },
6360          "type": "array"
6361        }
6362      },
6363      "type": "object"
6364    },
6365    "io.k8s.api.core.v1.LocalObjectReference": {
6366      "description": "LocalObjectReference contains enough information to let you locate the referenced object inside the same namespace.",
6367      "properties": {
6368        "name": {
6369          "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
6370          "type": "string"
6371        }
6372      },
6373      "type": "object",
6374      "x-kubernetes-map-type": "atomic"
6375    },
6376    "io.k8s.api.core.v1.LocalVolumeSource": {
6377      "description": "Local represents directly-attached storage with node affinity (Beta feature)",
6378      "properties": {
6379        "fsType": {
6380          "description": "Filesystem type to mount. It applies only when the Path is a block device. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". The default value is to auto-select a fileystem if unspecified.",
6381          "type": "string"
6382        },
6383        "path": {
6384          "description": "The full path to the volume on the node. It can be either a directory or block device (disk, partition, ...).",
6385          "type": "string"
6386        }
6387      },
6388      "required": [
6389        "path"
6390      ],
6391      "type": "object"
6392    },
6393    "io.k8s.api.core.v1.NFSVolumeSource": {
6394      "description": "Represents an NFS mount that lasts the lifetime of a pod. NFS volumes do not support ownership management or SELinux relabeling.",
6395      "properties": {
6396        "path": {
6397          "description": "Path that is exported by the NFS server. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs",
6398          "type": "string"
6399        },
6400        "readOnly": {
6401          "description": "ReadOnly here will force the NFS export to be mounted with read-only permissions. Defaults to false. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs",
6402          "type": "boolean"
6403        },
6404        "server": {
6405          "description": "Server is the hostname or IP address of the NFS server. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs",
6406          "type": "string"
6407        }
6408      },
6409      "required": [
6410        "server",
6411        "path"
6412      ],
6413      "type": "object"
6414    },
6415    "io.k8s.api.core.v1.Namespace": {
6416      "description": "Namespace provides a scope for Names. Use of multiple namespaces is optional.",
6417      "properties": {
6418        "apiVersion": {
6419          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
6420          "type": "string"
6421        },
6422        "kind": {
6423          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
6424          "type": "string"
6425        },
6426        "metadata": {
6427          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
6428          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
6429        },
6430        "spec": {
6431          "$ref": "#/definitions/io.k8s.api.core.v1.NamespaceSpec",
6432          "description": "Spec defines the behavior of the Namespace. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status"
6433        },
6434        "status": {
6435          "$ref": "#/definitions/io.k8s.api.core.v1.NamespaceStatus",
6436          "description": "Status describes the current status of a Namespace. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status"
6437        }
6438      },
6439      "type": "object",
6440      "x-kubernetes-group-version-kind": [
6441        {
6442          "group": "",
6443          "kind": "Namespace",
6444          "version": "v1"
6445        }
6446      ]
6447    },
6448    "io.k8s.api.core.v1.NamespaceCondition": {
6449      "description": "NamespaceCondition contains details about state of namespace.",
6450      "properties": {
6451        "lastTransitionTime": {
6452          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time"
6453        },
6454        "message": {
6455          "type": "string"
6456        },
6457        "reason": {
6458          "type": "string"
6459        },
6460        "status": {
6461          "description": "Status of the condition, one of True, False, Unknown.",
6462          "type": "string"
6463        },
6464        "type": {
6465          "description": "Type of namespace controller condition.",
6466          "type": "string"
6467        }
6468      },
6469      "required": [
6470        "type",
6471        "status"
6472      ],
6473      "type": "object"
6474    },
6475    "io.k8s.api.core.v1.NamespaceList": {
6476      "description": "NamespaceList is a list of Namespaces.",
6477      "properties": {
6478        "apiVersion": {
6479          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
6480          "type": "string"
6481        },
6482        "items": {
6483          "description": "Items is the list of Namespace objects in the list. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/",
6484          "items": {
6485            "$ref": "#/definitions/io.k8s.api.core.v1.Namespace"
6486          },
6487          "type": "array"
6488        },
6489        "kind": {
6490          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
6491          "type": "string"
6492        },
6493        "metadata": {
6494          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
6495          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds"
6496        }
6497      },
6498      "required": [
6499        "items"
6500      ],
6501      "type": "object",
6502      "x-kubernetes-group-version-kind": [
6503        {
6504          "group": "",
6505          "kind": "NamespaceList",
6506          "version": "v1"
6507        }
6508      ]
6509    },
6510    "io.k8s.api.core.v1.NamespaceSpec": {
6511      "description": "NamespaceSpec describes the attributes on a Namespace.",
6512      "properties": {
6513        "finalizers": {
6514          "description": "Finalizers is an opaque list of values that must be empty to permanently remove object from storage. More info: https://kubernetes.io/docs/tasks/administer-cluster/namespaces/",
6515          "items": {
6516            "type": "string"
6517          },
6518          "type": "array"
6519        }
6520      },
6521      "type": "object"
6522    },
6523    "io.k8s.api.core.v1.NamespaceStatus": {
6524      "description": "NamespaceStatus is information about the current status of a Namespace.",
6525      "properties": {
6526        "conditions": {
6527          "description": "Represents the latest available observations of a namespace's current state.",
6528          "items": {
6529            "$ref": "#/definitions/io.k8s.api.core.v1.NamespaceCondition"
6530          },
6531          "type": "array",
6532          "x-kubernetes-patch-merge-key": "type",
6533          "x-kubernetes-patch-strategy": "merge"
6534        },
6535        "phase": {
6536          "description": "Phase is the current lifecycle phase of the namespace. More info: https://kubernetes.io/docs/tasks/administer-cluster/namespaces/",
6537          "type": "string"
6538        }
6539      },
6540      "type": "object"
6541    },
6542    "io.k8s.api.core.v1.Node": {
6543      "description": "Node is a worker node in Kubernetes. Each node will have a unique identifier in the cache (i.e. in etcd).",
6544      "properties": {
6545        "apiVersion": {
6546          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
6547          "type": "string"
6548        },
6549        "kind": {
6550          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
6551          "type": "string"
6552        },
6553        "metadata": {
6554          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
6555          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
6556        },
6557        "spec": {
6558          "$ref": "#/definitions/io.k8s.api.core.v1.NodeSpec",
6559          "description": "Spec defines the behavior of a node. https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status"
6560        },
6561        "status": {
6562          "$ref": "#/definitions/io.k8s.api.core.v1.NodeStatus",
6563          "description": "Most recently observed status of the node. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status"
6564        }
6565      },
6566      "type": "object",
6567      "x-kubernetes-group-version-kind": [
6568        {
6569          "group": "",
6570          "kind": "Node",
6571          "version": "v1"
6572        }
6573      ]
6574    },
6575    "io.k8s.api.core.v1.NodeAddress": {
6576      "description": "NodeAddress contains information for the node's address.",
6577      "properties": {
6578        "address": {
6579          "description": "The node address.",
6580          "type": "string"
6581        },
6582        "type": {
6583          "description": "Node address type, one of Hostname, ExternalIP or InternalIP.",
6584          "type": "string"
6585        }
6586      },
6587      "required": [
6588        "type",
6589        "address"
6590      ],
6591      "type": "object"
6592    },
6593    "io.k8s.api.core.v1.NodeAffinity": {
6594      "description": "Node affinity is a group of node affinity scheduling rules.",
6595      "properties": {
6596        "preferredDuringSchedulingIgnoredDuringExecution": {
6597          "description": "The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \"weight\" to the sum if the node matches the corresponding matchExpressions; the node(s) with the highest sum are the most preferred.",
6598          "items": {
6599            "$ref": "#/definitions/io.k8s.api.core.v1.PreferredSchedulingTerm"
6600          },
6601          "type": "array"
6602        },
6603        "requiredDuringSchedulingIgnoredDuringExecution": {
6604          "$ref": "#/definitions/io.k8s.api.core.v1.NodeSelector",
6605          "description": "If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to an update), the system may or may not try to eventually evict the pod from its node."
6606        }
6607      },
6608      "type": "object"
6609    },
6610    "io.k8s.api.core.v1.NodeCondition": {
6611      "description": "NodeCondition contains condition information for a node.",
6612      "properties": {
6613        "lastHeartbeatTime": {
6614          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
6615          "description": "Last time we got an update on a given condition."
6616        },
6617        "lastTransitionTime": {
6618          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
6619          "description": "Last time the condition transit from one status to another."
6620        },
6621        "message": {
6622          "description": "Human readable message indicating details about last transition.",
6623          "type": "string"
6624        },
6625        "reason": {
6626          "description": "(brief) reason for the condition's last transition.",
6627          "type": "string"
6628        },
6629        "status": {
6630          "description": "Status of the condition, one of True, False, Unknown.",
6631          "type": "string"
6632        },
6633        "type": {
6634          "description": "Type of node condition.",
6635          "type": "string"
6636        }
6637      },
6638      "required": [
6639        "type",
6640        "status"
6641      ],
6642      "type": "object"
6643    },
6644    "io.k8s.api.core.v1.NodeConfigSource": {
6645      "description": "NodeConfigSource specifies a source of node configuration. Exactly one subfield (excluding metadata) must be non-nil. This API is deprecated since 1.22",
6646      "properties": {
6647        "configMap": {
6648          "$ref": "#/definitions/io.k8s.api.core.v1.ConfigMapNodeConfigSource",
6649          "description": "ConfigMap is a reference to a Node's ConfigMap"
6650        }
6651      },
6652      "type": "object"
6653    },
6654    "io.k8s.api.core.v1.NodeConfigStatus": {
6655      "description": "NodeConfigStatus describes the status of the config assigned by Node.Spec.ConfigSource.",
6656      "properties": {
6657        "active": {
6658          "$ref": "#/definitions/io.k8s.api.core.v1.NodeConfigSource",
6659          "description": "Active reports the checkpointed config the node is actively using. Active will represent either the current version of the Assigned config, or the current LastKnownGood config, depending on whether attempting to use the Assigned config results in an error."
6660        },
6661        "assigned": {
6662          "$ref": "#/definitions/io.k8s.api.core.v1.NodeConfigSource",
6663          "description": "Assigned reports the checkpointed config the node will try to use. When Node.Spec.ConfigSource is updated, the node checkpoints the associated config payload to local disk, along with a record indicating intended config. The node refers to this record to choose its config checkpoint, and reports this record in Assigned. Assigned only updates in the status after the record has been checkpointed to disk. When the Kubelet is restarted, it tries to make the Assigned config the Active config by loading and validating the checkpointed payload identified by Assigned."
6664        },
6665        "error": {
6666          "description": "Error describes any problems reconciling the Spec.ConfigSource to the Active config. Errors may occur, for example, attempting to checkpoint Spec.ConfigSource to the local Assigned record, attempting to checkpoint the payload associated with Spec.ConfigSource, attempting to load or validate the Assigned config, etc. Errors may occur at different points while syncing config. Earlier errors (e.g. download or checkpointing errors) will not result in a rollback to LastKnownGood, and may resolve across Kubelet retries. Later errors (e.g. loading or validating a checkpointed config) will result in a rollback to LastKnownGood. In the latter case, it is usually possible to resolve the error by fixing the config assigned in Spec.ConfigSource. You can find additional information for debugging by searching the error message in the Kubelet log. Error is a human-readable description of the error state; machines can check whether or not Error is empty, but should not rely on the stability of the Error text across Kubelet versions.",
6667          "type": "string"
6668        },
6669        "lastKnownGood": {
6670          "$ref": "#/definitions/io.k8s.api.core.v1.NodeConfigSource",
6671          "description": "LastKnownGood reports the checkpointed config the node will fall back to when it encounters an error attempting to use the Assigned config. The Assigned config becomes the LastKnownGood config when the node determines that the Assigned config is stable and correct. This is currently implemented as a 10-minute soak period starting when the local record of Assigned config is updated. If the Assigned config is Active at the end of this period, it becomes the LastKnownGood. Note that if Spec.ConfigSource is reset to nil (use local defaults), the LastKnownGood is also immediately reset to nil, because the local default config is always assumed good. You should not make assumptions about the node's method of determining config stability and correctness, as this may change or become configurable in the future."
6672        }
6673      },
6674      "type": "object"
6675    },
6676    "io.k8s.api.core.v1.NodeDaemonEndpoints": {
6677      "description": "NodeDaemonEndpoints lists ports opened by daemons running on the Node.",
6678      "properties": {
6679        "kubeletEndpoint": {
6680          "$ref": "#/definitions/io.k8s.api.core.v1.DaemonEndpoint",
6681          "description": "Endpoint on which Kubelet is listening."
6682        }
6683      },
6684      "type": "object"
6685    },
6686    "io.k8s.api.core.v1.NodeList": {
6687      "description": "NodeList is the whole list of all Nodes which have been registered with master.",
6688      "properties": {
6689        "apiVersion": {
6690          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
6691          "type": "string"
6692        },
6693        "items": {
6694          "description": "List of nodes",
6695          "items": {
6696            "$ref": "#/definitions/io.k8s.api.core.v1.Node"
6697          },
6698          "type": "array"
6699        },
6700        "kind": {
6701          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
6702          "type": "string"
6703        },
6704        "metadata": {
6705          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
6706          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds"
6707        }
6708      },
6709      "required": [
6710        "items"
6711      ],
6712      "type": "object",
6713      "x-kubernetes-group-version-kind": [
6714        {
6715          "group": "",
6716          "kind": "NodeList",
6717          "version": "v1"
6718        }
6719      ]
6720    },
6721    "io.k8s.api.core.v1.NodeSelector": {
6722      "description": "A node selector represents the union of the results of one or more label queries over a set of nodes; that is, it represents the OR of the selectors represented by the node selector terms.",
6723      "properties": {
6724        "nodeSelectorTerms": {
6725          "description": "Required. A list of node selector terms. The terms are ORed.",
6726          "items": {
6727            "$ref": "#/definitions/io.k8s.api.core.v1.NodeSelectorTerm"
6728          },
6729          "type": "array"
6730        }
6731      },
6732      "required": [
6733        "nodeSelectorTerms"
6734      ],
6735      "type": "object",
6736      "x-kubernetes-map-type": "atomic"
6737    },
6738    "io.k8s.api.core.v1.NodeSelectorRequirement": {
6739      "description": "A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values.",
6740      "properties": {
6741        "key": {
6742          "description": "The label key that the selector applies to.",
6743          "type": "string"
6744        },
6745        "operator": {
6746          "description": "Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.",
6747          "type": "string"
6748        },
6749        "values": {
6750          "description": "An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch.",
6751          "items": {
6752            "type": "string"
6753          },
6754          "type": "array"
6755        }
6756      },
6757      "required": [
6758        "key",
6759        "operator"
6760      ],
6761      "type": "object"
6762    },
6763    "io.k8s.api.core.v1.NodeSelectorTerm": {
6764      "description": "A null or empty node selector term matches no objects. The requirements of them are ANDed. The TopologySelectorTerm type implements a subset of the NodeSelectorTerm.",
6765      "properties": {
6766        "matchExpressions": {
6767          "description": "A list of node selector requirements by node's labels.",
6768          "items": {
6769            "$ref": "#/definitions/io.k8s.api.core.v1.NodeSelectorRequirement"
6770          },
6771          "type": "array"
6772        },
6773        "matchFields": {
6774          "description": "A list of node selector requirements by node's fields.",
6775          "items": {
6776            "$ref": "#/definitions/io.k8s.api.core.v1.NodeSelectorRequirement"
6777          },
6778          "type": "array"
6779        }
6780      },
6781      "type": "object",
6782      "x-kubernetes-map-type": "atomic"
6783    },
6784    "io.k8s.api.core.v1.NodeSpec": {
6785      "description": "NodeSpec describes the attributes that a node is created with.",
6786      "properties": {
6787        "configSource": {
6788          "$ref": "#/definitions/io.k8s.api.core.v1.NodeConfigSource",
6789          "description": "Deprecated. If specified, the source of the node's configuration. The DynamicKubeletConfig feature gate must be enabled for the Kubelet to use this field. This field is deprecated as of 1.22: https://git.k8s.io/enhancements/keps/sig-node/281-dynamic-kubelet-configuration"
6790        },
6791        "externalID": {
6792          "description": "Deprecated. Not all kubelets will set this field. Remove field after 1.13. see: https://issues.k8s.io/61966",
6793          "type": "string"
6794        },
6795        "podCIDR": {
6796          "description": "PodCIDR represents the pod IP range assigned to the node.",
6797          "type": "string"
6798        },
6799        "podCIDRs": {
6800          "description": "podCIDRs represents the IP ranges assigned to the node for usage by Pods on that node. If this field is specified, the 0th entry must match the podCIDR field. It may contain at most 1 value for each of IPv4 and IPv6.",
6801          "items": {
6802            "type": "string"
6803          },
6804          "type": "array",
6805          "x-kubernetes-patch-strategy": "merge"
6806        },
6807        "providerID": {
6808          "description": "ID of the node assigned by the cloud provider in the format: <ProviderName>://<ProviderSpecificNodeID>",
6809          "type": "string"
6810        },
6811        "taints": {
6812          "description": "If specified, the node's taints.",
6813          "items": {
6814            "$ref": "#/definitions/io.k8s.api.core.v1.Taint"
6815          },
6816          "type": "array"
6817        },
6818        "unschedulable": {
6819          "description": "Unschedulable controls node schedulability of new pods. By default, node is schedulable. More info: https://kubernetes.io/docs/concepts/nodes/node/#manual-node-administration",
6820          "type": "boolean"
6821        }
6822      },
6823      "type": "object"
6824    },
6825    "io.k8s.api.core.v1.NodeStatus": {
6826      "description": "NodeStatus is information about the current status of a node.",
6827      "properties": {
6828        "addresses": {
6829          "description": "List of addresses reachable to the node. Queried from cloud provider, if available. More info: https://kubernetes.io/docs/concepts/nodes/node/#addresses Note: This field is declared as mergeable, but the merge key is not sufficiently unique, which can cause data corruption when it is merged. Callers should instead use a full-replacement patch. See http://pr.k8s.io/79391 for an example.",
6830          "items": {
6831            "$ref": "#/definitions/io.k8s.api.core.v1.NodeAddress"
6832          },
6833          "type": "array",
6834          "x-kubernetes-patch-merge-key": "type",
6835          "x-kubernetes-patch-strategy": "merge"
6836        },
6837        "allocatable": {
6838          "additionalProperties": {
6839            "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity"
6840          },
6841          "description": "Allocatable represents the resources of a node that are available for scheduling. Defaults to Capacity.",
6842          "type": "object"
6843        },
6844        "capacity": {
6845          "additionalProperties": {
6846            "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity"
6847          },
6848          "description": "Capacity represents the total resources of a node. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#capacity",
6849          "type": "object"
6850        },
6851        "conditions": {
6852          "description": "Conditions is an array of current observed node conditions. More info: https://kubernetes.io/docs/concepts/nodes/node/#condition",
6853          "items": {
6854            "$ref": "#/definitions/io.k8s.api.core.v1.NodeCondition"
6855          },
6856          "type": "array",
6857          "x-kubernetes-patch-merge-key": "type",
6858          "x-kubernetes-patch-strategy": "merge"
6859        },
6860        "config": {
6861          "$ref": "#/definitions/io.k8s.api.core.v1.NodeConfigStatus",
6862          "description": "Status of the config assigned to the node via the dynamic Kubelet config feature."
6863        },
6864        "daemonEndpoints": {
6865          "$ref": "#/definitions/io.k8s.api.core.v1.NodeDaemonEndpoints",
6866          "description": "Endpoints of daemons running on the Node."
6867        },
6868        "images": {
6869          "description": "List of container images on this node",
6870          "items": {
6871            "$ref": "#/definitions/io.k8s.api.core.v1.ContainerImage"
6872          },
6873          "type": "array"
6874        },
6875        "nodeInfo": {
6876          "$ref": "#/definitions/io.k8s.api.core.v1.NodeSystemInfo",
6877          "description": "Set of ids/uuids to uniquely identify the node. More info: https://kubernetes.io/docs/concepts/nodes/node/#info"
6878        },
6879        "phase": {
6880          "description": "NodePhase is the recently observed lifecycle phase of the node. More info: https://kubernetes.io/docs/concepts/nodes/node/#phase The field is never populated, and now is deprecated.",
6881          "type": "string"
6882        },
6883        "volumesAttached": {
6884          "description": "List of volumes that are attached to the node.",
6885          "items": {
6886            "$ref": "#/definitions/io.k8s.api.core.v1.AttachedVolume"
6887          },
6888          "type": "array"
6889        },
6890        "volumesInUse": {
6891          "description": "List of attachable volumes in use (mounted) by the node.",
6892          "items": {
6893            "type": "string"
6894          },
6895          "type": "array"
6896        }
6897      },
6898      "type": "object"
6899    },
6900    "io.k8s.api.core.v1.NodeSystemInfo": {
6901      "description": "NodeSystemInfo is a set of ids/uuids to uniquely identify the node.",
6902      "properties": {
6903        "architecture": {
6904          "description": "The Architecture reported by the node",
6905          "type": "string"
6906        },
6907        "bootID": {
6908          "description": "Boot ID reported by the node.",
6909          "type": "string"
6910        },
6911        "containerRuntimeVersion": {
6912          "description": "ContainerRuntime Version reported by the node through runtime remote API (e.g. docker://1.5.0).",
6913          "type": "string"
6914        },
6915        "kernelVersion": {
6916          "description": "Kernel Version reported by the node from 'uname -r' (e.g. 3.16.0-0.bpo.4-amd64).",
6917          "type": "string"
6918        },
6919        "kubeProxyVersion": {
6920          "description": "KubeProxy Version reported by the node.",
6921          "type": "string"
6922        },
6923        "kubeletVersion": {
6924          "description": "Kubelet Version reported by the node.",
6925          "type": "string"
6926        },
6927        "machineID": {
6928          "description": "MachineID reported by the node. For unique machine identification in the cluster this field is preferred. Learn more from man(5) machine-id: http://man7.org/linux/man-pages/man5/machine-id.5.html",
6929          "type": "string"
6930        },
6931        "operatingSystem": {
6932          "description": "The Operating System reported by the node",
6933          "type": "string"
6934        },
6935        "osImage": {
6936          "description": "OS Image reported by the node from /etc/os-release (e.g. Debian GNU/Linux 7 (wheezy)).",
6937          "type": "string"
6938        },
6939        "systemUUID": {
6940          "description": "SystemUUID reported by the node. For unique machine identification MachineID is preferred. This field is specific to Red Hat hosts https://access.redhat.com/documentation/en-us/red_hat_subscription_management/1/html/rhsm/uuid",
6941          "type": "string"
6942        }
6943      },
6944      "required": [
6945        "machineID",
6946        "systemUUID",
6947        "bootID",
6948        "kernelVersion",
6949        "osImage",
6950        "containerRuntimeVersion",
6951        "kubeletVersion",
6952        "kubeProxyVersion",
6953        "operatingSystem",
6954        "architecture"
6955      ],
6956      "type": "object"
6957    },
6958    "io.k8s.api.core.v1.ObjectFieldSelector": {
6959      "description": "ObjectFieldSelector selects an APIVersioned field of an object.",
6960      "properties": {
6961        "apiVersion": {
6962          "description": "Version of the schema the FieldPath is written in terms of, defaults to \"v1\".",
6963          "type": "string"
6964        },
6965        "fieldPath": {
6966          "description": "Path of the field to select in the specified API version.",
6967          "type": "string"
6968        }
6969      },
6970      "required": [
6971        "fieldPath"
6972      ],
6973      "type": "object",
6974      "x-kubernetes-map-type": "atomic"
6975    },
6976    "io.k8s.api.core.v1.ObjectReference": {
6977      "description": "ObjectReference contains enough information to let you inspect or modify the referred object.",
6978      "properties": {
6979        "apiVersion": {
6980          "description": "API version of the referent.",
6981          "type": "string"
6982        },
6983        "fieldPath": {
6984          "description": "If referring to a piece of an object instead of an entire object, this string should contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2]. For example, if the object reference is to a container within a pod, this would take on a value like: \"spec.containers{name}\" (where \"name\" refers to the name of the container that triggered the event) or if no container name is specified \"spec.containers[2]\" (container with index 2 in this pod). This syntax is chosen only to have some well-defined way of referencing a part of an object.",
6985          "type": "string"
6986        },
6987        "kind": {
6988          "description": "Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
6989          "type": "string"
6990        },
6991        "name": {
6992          "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
6993          "type": "string"
6994        },
6995        "namespace": {
6996          "description": "Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/",
6997          "type": "string"
6998        },
6999        "resourceVersion": {
7000          "description": "Specific resourceVersion to which this reference is made, if any. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency",
7001          "type": "string"
7002        },
7003        "uid": {
7004          "description": "UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids",
7005          "type": "string"
7006        }
7007      },
7008      "type": "object",
7009      "x-kubernetes-map-type": "atomic"
7010    },
7011    "io.k8s.api.core.v1.PersistentVolume": {
7012      "description": "PersistentVolume (PV) is a storage resource provisioned by an administrator. It is analogous to a node. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes",
7013      "properties": {
7014        "apiVersion": {
7015          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
7016          "type": "string"
7017        },
7018        "kind": {
7019          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
7020          "type": "string"
7021        },
7022        "metadata": {
7023          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
7024          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
7025        },
7026        "spec": {
7027          "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeSpec",
7028          "description": "Spec defines a specification of a persistent volume owned by the cluster. Provisioned by an administrator. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistent-volumes"
7029        },
7030        "status": {
7031          "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeStatus",
7032          "description": "Status represents the current information/status for the persistent volume. Populated by the system. Read-only. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistent-volumes"
7033        }
7034      },
7035      "type": "object",
7036      "x-kubernetes-group-version-kind": [
7037        {
7038          "group": "",
7039          "kind": "PersistentVolume",
7040          "version": "v1"
7041        }
7042      ]
7043    },
7044    "io.k8s.api.core.v1.PersistentVolumeClaim": {
7045      "description": "PersistentVolumeClaim is a user's request for and claim to a persistent volume",
7046      "properties": {
7047        "apiVersion": {
7048          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
7049          "type": "string"
7050        },
7051        "kind": {
7052          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
7053          "type": "string"
7054        },
7055        "metadata": {
7056          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
7057          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
7058        },
7059        "spec": {
7060          "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaimSpec",
7061          "description": "Spec defines the desired characteristics of a volume requested by a pod author. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims"
7062        },
7063        "status": {
7064          "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaimStatus",
7065          "description": "Status represents the current information/status of a persistent volume claim. Read-only. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims"
7066        }
7067      },
7068      "type": "object",
7069      "x-kubernetes-group-version-kind": [
7070        {
7071          "group": "",
7072          "kind": "PersistentVolumeClaim",
7073          "version": "v1"
7074        }
7075      ]
7076    },
7077    "io.k8s.api.core.v1.PersistentVolumeClaimCondition": {
7078      "description": "PersistentVolumeClaimCondition contails details about state of pvc",
7079      "properties": {
7080        "lastProbeTime": {
7081          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
7082          "description": "Last time we probed the condition."
7083        },
7084        "lastTransitionTime": {
7085          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
7086          "description": "Last time the condition transitioned from one status to another."
7087        },
7088        "message": {
7089          "description": "Human-readable message indicating details about last transition.",
7090          "type": "string"
7091        },
7092        "reason": {
7093          "description": "Unique, this should be a short, machine understandable string that gives the reason for condition's last transition. If it reports \"ResizeStarted\" that means the underlying persistent volume is being resized.",
7094          "type": "string"
7095        },
7096        "status": {
7097          "type": "string"
7098        },
7099        "type": {
7100          "type": "string"
7101        }
7102      },
7103      "required": [
7104        "type",
7105        "status"
7106      ],
7107      "type": "object"
7108    },
7109    "io.k8s.api.core.v1.PersistentVolumeClaimList": {
7110      "description": "PersistentVolumeClaimList is a list of PersistentVolumeClaim items.",
7111      "properties": {
7112        "apiVersion": {
7113          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
7114          "type": "string"
7115        },
7116        "items": {
7117          "description": "A list of persistent volume claims. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims",
7118          "items": {
7119            "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaim"
7120          },
7121          "type": "array"
7122        },
7123        "kind": {
7124          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
7125          "type": "string"
7126        },
7127        "metadata": {
7128          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
7129          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds"
7130        }
7131      },
7132      "required": [
7133        "items"
7134      ],
7135      "type": "object",
7136      "x-kubernetes-group-version-kind": [
7137        {
7138          "group": "",
7139          "kind": "PersistentVolumeClaimList",
7140          "version": "v1"
7141        }
7142      ]
7143    },
7144    "io.k8s.api.core.v1.PersistentVolumeClaimSpec": {
7145      "description": "PersistentVolumeClaimSpec describes the common attributes of storage devices and allows a Source for provider-specific attributes",
7146      "properties": {
7147        "accessModes": {
7148          "description": "AccessModes contains the desired access modes the volume should have. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1",
7149          "items": {
7150            "type": "string"
7151          },
7152          "type": "array"
7153        },
7154        "dataSource": {
7155          "$ref": "#/definitions/io.k8s.api.core.v1.TypedLocalObjectReference",
7156          "description": "This field can be used to specify either: * An existing VolumeSnapshot object (snapshot.storage.k8s.io/VolumeSnapshot) * An existing PVC (PersistentVolumeClaim) If the provisioner or an external controller can support the specified data source, it will create a new volume based on the contents of the specified data source. If the AnyVolumeDataSource feature gate is enabled, this field will always have the same contents as the DataSourceRef field."
7157        },
7158        "dataSourceRef": {
7159          "$ref": "#/definitions/io.k8s.api.core.v1.TypedLocalObjectReference",
7160          "description": "Specifies the object from which to populate the volume with data, if a non-empty volume is desired. This may be any local object from a non-empty API group (non core object) or a PersistentVolumeClaim object. When this field is specified, volume binding will only succeed if the type of the specified object matches some installed volume populator or dynamic provisioner. This field will replace the functionality of the DataSource field and as such if both fields are non-empty, they must have the same value. For backwards compatibility, both fields (DataSource and DataSourceRef) will be set to the same value automatically if one of them is empty and the other is non-empty. There are two important differences between DataSource and DataSourceRef: * While DataSource only allows two specific types of objects, DataSourceRef\n  allows any non-core object, as well as PersistentVolumeClaim objects.\n* While DataSource ignores disallowed values (dropping them), DataSourceRef\n  preserves all values, and generates an error if a disallowed value is\n  specified.\n(Alpha) Using this field requires the AnyVolumeDataSource feature gate to be enabled."
7161        },
7162        "resources": {
7163          "$ref": "#/definitions/io.k8s.api.core.v1.ResourceRequirements",
7164          "description": "Resources represents the minimum resources the volume should have. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources"
7165        },
7166        "selector": {
7167          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector",
7168          "description": "A label query over volumes to consider for binding."
7169        },
7170        "storageClassName": {
7171          "description": "Name of the StorageClass required by the claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#class-1",
7172          "type": "string"
7173        },
7174        "volumeMode": {
7175          "description": "volumeMode defines what type of volume is required by the claim. Value of Filesystem is implied when not included in claim spec.",
7176          "type": "string"
7177        },
7178        "volumeName": {
7179          "description": "VolumeName is the binding reference to the PersistentVolume backing this claim.",
7180          "type": "string"
7181        }
7182      },
7183      "type": "object"
7184    },
7185    "io.k8s.api.core.v1.PersistentVolumeClaimStatus": {
7186      "description": "PersistentVolumeClaimStatus is the current status of a persistent volume claim.",
7187      "properties": {
7188        "accessModes": {
7189          "description": "AccessModes contains the actual access modes the volume backing the PVC has. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1",
7190          "items": {
7191            "type": "string"
7192          },
7193          "type": "array"
7194        },
7195        "capacity": {
7196          "additionalProperties": {
7197            "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity"
7198          },
7199          "description": "Represents the actual resources of the underlying volume.",
7200          "type": "object"
7201        },
7202        "conditions": {
7203          "description": "Current Condition of persistent volume claim. If underlying persistent volume is being resized then the Condition will be set to 'ResizeStarted'.",
7204          "items": {
7205            "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaimCondition"
7206          },
7207          "type": "array",
7208          "x-kubernetes-patch-merge-key": "type",
7209          "x-kubernetes-patch-strategy": "merge"
7210        },
7211        "phase": {
7212          "description": "Phase represents the current phase of PersistentVolumeClaim.",
7213          "type": "string"
7214        }
7215      },
7216      "type": "object"
7217    },
7218    "io.k8s.api.core.v1.PersistentVolumeClaimTemplate": {
7219      "description": "PersistentVolumeClaimTemplate is used to produce PersistentVolumeClaim objects as part of an EphemeralVolumeSource.",
7220      "properties": {
7221        "metadata": {
7222          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
7223          "description": "May contain labels and annotations that will be copied into the PVC when creating it. No other fields are allowed and will be rejected during validation."
7224        },
7225        "spec": {
7226          "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaimSpec",
7227          "description": "The specification for the PersistentVolumeClaim. The entire content is copied unchanged into the PVC that gets created from this template. The same fields as in a PersistentVolumeClaim are also valid here."
7228        }
7229      },
7230      "required": [
7231        "spec"
7232      ],
7233      "type": "object"
7234    },
7235    "io.k8s.api.core.v1.PersistentVolumeClaimVolumeSource": {
7236      "description": "PersistentVolumeClaimVolumeSource references the user's PVC in the same namespace. This volume finds the bound PV and mounts that volume for the pod. A PersistentVolumeClaimVolumeSource is, essentially, a wrapper around another type of volume that is owned by someone else (the system).",
7237      "properties": {
7238        "claimName": {
7239          "description": "ClaimName is the name of a PersistentVolumeClaim in the same namespace as the pod using this volume. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims",
7240          "type": "string"
7241        },
7242        "readOnly": {
7243          "description": "Will force the ReadOnly setting in VolumeMounts. Default false.",
7244          "type": "boolean"
7245        }
7246      },
7247      "required": [
7248        "claimName"
7249      ],
7250      "type": "object"
7251    },
7252    "io.k8s.api.core.v1.PersistentVolumeList": {
7253      "description": "PersistentVolumeList is a list of PersistentVolume items.",
7254      "properties": {
7255        "apiVersion": {
7256          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
7257          "type": "string"
7258        },
7259        "items": {
7260          "description": "List of persistent volumes. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes",
7261          "items": {
7262            "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolume"
7263          },
7264          "type": "array"
7265        },
7266        "kind": {
7267          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
7268          "type": "string"
7269        },
7270        "metadata": {
7271          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
7272          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds"
7273        }
7274      },
7275      "required": [
7276        "items"
7277      ],
7278      "type": "object",
7279      "x-kubernetes-group-version-kind": [
7280        {
7281          "group": "",
7282          "kind": "PersistentVolumeList",
7283          "version": "v1"
7284        }
7285      ]
7286    },
7287    "io.k8s.api.core.v1.PersistentVolumeSpec": {
7288      "description": "PersistentVolumeSpec is the specification of a persistent volume.",
7289      "properties": {
7290        "accessModes": {
7291          "description": "AccessModes contains all ways the volume can be mounted. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes",
7292          "items": {
7293            "type": "string"
7294          },
7295          "type": "array"
7296        },
7297        "awsElasticBlockStore": {
7298          "$ref": "#/definitions/io.k8s.api.core.v1.AWSElasticBlockStoreVolumeSource",
7299          "description": "AWSElasticBlockStore represents an AWS Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore"
7300        },
7301        "azureDisk": {
7302          "$ref": "#/definitions/io.k8s.api.core.v1.AzureDiskVolumeSource",
7303          "description": "AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod."
7304        },
7305        "azureFile": {
7306          "$ref": "#/definitions/io.k8s.api.core.v1.AzureFilePersistentVolumeSource",
7307          "description": "AzureFile represents an Azure File Service mount on the host and bind mount to the pod."
7308        },
7309        "capacity": {
7310          "additionalProperties": {
7311            "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity"
7312          },
7313          "description": "A description of the persistent volume's resources and capacity. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#capacity",
7314          "type": "object"
7315        },
7316        "cephfs": {
7317          "$ref": "#/definitions/io.k8s.api.core.v1.CephFSPersistentVolumeSource",
7318          "description": "CephFS represents a Ceph FS mount on the host that shares a pod's lifetime"
7319        },
7320        "cinder": {
7321          "$ref": "#/definitions/io.k8s.api.core.v1.CinderPersistentVolumeSource",
7322          "description": "Cinder represents a cinder volume attached and mounted on kubelets host machine. More info: https://examples.k8s.io/mysql-cinder-pd/README.md"
7323        },
7324        "claimRef": {
7325          "$ref": "#/definitions/io.k8s.api.core.v1.ObjectReference",
7326          "description": "ClaimRef is part of a bi-directional binding between PersistentVolume and PersistentVolumeClaim. Expected to be non-nil when bound. claim.VolumeName is the authoritative bind between PV and PVC. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#binding"
7327        },
7328        "csi": {
7329          "$ref": "#/definitions/io.k8s.api.core.v1.CSIPersistentVolumeSource",
7330          "description": "CSI represents storage that is handled by an external CSI driver (Beta feature)."
7331        },
7332        "fc": {
7333          "$ref": "#/definitions/io.k8s.api.core.v1.FCVolumeSource",
7334          "description": "FC represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod."
7335        },
7336        "flexVolume": {
7337          "$ref": "#/definitions/io.k8s.api.core.v1.FlexPersistentVolumeSource",
7338          "description": "FlexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin."
7339        },
7340        "flocker": {
7341          "$ref": "#/definitions/io.k8s.api.core.v1.FlockerVolumeSource",
7342          "description": "Flocker represents a Flocker volume attached to a kubelet's host machine and exposed to the pod for its usage. This depends on the Flocker control service being running"
7343        },
7344        "gcePersistentDisk": {
7345          "$ref": "#/definitions/io.k8s.api.core.v1.GCEPersistentDiskVolumeSource",
7346          "description": "GCEPersistentDisk represents a GCE Disk resource that is attached to a kubelet's host machine and then exposed to the pod. Provisioned by an admin. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk"
7347        },
7348        "glusterfs": {
7349          "$ref": "#/definitions/io.k8s.api.core.v1.GlusterfsPersistentVolumeSource",
7350          "description": "Glusterfs represents a Glusterfs volume that is attached to a host and exposed to the pod. Provisioned by an admin. More info: https://examples.k8s.io/volumes/glusterfs/README.md"
7351        },
7352        "hostPath": {
7353          "$ref": "#/definitions/io.k8s.api.core.v1.HostPathVolumeSource",
7354          "description": "HostPath represents a directory on the host. Provisioned by a developer or tester. This is useful for single-node development and testing only! On-host storage is not supported in any way and WILL NOT WORK in a multi-node cluster. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath"
7355        },
7356        "iscsi": {
7357          "$ref": "#/definitions/io.k8s.api.core.v1.ISCSIPersistentVolumeSource",
7358          "description": "ISCSI represents an ISCSI Disk resource that is attached to a kubelet's host machine and then exposed to the pod. Provisioned by an admin."
7359        },
7360        "local": {
7361          "$ref": "#/definitions/io.k8s.api.core.v1.LocalVolumeSource",
7362          "description": "Local represents directly-attached storage with node affinity"
7363        },
7364        "mountOptions": {
7365          "description": "A list of mount options, e.g. [\"ro\", \"soft\"]. Not validated - mount will simply fail if one is invalid. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes/#mount-options",
7366          "items": {
7367            "type": "string"
7368          },
7369          "type": "array"
7370        },
7371        "nfs": {
7372          "$ref": "#/definitions/io.k8s.api.core.v1.NFSVolumeSource",
7373          "description": "NFS represents an NFS mount on the host. Provisioned by an admin. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs"
7374        },
7375        "nodeAffinity": {
7376          "$ref": "#/definitions/io.k8s.api.core.v1.VolumeNodeAffinity",
7377          "description": "NodeAffinity defines constraints that limit what nodes this volume can be accessed from. This field influences the scheduling of pods that use this volume."
7378        },
7379        "persistentVolumeReclaimPolicy": {
7380          "description": "What happens to a persistent volume when released from its claim. Valid options are Retain (default for manually created PersistentVolumes), Delete (default for dynamically provisioned PersistentVolumes), and Recycle (deprecated). Recycle must be supported by the volume plugin underlying this PersistentVolume. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#reclaiming",
7381          "type": "string"
7382        },
7383        "photonPersistentDisk": {
7384          "$ref": "#/definitions/io.k8s.api.core.v1.PhotonPersistentDiskVolumeSource",
7385          "description": "PhotonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine"
7386        },
7387        "portworxVolume": {
7388          "$ref": "#/definitions/io.k8s.api.core.v1.PortworxVolumeSource",
7389          "description": "PortworxVolume represents a portworx volume attached and mounted on kubelets host machine"
7390        },
7391        "quobyte": {
7392          "$ref": "#/definitions/io.k8s.api.core.v1.QuobyteVolumeSource",
7393          "description": "Quobyte represents a Quobyte mount on the host that shares a pod's lifetime"
7394        },
7395        "rbd": {
7396          "$ref": "#/definitions/io.k8s.api.core.v1.RBDPersistentVolumeSource",
7397          "description": "RBD represents a Rados Block Device mount on the host that shares a pod's lifetime. More info: https://examples.k8s.io/volumes/rbd/README.md"
7398        },
7399        "scaleIO": {
7400          "$ref": "#/definitions/io.k8s.api.core.v1.ScaleIOPersistentVolumeSource",
7401          "description": "ScaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes."
7402        },
7403        "storageClassName": {
7404          "description": "Name of StorageClass to which this persistent volume belongs. Empty value means that this volume does not belong to any StorageClass.",
7405          "type": "string"
7406        },
7407        "storageos": {
7408          "$ref": "#/definitions/io.k8s.api.core.v1.StorageOSPersistentVolumeSource",
7409          "description": "StorageOS represents a StorageOS volume that is attached to the kubelet's host machine and mounted into the pod More info: https://examples.k8s.io/volumes/storageos/README.md"
7410        },
7411        "volumeMode": {
7412          "description": "volumeMode defines if a volume is intended to be used with a formatted filesystem or to remain in raw block state. Value of Filesystem is implied when not included in spec.",
7413          "type": "string"
7414        },
7415        "vsphereVolume": {
7416          "$ref": "#/definitions/io.k8s.api.core.v1.VsphereVirtualDiskVolumeSource",
7417          "description": "VsphereVolume represents a vSphere volume attached and mounted on kubelets host machine"
7418        }
7419      },
7420      "type": "object"
7421    },
7422    "io.k8s.api.core.v1.PersistentVolumeStatus": {
7423      "description": "PersistentVolumeStatus is the current status of a persistent volume.",
7424      "properties": {
7425        "message": {
7426          "description": "A human-readable message indicating details about why the volume is in this state.",
7427          "type": "string"
7428        },
7429        "phase": {
7430          "description": "Phase indicates if a volume is available, bound to a claim, or released by a claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#phase",
7431          "type": "string"
7432        },
7433        "reason": {
7434          "description": "Reason is a brief CamelCase string that describes any failure and is meant for machine parsing and tidy display in the CLI.",
7435          "type": "string"
7436        }
7437      },
7438      "type": "object"
7439    },
7440    "io.k8s.api.core.v1.PhotonPersistentDiskVolumeSource": {
7441      "description": "Represents a Photon Controller persistent disk resource.",
7442      "properties": {
7443        "fsType": {
7444          "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.",
7445          "type": "string"
7446        },
7447        "pdID": {
7448          "description": "ID that identifies Photon Controller persistent disk",
7449          "type": "string"
7450        }
7451      },
7452      "required": [
7453        "pdID"
7454      ],
7455      "type": "object"
7456    },
7457    "io.k8s.api.core.v1.Pod": {
7458      "description": "Pod is a collection of containers that can run on a host. This resource is created by clients and scheduled onto hosts.",
7459      "properties": {
7460        "apiVersion": {
7461          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
7462          "type": "string"
7463        },
7464        "kind": {
7465          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
7466          "type": "string"
7467        },
7468        "metadata": {
7469          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
7470          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
7471        },
7472        "spec": {
7473          "$ref": "#/definitions/io.k8s.api.core.v1.PodSpec",
7474          "description": "Specification of the desired behavior of the pod. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status"
7475        },
7476        "status": {
7477          "$ref": "#/definitions/io.k8s.api.core.v1.PodStatus",
7478          "description": "Most recently observed status of the pod. This data may not be up to date. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status"
7479        }
7480      },
7481      "type": "object",
7482      "x-kubernetes-group-version-kind": [
7483        {
7484          "group": "",
7485          "kind": "Pod",
7486          "version": "v1"
7487        }
7488      ]
7489    },
7490    "io.k8s.api.core.v1.PodAffinity": {
7491      "description": "Pod affinity is a group of inter pod affinity scheduling rules.",
7492      "properties": {
7493        "preferredDuringSchedulingIgnoredDuringExecution": {
7494          "description": "The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \"weight\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred.",
7495          "items": {
7496            "$ref": "#/definitions/io.k8s.api.core.v1.WeightedPodAffinityTerm"
7497          },
7498          "type": "array"
7499        },
7500        "requiredDuringSchedulingIgnoredDuringExecution": {
7501          "description": "If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied.",
7502          "items": {
7503            "$ref": "#/definitions/io.k8s.api.core.v1.PodAffinityTerm"
7504          },
7505          "type": "array"
7506        }
7507      },
7508      "type": "object"
7509    },
7510    "io.k8s.api.core.v1.PodAffinityTerm": {
7511      "description": "Defines a set of pods (namely those matching the labelSelector relative to the given namespace(s)) that this pod should be co-located (affinity) or not co-located (anti-affinity) with, where co-located is defined as running on a node whose value of the label with key <topologyKey> matches that of any node on which a pod of the set of pods is running",
7512      "properties": {
7513        "labelSelector": {
7514          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector",
7515          "description": "A label query over a set of resources, in this case pods."
7516        },
7517        "namespaceSelector": {
7518          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector",
7519          "description": "A label query over the set of namespaces that the term applies to. The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field. null selector and null or empty namespaces list means \"this pod's namespace\". An empty selector ({}) matches all namespaces. This field is beta-level and is only honored when PodAffinityNamespaceSelector feature is enabled."
7520        },
7521        "namespaces": {
7522          "description": "namespaces specifies a static list of namespace names that the term applies to. The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector. null or empty namespaces list and null namespaceSelector means \"this pod's namespace\"",
7523          "items": {
7524            "type": "string"
7525          },
7526          "type": "array"
7527        },
7528        "topologyKey": {
7529          "description": "This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed.",
7530          "type": "string"
7531        }
7532      },
7533      "required": [
7534        "topologyKey"
7535      ],
7536      "type": "object"
7537    },
7538    "io.k8s.api.core.v1.PodAntiAffinity": {
7539      "description": "Pod anti affinity is a group of inter pod anti affinity scheduling rules.",
7540      "properties": {
7541        "preferredDuringSchedulingIgnoredDuringExecution": {
7542          "description": "The scheduler will prefer to schedule pods to nodes that satisfy the anti-affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling anti-affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \"weight\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred.",
7543          "items": {
7544            "$ref": "#/definitions/io.k8s.api.core.v1.WeightedPodAffinityTerm"
7545          },
7546          "type": "array"
7547        },
7548        "requiredDuringSchedulingIgnoredDuringExecution": {
7549          "description": "If the anti-affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the anti-affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied.",
7550          "items": {
7551            "$ref": "#/definitions/io.k8s.api.core.v1.PodAffinityTerm"
7552          },
7553          "type": "array"
7554        }
7555      },
7556      "type": "object"
7557    },
7558    "io.k8s.api.core.v1.PodCondition": {
7559      "description": "PodCondition contains details for the current condition of this pod.",
7560      "properties": {
7561        "lastProbeTime": {
7562          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
7563          "description": "Last time we probed the condition."
7564        },
7565        "lastTransitionTime": {
7566          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
7567          "description": "Last time the condition transitioned from one status to another."
7568        },
7569        "message": {
7570          "description": "Human-readable message indicating details about last transition.",
7571          "type": "string"
7572        },
7573        "reason": {
7574          "description": "Unique, one-word, CamelCase reason for the condition's last transition.",
7575          "type": "string"
7576        },
7577        "status": {
7578          "description": "Status is the status of the condition. Can be True, False, Unknown. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-conditions",
7579          "type": "string"
7580        },
7581        "type": {
7582          "description": "Type is the type of the condition. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-conditions",
7583          "type": "string"
7584        }
7585      },
7586      "required": [
7587        "type",
7588        "status"
7589      ],
7590      "type": "object"
7591    },
7592    "io.k8s.api.core.v1.PodDNSConfig": {
7593      "description": "PodDNSConfig defines the DNS parameters of a pod in addition to those generated from DNSPolicy.",
7594      "properties": {
7595        "nameservers": {
7596          "description": "A list of DNS name server IP addresses. This will be appended to the base nameservers generated from DNSPolicy. Duplicated nameservers will be removed.",
7597          "items": {
7598            "type": "string"
7599          },
7600          "type": "array"
7601        },
7602        "options": {
7603          "description": "A list of DNS resolver options. This will be merged with the base options generated from DNSPolicy. Duplicated entries will be removed. Resolution options given in Options will override those that appear in the base DNSPolicy.",
7604          "items": {
7605            "$ref": "#/definitions/io.k8s.api.core.v1.PodDNSConfigOption"
7606          },
7607          "type": "array"
7608        },
7609        "searches": {
7610          "description": "A list of DNS search domains for host-name lookup. This will be appended to the base search paths generated from DNSPolicy. Duplicated search paths will be removed.",
7611          "items": {
7612            "type": "string"
7613          },
7614          "type": "array"
7615        }
7616      },
7617      "type": "object"
7618    },
7619    "io.k8s.api.core.v1.PodDNSConfigOption": {
7620      "description": "PodDNSConfigOption defines DNS resolver options of a pod.",
7621      "properties": {
7622        "name": {
7623          "description": "Required.",
7624          "type": "string"
7625        },
7626        "value": {
7627          "type": "string"
7628        }
7629      },
7630      "type": "object"
7631    },
7632    "io.k8s.api.core.v1.PodIP": {
7633      "description": "IP address information for entries in the (plural) PodIPs field. Each entry includes:\n   IP: An IP address allocated to the pod. Routable at least within the cluster.",
7634      "properties": {
7635        "ip": {
7636          "description": "ip is an IP address (IPv4 or IPv6) assigned to the pod",
7637          "type": "string"
7638        }
7639      },
7640      "type": "object"
7641    },
7642    "io.k8s.api.core.v1.PodList": {
7643      "description": "PodList is a list of Pods.",
7644      "properties": {
7645        "apiVersion": {
7646          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
7647          "type": "string"
7648        },
7649        "items": {
7650          "description": "List of pods. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md",
7651          "items": {
7652            "$ref": "#/definitions/io.k8s.api.core.v1.Pod"
7653          },
7654          "type": "array"
7655        },
7656        "kind": {
7657          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
7658          "type": "string"
7659        },
7660        "metadata": {
7661          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
7662          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds"
7663        }
7664      },
7665      "required": [
7666        "items"
7667      ],
7668      "type": "object",
7669      "x-kubernetes-group-version-kind": [
7670        {
7671          "group": "",
7672          "kind": "PodList",
7673          "version": "v1"
7674        }
7675      ]
7676    },
7677    "io.k8s.api.core.v1.PodReadinessGate": {
7678      "description": "PodReadinessGate contains the reference to a pod condition",
7679      "properties": {
7680        "conditionType": {
7681          "description": "ConditionType refers to a condition in the pod's condition list with matching type.",
7682          "type": "string"
7683        }
7684      },
7685      "required": [
7686        "conditionType"
7687      ],
7688      "type": "object"
7689    },
7690    "io.k8s.api.core.v1.PodSecurityContext": {
7691      "description": "PodSecurityContext holds pod-level security attributes and common container settings. Some fields are also present in container.securityContext.  Field values of container.securityContext take precedence over field values of PodSecurityContext.",
7692      "properties": {
7693        "fsGroup": {
7694          "description": "A special supplemental group that applies to all containers in a pod. Some volume types allow the Kubelet to change the ownership of that volume to be owned by the pod:\n\n1. The owning GID will be the FSGroup 2. The setgid bit is set (new files created in the volume will be owned by FSGroup) 3. The permission bits are OR'd with rw-rw----\n\nIf unset, the Kubelet will not modify the ownership and permissions of any volume.",
7695          "format": "int64",
7696          "type": "integer"
7697        },
7698        "fsGroupChangePolicy": {
7699          "description": "fsGroupChangePolicy defines behavior of changing ownership and permission of the volume before being exposed inside Pod. This field will only apply to volume types which support fsGroup based ownership(and permissions). It will have no effect on ephemeral volume types such as: secret, configmaps and emptydir. Valid values are \"OnRootMismatch\" and \"Always\". If not specified, \"Always\" is used.",
7700          "type": "string"
7701        },
7702        "runAsGroup": {
7703          "description": "The GID to run the entrypoint of the container process. Uses runtime default if unset. May also be set in SecurityContext.  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container.",
7704          "format": "int64",
7705          "type": "integer"
7706        },
7707        "runAsNonRoot": {
7708          "description": "Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in SecurityContext.  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.",
7709          "type": "boolean"
7710        },
7711        "runAsUser": {
7712          "description": "The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in SecurityContext.  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container.",
7713          "format": "int64",
7714          "type": "integer"
7715        },
7716        "seLinuxOptions": {
7717          "$ref": "#/definitions/io.k8s.api.core.v1.SELinuxOptions",
7718          "description": "The SELinux context to be applied to all containers. If unspecified, the container runtime will allocate a random SELinux context for each container.  May also be set in SecurityContext.  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container."
7719        },
7720        "seccompProfile": {
7721          "$ref": "#/definitions/io.k8s.api.core.v1.SeccompProfile",
7722          "description": "The seccomp options to use by the containers in this pod."
7723        },
7724        "supplementalGroups": {
7725          "description": "A list of groups applied to the first process run in each container, in addition to the container's primary GID.  If unspecified, no groups will be added to any container.",
7726          "items": {
7727            "format": "int64",
7728            "type": "integer"
7729          },
7730          "type": "array"
7731        },
7732        "sysctls": {
7733          "description": "Sysctls hold a list of namespaced sysctls used for the pod. Pods with unsupported sysctls (by the container runtime) might fail to launch.",
7734          "items": {
7735            "$ref": "#/definitions/io.k8s.api.core.v1.Sysctl"
7736          },
7737          "type": "array"
7738        },
7739        "windowsOptions": {
7740          "$ref": "#/definitions/io.k8s.api.core.v1.WindowsSecurityContextOptions",
7741          "description": "The Windows specific settings applied to all containers. If unspecified, the options within a container's SecurityContext will be used. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence."
7742        }
7743      },
7744      "type": "object"
7745    },
7746    "io.k8s.api.core.v1.PodSpec": {
7747      "description": "PodSpec is a description of a pod.",
7748      "properties": {
7749        "activeDeadlineSeconds": {
7750          "description": "Optional duration in seconds the pod may be active on the node relative to StartTime before the system will actively try to mark it failed and kill associated containers. Value must be a positive integer.",
7751          "format": "int64",
7752          "type": "integer"
7753        },
7754        "affinity": {
7755          "$ref": "#/definitions/io.k8s.api.core.v1.Affinity",
7756          "description": "If specified, the pod's scheduling constraints"
7757        },
7758        "automountServiceAccountToken": {
7759          "description": "AutomountServiceAccountToken indicates whether a service account token should be automatically mounted.",
7760          "type": "boolean"
7761        },
7762        "containers": {
7763          "description": "List of containers belonging to the pod. Containers cannot currently be added or removed. There must be at least one container in a Pod. Cannot be updated.",
7764          "items": {
7765            "$ref": "#/definitions/io.k8s.api.core.v1.Container"
7766          },
7767          "type": "array",
7768          "x-kubernetes-patch-merge-key": "name",
7769          "x-kubernetes-patch-strategy": "merge"
7770        },
7771        "dnsConfig": {
7772          "$ref": "#/definitions/io.k8s.api.core.v1.PodDNSConfig",
7773          "description": "Specifies the DNS parameters of a pod. Parameters specified here will be merged to the generated DNS configuration based on DNSPolicy."
7774        },
7775        "dnsPolicy": {
7776          "description": "Set DNS policy for the pod. Defaults to \"ClusterFirst\". Valid values are 'ClusterFirstWithHostNet', 'ClusterFirst', 'Default' or 'None'. DNS parameters given in DNSConfig will be merged with the policy selected with DNSPolicy. To have DNS options set along with hostNetwork, you have to specify DNS policy explicitly to 'ClusterFirstWithHostNet'.",
7777          "type": "string"
7778        },
7779        "enableServiceLinks": {
7780          "description": "EnableServiceLinks indicates whether information about services should be injected into pod's environment variables, matching the syntax of Docker links. Optional: Defaults to true.",
7781          "type": "boolean"
7782        },
7783        "ephemeralContainers": {
7784          "description": "List of ephemeral containers run in this pod. Ephemeral containers may be run in an existing pod to perform user-initiated actions such as debugging. This list cannot be specified when creating a pod, and it cannot be modified by updating the pod spec. In order to add an ephemeral container to an existing pod, use the pod's ephemeralcontainers subresource. This field is alpha-level and is only honored by servers that enable the EphemeralContainers feature.",
7785          "items": {
7786            "$ref": "#/definitions/io.k8s.api.core.v1.EphemeralContainer"
7787          },
7788          "type": "array",
7789          "x-kubernetes-patch-merge-key": "name",
7790          "x-kubernetes-patch-strategy": "merge"
7791        },
7792        "hostAliases": {
7793          "description": "HostAliases is an optional list of hosts and IPs that will be injected into the pod's hosts file if specified. This is only valid for non-hostNetwork pods.",
7794          "items": {
7795            "$ref": "#/definitions/io.k8s.api.core.v1.HostAlias"
7796          },
7797          "type": "array",
7798          "x-kubernetes-patch-merge-key": "ip",
7799          "x-kubernetes-patch-strategy": "merge"
7800        },
7801        "hostIPC": {
7802          "description": "Use the host's ipc namespace. Optional: Default to false.",
7803          "type": "boolean"
7804        },
7805        "hostNetwork": {
7806          "description": "Host networking requested for this pod. Use the host's network namespace. If this option is set, the ports that will be used must be specified. Default to false.",
7807          "type": "boolean"
7808        },
7809        "hostPID": {
7810          "description": "Use the host's pid namespace. Optional: Default to false.",
7811          "type": "boolean"
7812        },
7813        "hostname": {
7814          "description": "Specifies the hostname of the Pod If not specified, the pod's hostname will be set to a system-defined value.",
7815          "type": "string"
7816        },
7817        "imagePullSecrets": {
7818          "description": "ImagePullSecrets is an optional list of references to secrets in the same namespace to use for pulling any of the images used by this PodSpec. If specified, these secrets will be passed to individual puller implementations for them to use. For example, in the case of docker, only DockerConfig type secrets are honored. More info: https://kubernetes.io/docs/concepts/containers/images#specifying-imagepullsecrets-on-a-pod",
7819          "items": {
7820            "$ref": "#/definitions/io.k8s.api.core.v1.LocalObjectReference"
7821          },
7822          "type": "array",
7823          "x-kubernetes-patch-merge-key": "name",
7824          "x-kubernetes-patch-strategy": "merge"
7825        },
7826        "initContainers": {
7827          "description": "List of initialization containers belonging to the pod. Init containers are executed in order prior to containers being started. If any init container fails, the pod is considered to have failed and is handled according to its restartPolicy. The name for an init container or normal container must be unique among all containers. Init containers may not have Lifecycle actions, Readiness probes, Liveness probes, or Startup probes. The resourceRequirements of an init container are taken into account during scheduling by finding the highest request/limit for each resource type, and then using the max of of that value or the sum of the normal containers. Limits are applied to init containers in a similar fashion. Init containers cannot currently be added or removed. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/init-containers/",
7828          "items": {
7829            "$ref": "#/definitions/io.k8s.api.core.v1.Container"
7830          },
7831          "type": "array",
7832          "x-kubernetes-patch-merge-key": "name",
7833          "x-kubernetes-patch-strategy": "merge"
7834        },
7835        "nodeName": {
7836          "description": "NodeName is a request to schedule this pod onto a specific node. If it is non-empty, the scheduler simply schedules this pod onto that node, assuming that it fits resource requirements.",
7837          "type": "string"
7838        },
7839        "nodeSelector": {
7840          "additionalProperties": {
7841            "type": "string"
7842          },
7843          "description": "NodeSelector is a selector which must be true for the pod to fit on a node. Selector which must match a node's labels for the pod to be scheduled on that node. More info: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/",
7844          "type": "object",
7845          "x-kubernetes-map-type": "atomic"
7846        },
7847        "overhead": {
7848          "additionalProperties": {
7849            "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity"
7850          },
7851          "description": "Overhead represents the resource overhead associated with running a pod for a given RuntimeClass. This field will be autopopulated at admission time by the RuntimeClass admission controller. If the RuntimeClass admission controller is enabled, overhead must not be set in Pod create requests. The RuntimeClass admission controller will reject Pod create requests which have the overhead already set. If RuntimeClass is configured and selected in the PodSpec, Overhead will be set to the value defined in the corresponding RuntimeClass, otherwise it will remain unset and treated as zero. More info: https://git.k8s.io/enhancements/keps/sig-node/688-pod-overhead/README.md This field is beta-level as of Kubernetes v1.18, and is only honored by servers that enable the PodOverhead feature.",
7852          "type": "object"
7853        },
7854        "preemptionPolicy": {
7855          "description": "PreemptionPolicy is the Policy for preempting pods with lower priority. One of Never, PreemptLowerPriority. Defaults to PreemptLowerPriority if unset. This field is beta-level, gated by the NonPreemptingPriority feature-gate.",
7856          "type": "string"
7857        },
7858        "priority": {
7859          "description": "The priority value. Various system components use this field to find the priority of the pod. When Priority Admission Controller is enabled, it prevents users from setting this field. The admission controller populates this field from PriorityClassName. The higher the value, the higher the priority.",
7860          "format": "int32",
7861          "type": "integer"
7862        },
7863        "priorityClassName": {
7864          "description": "If specified, indicates the pod's priority. \"system-node-critical\" and \"system-cluster-critical\" are two special keywords which indicate the highest priorities with the former being the highest priority. Any other name must be defined by creating a PriorityClass object with that name. If not specified, the pod priority will be default or zero if there is no default.",
7865          "type": "string"
7866        },
7867        "readinessGates": {
7868          "description": "If specified, all readiness gates will be evaluated for pod readiness. A pod is ready when all its containers are ready AND all conditions specified in the readiness gates have status equal to \"True\" More info: https://git.k8s.io/enhancements/keps/sig-network/580-pod-readiness-gates",
7869          "items": {
7870            "$ref": "#/definitions/io.k8s.api.core.v1.PodReadinessGate"
7871          },
7872          "type": "array"
7873        },
7874        "restartPolicy": {
7875          "description": "Restart policy for all containers within the pod. One of Always, OnFailure, Never. Default to Always. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle/#restart-policy",
7876          "type": "string"
7877        },
7878        "runtimeClassName": {
7879          "description": "RuntimeClassName refers to a RuntimeClass object in the node.k8s.io group, which should be used to run this pod.  If no RuntimeClass resource matches the named class, the pod will not be run. If unset or empty, the \"legacy\" RuntimeClass will be used, which is an implicit class with an empty definition that uses the default runtime handler. More info: https://git.k8s.io/enhancements/keps/sig-node/585-runtime-class This is a beta feature as of Kubernetes v1.14.",
7880          "type": "string"
7881        },
7882        "schedulerName": {
7883          "description": "If specified, the pod will be dispatched by specified scheduler. If not specified, the pod will be dispatched by default scheduler.",
7884          "type": "string"
7885        },
7886        "securityContext": {
7887          "$ref": "#/definitions/io.k8s.api.core.v1.PodSecurityContext",
7888          "description": "SecurityContext holds pod-level security attributes and common container settings. Optional: Defaults to empty.  See type description for default values of each field."
7889        },
7890        "serviceAccount": {
7891          "description": "DeprecatedServiceAccount is a depreciated alias for ServiceAccountName. Deprecated: Use serviceAccountName instead.",
7892          "type": "string"
7893        },
7894        "serviceAccountName": {
7895          "description": "ServiceAccountName is the name of the ServiceAccount to use to run this pod. More info: https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/",
7896          "type": "string"
7897        },
7898        "setHostnameAsFQDN": {
7899          "description": "If true the pod's hostname will be configured as the pod's FQDN, rather than the leaf name (the default). In Linux containers, this means setting the FQDN in the hostname field of the kernel (the nodename field of struct utsname). In Windows containers, this means setting the registry value of hostname for the registry key HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Services\\Tcpip\\Parameters to FQDN. If a pod does not have FQDN, this has no effect. Default to false.",
7900          "type": "boolean"
7901        },
7902        "shareProcessNamespace": {
7903          "description": "Share a single process namespace between all of the containers in a pod. When this is set containers will be able to view and signal processes from other containers in the same pod, and the first process in each container will not be assigned PID 1. HostPID and ShareProcessNamespace cannot both be set. Optional: Default to false.",
7904          "type": "boolean"
7905        },
7906        "subdomain": {
7907          "description": "If specified, the fully qualified Pod hostname will be \"<hostname>.<subdomain>.<pod namespace>.svc.<cluster domain>\". If not specified, the pod will not have a domainname at all.",
7908          "type": "string"
7909        },
7910        "terminationGracePeriodSeconds": {
7911          "description": "Optional duration in seconds the pod needs to terminate gracefully. May be decreased in delete request. Value must be non-negative integer. The value zero indicates stop immediately via the kill signal (no opportunity to shut down). If this value is nil, the default grace period will be used instead. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. Defaults to 30 seconds.",
7912          "format": "int64",
7913          "type": "integer"
7914        },
7915        "tolerations": {
7916          "description": "If specified, the pod's tolerations.",
7917          "items": {
7918            "$ref": "#/definitions/io.k8s.api.core.v1.Toleration"
7919          },
7920          "type": "array"
7921        },
7922        "topologySpreadConstraints": {
7923          "description": "TopologySpreadConstraints describes how a group of pods ought to spread across topology domains. Scheduler will schedule pods in a way which abides by the constraints. All topologySpreadConstraints are ANDed.",
7924          "items": {
7925            "$ref": "#/definitions/io.k8s.api.core.v1.TopologySpreadConstraint"
7926          },
7927          "type": "array",
7928          "x-kubernetes-list-map-keys": [
7929            "topologyKey",
7930            "whenUnsatisfiable"
7931          ],
7932          "x-kubernetes-list-type": "map",
7933          "x-kubernetes-patch-merge-key": "topologyKey",
7934          "x-kubernetes-patch-strategy": "merge"
7935        },
7936        "volumes": {
7937          "description": "List of volumes that can be mounted by containers belonging to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes",
7938          "items": {
7939            "$ref": "#/definitions/io.k8s.api.core.v1.Volume"
7940          },
7941          "type": "array",
7942          "x-kubernetes-patch-merge-key": "name",
7943          "x-kubernetes-patch-strategy": "merge,retainKeys"
7944        }
7945      },
7946      "required": [
7947        "containers"
7948      ],
7949      "type": "object"
7950    },
7951    "io.k8s.api.core.v1.PodStatus": {
7952      "description": "PodStatus represents information about the status of a pod. Status may trail the actual state of a system, especially if the node that hosts the pod cannot contact the control plane.",
7953      "properties": {
7954        "conditions": {
7955          "description": "Current service state of pod. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-conditions",
7956          "items": {
7957            "$ref": "#/definitions/io.k8s.api.core.v1.PodCondition"
7958          },
7959          "type": "array",
7960          "x-kubernetes-patch-merge-key": "type",
7961          "x-kubernetes-patch-strategy": "merge"
7962        },
7963        "containerStatuses": {
7964          "description": "The list has one entry per container in the manifest. Each entry is currently the output of `docker inspect`. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-and-container-status",
7965          "items": {
7966            "$ref": "#/definitions/io.k8s.api.core.v1.ContainerStatus"
7967          },
7968          "type": "array"
7969        },
7970        "ephemeralContainerStatuses": {
7971          "description": "Status for any ephemeral containers that have run in this pod. This field is alpha-level and is only populated by servers that enable the EphemeralContainers feature.",
7972          "items": {
7973            "$ref": "#/definitions/io.k8s.api.core.v1.ContainerStatus"
7974          },
7975          "type": "array"
7976        },
7977        "hostIP": {
7978          "description": "IP address of the host to which the pod is assigned. Empty if not yet scheduled.",
7979          "type": "string"
7980        },
7981        "initContainerStatuses": {
7982          "description": "The list has one entry per init container in the manifest. The most recent successful init container will have ready = true, the most recently started container will have startTime set. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-and-container-status",
7983          "items": {
7984            "$ref": "#/definitions/io.k8s.api.core.v1.ContainerStatus"
7985          },
7986          "type": "array"
7987        },
7988        "message": {
7989          "description": "A human readable message indicating details about why the pod is in this condition.",
7990          "type": "string"
7991        },
7992        "nominatedNodeName": {
7993          "description": "nominatedNodeName is set only when this pod preempts other pods on the node, but it cannot be scheduled right away as preemption victims receive their graceful termination periods. This field does not guarantee that the pod will be scheduled on this node. Scheduler may decide to place the pod elsewhere if other nodes become available sooner. Scheduler may also decide to give the resources on this node to a higher priority pod that is created after preemption. As a result, this field may be different than PodSpec.nodeName when the pod is scheduled.",
7994          "type": "string"
7995        },
7996        "phase": {
7997          "description": "The phase of a Pod is a simple, high-level summary of where the Pod is in its lifecycle. The conditions array, the reason and message fields, and the individual container status arrays contain more detail about the pod's status. There are five possible phase values:\n\nPending: The pod has been accepted by the Kubernetes system, but one or more of the container images has not been created. This includes time before being scheduled as well as time spent downloading images over the network, which could take a while. Running: The pod has been bound to a node, and all of the containers have been created. At least one container is still running, or is in the process of starting or restarting. Succeeded: All containers in the pod have terminated in success, and will not be restarted. Failed: All containers in the pod have terminated, and at least one container has terminated in failure. The container either exited with non-zero status or was terminated by the system. Unknown: For some reason the state of the pod could not be obtained, typically due to an error in communicating with the host of the pod.\n\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-phase",
7998          "type": "string"
7999        },
8000        "podIP": {
8001          "description": "IP address allocated to the pod. Routable at least within the cluster. Empty if not yet allocated.",
8002          "type": "string"
8003        },
8004        "podIPs": {
8005          "description": "podIPs holds the IP addresses allocated to the pod. If this field is specified, the 0th entry must match the podIP field. Pods may be allocated at most 1 value for each of IPv4 and IPv6. This list is empty if no IPs have been allocated yet.",
8006          "items": {
8007            "$ref": "#/definitions/io.k8s.api.core.v1.PodIP"
8008          },
8009          "type": "array",
8010          "x-kubernetes-patch-merge-key": "ip",
8011          "x-kubernetes-patch-strategy": "merge"
8012        },
8013        "qosClass": {
8014          "description": "The Quality of Service (QOS) classification assigned to the pod based on resource requirements See PodQOSClass type for available QOS classes More info: https://git.k8s.io/community/contributors/design-proposals/node/resource-qos.md",
8015          "type": "string"
8016        },
8017        "reason": {
8018          "description": "A brief CamelCase message indicating details about why the pod is in this state. e.g. 'Evicted'",
8019          "type": "string"
8020        },
8021        "startTime": {
8022          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
8023          "description": "RFC 3339 date and time at which the object was acknowledged by the Kubelet. This is before the Kubelet pulled the container image(s) for the pod."
8024        }
8025      },
8026      "type": "object"
8027    },
8028    "io.k8s.api.core.v1.PodTemplate": {
8029      "description": "PodTemplate describes a template for creating copies of a predefined pod.",
8030      "properties": {
8031        "apiVersion": {
8032          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
8033          "type": "string"
8034        },
8035        "kind": {
8036          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
8037          "type": "string"
8038        },
8039        "metadata": {
8040          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
8041          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
8042        },
8043        "template": {
8044          "$ref": "#/definitions/io.k8s.api.core.v1.PodTemplateSpec",
8045          "description": "Template defines the pods that will be created from this pod template. https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status"
8046        }
8047      },
8048      "type": "object",
8049      "x-kubernetes-group-version-kind": [
8050        {
8051          "group": "",
8052          "kind": "PodTemplate",
8053          "version": "v1"
8054        }
8055      ]
8056    },
8057    "io.k8s.api.core.v1.PodTemplateList": {
8058      "description": "PodTemplateList is a list of PodTemplates.",
8059      "properties": {
8060        "apiVersion": {
8061          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
8062          "type": "string"
8063        },
8064        "items": {
8065          "description": "List of pod templates",
8066          "items": {
8067            "$ref": "#/definitions/io.k8s.api.core.v1.PodTemplate"
8068          },
8069          "type": "array"
8070        },
8071        "kind": {
8072          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
8073          "type": "string"
8074        },
8075        "metadata": {
8076          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
8077          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds"
8078        }
8079      },
8080      "required": [
8081        "items"
8082      ],
8083      "type": "object",
8084      "x-kubernetes-group-version-kind": [
8085        {
8086          "group": "",
8087          "kind": "PodTemplateList",
8088          "version": "v1"
8089        }
8090      ]
8091    },
8092    "io.k8s.api.core.v1.PodTemplateSpec": {
8093      "description": "PodTemplateSpec describes the data a pod should have when created from a template",
8094      "properties": {
8095        "metadata": {
8096          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
8097          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
8098        },
8099        "spec": {
8100          "$ref": "#/definitions/io.k8s.api.core.v1.PodSpec",
8101          "description": "Specification of the desired behavior of the pod. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status"
8102        }
8103      },
8104      "type": "object"
8105    },
8106    "io.k8s.api.core.v1.PortStatus": {
8107      "properties": {
8108        "error": {
8109          "description": "Error is to record the problem with the service port The format of the error shall comply with the following rules: - built-in error values shall be specified in this file and those shall use\n  CamelCase names\n- cloud provider specific error values must have names that comply with the\n  format foo.example.com/CamelCase.",
8110          "type": "string"
8111        },
8112        "port": {
8113          "description": "Port is the port number of the service port of which status is recorded here",
8114          "format": "int32",
8115          "type": "integer"
8116        },
8117        "protocol": {
8118          "description": "Protocol is the protocol of the service port of which status is recorded here The supported values are: \"TCP\", \"UDP\", \"SCTP\"",
8119          "type": "string"
8120        }
8121      },
8122      "required": [
8123        "port",
8124        "protocol"
8125      ],
8126      "type": "object"
8127    },
8128    "io.k8s.api.core.v1.PortworxVolumeSource": {
8129      "description": "PortworxVolumeSource represents a Portworx volume resource.",
8130      "properties": {
8131        "fsType": {
8132          "description": "FSType represents the filesystem type to mount Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\". Implicitly inferred to be \"ext4\" if unspecified.",
8133          "type": "string"
8134        },
8135        "readOnly": {
8136          "description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
8137          "type": "boolean"
8138        },
8139        "volumeID": {
8140          "description": "VolumeID uniquely identifies a Portworx volume",
8141          "type": "string"
8142        }
8143      },
8144      "required": [
8145        "volumeID"
8146      ],
8147      "type": "object"
8148    },
8149    "io.k8s.api.core.v1.PreferredSchedulingTerm": {
8150      "description": "An empty preferred scheduling term matches all objects with implicit weight 0 (i.e. it's a no-op). A null preferred scheduling term matches no objects (i.e. is also a no-op).",
8151      "properties": {
8152        "preference": {
8153          "$ref": "#/definitions/io.k8s.api.core.v1.NodeSelectorTerm",
8154          "description": "A node selector term, associated with the corresponding weight."
8155        },
8156        "weight": {
8157          "description": "Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100.",
8158          "format": "int32",
8159          "type": "integer"
8160        }
8161      },
8162      "required": [
8163        "weight",
8164        "preference"
8165      ],
8166      "type": "object"
8167    },
8168    "io.k8s.api.core.v1.Probe": {
8169      "description": "Probe describes a health check to be performed against a container to determine whether it is alive or ready to receive traffic.",
8170      "properties": {
8171        "exec": {
8172          "$ref": "#/definitions/io.k8s.api.core.v1.ExecAction",
8173          "description": "One and only one of the following should be specified. Exec specifies the action to take."
8174        },
8175        "failureThreshold": {
8176          "description": "Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1.",
8177          "format": "int32",
8178          "type": "integer"
8179        },
8180        "httpGet": {
8181          "$ref": "#/definitions/io.k8s.api.core.v1.HTTPGetAction",
8182          "description": "HTTPGet specifies the http request to perform."
8183        },
8184        "initialDelaySeconds": {
8185          "description": "Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes",
8186          "format": "int32",
8187          "type": "integer"
8188        },
8189        "periodSeconds": {
8190          "description": "How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1.",
8191          "format": "int32",
8192          "type": "integer"
8193        },
8194        "successThreshold": {
8195          "description": "Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1.",
8196          "format": "int32",
8197          "type": "integer"
8198        },
8199        "tcpSocket": {
8200          "$ref": "#/definitions/io.k8s.api.core.v1.TCPSocketAction",
8201          "description": "TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported"
8202        },
8203        "terminationGracePeriodSeconds": {
8204          "description": "Optional duration in seconds the pod needs to terminate gracefully upon probe failure. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. If this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this value overrides the value provided by the pod spec. Value must be non-negative integer. The value zero indicates stop immediately via the kill signal (no opportunity to shut down). This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate. Minimum value is 1. spec.terminationGracePeriodSeconds is used if unset.",
8205          "format": "int64",
8206          "type": "integer"
8207        },
8208        "timeoutSeconds": {
8209          "description": "Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes",
8210          "format": "int32",
8211          "type": "integer"
8212        }
8213      },
8214      "type": "object"
8215    },
8216    "io.k8s.api.core.v1.ProjectedVolumeSource": {
8217      "description": "Represents a projected volume source",
8218      "properties": {
8219        "defaultMode": {
8220          "description": "Mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.",
8221          "format": "int32",
8222          "type": "integer"
8223        },
8224        "sources": {
8225          "description": "list of volume projections",
8226          "items": {
8227            "$ref": "#/definitions/io.k8s.api.core.v1.VolumeProjection"
8228          },
8229          "type": "array"
8230        }
8231      },
8232      "type": "object"
8233    },
8234    "io.k8s.api.core.v1.QuobyteVolumeSource": {
8235      "description": "Represents a Quobyte mount that lasts the lifetime of a pod. Quobyte volumes do not support ownership management or SELinux relabeling.",
8236      "properties": {
8237        "group": {
8238          "description": "Group to map volume access to Default is no group",
8239          "type": "string"
8240        },
8241        "readOnly": {
8242          "description": "ReadOnly here will force the Quobyte volume to be mounted with read-only permissions. Defaults to false.",
8243          "type": "boolean"
8244        },
8245        "registry": {
8246          "description": "Registry represents a single or multiple Quobyte Registry services specified as a string as host:port pair (multiple entries are separated with commas) which acts as the central registry for volumes",
8247          "type": "string"
8248        },
8249        "tenant": {
8250          "description": "Tenant owning the given Quobyte volume in the Backend Used with dynamically provisioned Quobyte volumes, value is set by the plugin",
8251          "type": "string"
8252        },
8253        "user": {
8254          "description": "User to map volume access to Defaults to serivceaccount user",
8255          "type": "string"
8256        },
8257        "volume": {
8258          "description": "Volume is a string that references an already created Quobyte volume by name.",
8259          "type": "string"
8260        }
8261      },
8262      "required": [
8263        "registry",
8264        "volume"
8265      ],
8266      "type": "object"
8267    },
8268    "io.k8s.api.core.v1.RBDPersistentVolumeSource": {
8269      "description": "Represents a Rados Block Device mount that lasts the lifetime of a pod. RBD volumes support ownership management and SELinux relabeling.",
8270      "properties": {
8271        "fsType": {
8272          "description": "Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#rbd",
8273          "type": "string"
8274        },
8275        "image": {
8276          "description": "The rados image name. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it",
8277          "type": "string"
8278        },
8279        "keyring": {
8280          "description": "Keyring is the path to key ring for RBDUser. Default is /etc/ceph/keyring. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it",
8281          "type": "string"
8282        },
8283        "monitors": {
8284          "description": "A collection of Ceph monitors. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it",
8285          "items": {
8286            "type": "string"
8287          },
8288          "type": "array"
8289        },
8290        "pool": {
8291          "description": "The rados pool name. Default is rbd. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it",
8292          "type": "string"
8293        },
8294        "readOnly": {
8295          "description": "ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it",
8296          "type": "boolean"
8297        },
8298        "secretRef": {
8299          "$ref": "#/definitions/io.k8s.api.core.v1.SecretReference",
8300          "description": "SecretRef is name of the authentication secret for RBDUser. If provided overrides keyring. Default is nil. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it"
8301        },
8302        "user": {
8303          "description": "The rados user name. Default is admin. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it",
8304          "type": "string"
8305        }
8306      },
8307      "required": [
8308        "monitors",
8309        "image"
8310      ],
8311      "type": "object"
8312    },
8313    "io.k8s.api.core.v1.RBDVolumeSource": {
8314      "description": "Represents a Rados Block Device mount that lasts the lifetime of a pod. RBD volumes support ownership management and SELinux relabeling.",
8315      "properties": {
8316        "fsType": {
8317          "description": "Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#rbd",
8318          "type": "string"
8319        },
8320        "image": {
8321          "description": "The rados image name. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it",
8322          "type": "string"
8323        },
8324        "keyring": {
8325          "description": "Keyring is the path to key ring for RBDUser. Default is /etc/ceph/keyring. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it",
8326          "type": "string"
8327        },
8328        "monitors": {
8329          "description": "A collection of Ceph monitors. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it",
8330          "items": {
8331            "type": "string"
8332          },
8333          "type": "array"
8334        },
8335        "pool": {
8336          "description": "The rados pool name. Default is rbd. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it",
8337          "type": "string"
8338        },
8339        "readOnly": {
8340          "description": "ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it",
8341          "type": "boolean"
8342        },
8343        "secretRef": {
8344          "$ref": "#/definitions/io.k8s.api.core.v1.LocalObjectReference",
8345          "description": "SecretRef is name of the authentication secret for RBDUser. If provided overrides keyring. Default is nil. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it"
8346        },
8347        "user": {
8348          "description": "The rados user name. Default is admin. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it",
8349          "type": "string"
8350        }
8351      },
8352      "required": [
8353        "monitors",
8354        "image"
8355      ],
8356      "type": "object"
8357    },
8358    "io.k8s.api.core.v1.ReplicationController": {
8359      "description": "ReplicationController represents the configuration of a replication controller.",
8360      "properties": {
8361        "apiVersion": {
8362          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
8363          "type": "string"
8364        },
8365        "kind": {
8366          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
8367          "type": "string"
8368        },
8369        "metadata": {
8370          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
8371          "description": "If the Labels of a ReplicationController are empty, they are defaulted to be the same as the Pod(s) that the replication controller manages. Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
8372        },
8373        "spec": {
8374          "$ref": "#/definitions/io.k8s.api.core.v1.ReplicationControllerSpec",
8375          "description": "Spec defines the specification of the desired behavior of the replication controller. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status"
8376        },
8377        "status": {
8378          "$ref": "#/definitions/io.k8s.api.core.v1.ReplicationControllerStatus",
8379          "description": "Status is the most recently observed status of the replication controller. This data may be out of date by some window of time. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status"
8380        }
8381      },
8382      "type": "object",
8383      "x-kubernetes-group-version-kind": [
8384        {
8385          "group": "",
8386          "kind": "ReplicationController",
8387          "version": "v1"
8388        }
8389      ]
8390    },
8391    "io.k8s.api.core.v1.ReplicationControllerCondition": {
8392      "description": "ReplicationControllerCondition describes the state of a replication controller at a certain point.",
8393      "properties": {
8394        "lastTransitionTime": {
8395          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
8396          "description": "The last time the condition transitioned from one status to another."
8397        },
8398        "message": {
8399          "description": "A human readable message indicating details about the transition.",
8400          "type": "string"
8401        },
8402        "reason": {
8403          "description": "The reason for the condition's last transition.",
8404          "type": "string"
8405        },
8406        "status": {
8407          "description": "Status of the condition, one of True, False, Unknown.",
8408          "type": "string"
8409        },
8410        "type": {
8411          "description": "Type of replication controller condition.",
8412          "type": "string"
8413        }
8414      },
8415      "required": [
8416        "type",
8417        "status"
8418      ],
8419      "type": "object"
8420    },
8421    "io.k8s.api.core.v1.ReplicationControllerList": {
8422      "description": "ReplicationControllerList is a collection of replication controllers.",
8423      "properties": {
8424        "apiVersion": {
8425          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
8426          "type": "string"
8427        },
8428        "items": {
8429          "description": "List of replication controllers. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller",
8430          "items": {
8431            "$ref": "#/definitions/io.k8s.api.core.v1.ReplicationController"
8432          },
8433          "type": "array"
8434        },
8435        "kind": {
8436          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
8437          "type": "string"
8438        },
8439        "metadata": {
8440          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
8441          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds"
8442        }
8443      },
8444      "required": [
8445        "items"
8446      ],
8447      "type": "object",
8448      "x-kubernetes-group-version-kind": [
8449        {
8450          "group": "",
8451          "kind": "ReplicationControllerList",
8452          "version": "v1"
8453        }
8454      ]
8455    },
8456    "io.k8s.api.core.v1.ReplicationControllerSpec": {
8457      "description": "ReplicationControllerSpec is the specification of a replication controller.",
8458      "properties": {
8459        "minReadySeconds": {
8460          "description": "Minimum number of seconds for which a newly created pod should be ready without any of its container crashing, for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready)",
8461          "format": "int32",
8462          "type": "integer"
8463        },
8464        "replicas": {
8465          "description": "Replicas is the number of desired replicas. This is a pointer to distinguish between explicit zero and unspecified. Defaults to 1. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller#what-is-a-replicationcontroller",
8466          "format": "int32",
8467          "type": "integer"
8468        },
8469        "selector": {
8470          "additionalProperties": {
8471            "type": "string"
8472          },
8473          "description": "Selector is a label query over pods that should match the Replicas count. If Selector is empty, it is defaulted to the labels present on the Pod template. Label keys and values that must match in order to be controlled by this replication controller, if empty defaulted to labels on Pod template. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors",
8474          "type": "object",
8475          "x-kubernetes-map-type": "atomic"
8476        },
8477        "template": {
8478          "$ref": "#/definitions/io.k8s.api.core.v1.PodTemplateSpec",
8479          "description": "Template is the object that describes the pod that will be created if insufficient replicas are detected. This takes precedence over a TemplateRef. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller#pod-template"
8480        }
8481      },
8482      "type": "object"
8483    },
8484    "io.k8s.api.core.v1.ReplicationControllerStatus": {
8485      "description": "ReplicationControllerStatus represents the current status of a replication controller.",
8486      "properties": {
8487        "availableReplicas": {
8488          "description": "The number of available replicas (ready for at least minReadySeconds) for this replication controller.",
8489          "format": "int32",
8490          "type": "integer"
8491        },
8492        "conditions": {
8493          "description": "Represents the latest available observations of a replication controller's current state.",
8494          "items": {
8495            "$ref": "#/definitions/io.k8s.api.core.v1.ReplicationControllerCondition"
8496          },
8497          "type": "array",
8498          "x-kubernetes-patch-merge-key": "type",
8499          "x-kubernetes-patch-strategy": "merge"
8500        },
8501        "fullyLabeledReplicas": {
8502          "description": "The number of pods that have labels matching the labels of the pod template of the replication controller.",
8503          "format": "int32",
8504          "type": "integer"
8505        },
8506        "observedGeneration": {
8507          "description": "ObservedGeneration reflects the generation of the most recently observed replication controller.",
8508          "format": "int64",
8509          "type": "integer"
8510        },
8511        "readyReplicas": {
8512          "description": "The number of ready replicas for this replication controller.",
8513          "format": "int32",
8514          "type": "integer"
8515        },
8516        "replicas": {
8517          "description": "Replicas is the most recently oberved number of replicas. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller#what-is-a-replicationcontroller",
8518          "format": "int32",
8519          "type": "integer"
8520        }
8521      },
8522      "required": [
8523        "replicas"
8524      ],
8525      "type": "object"
8526    },
8527    "io.k8s.api.core.v1.ResourceFieldSelector": {
8528      "description": "ResourceFieldSelector represents container resources (cpu, memory) and their output format",
8529      "properties": {
8530        "containerName": {
8531          "description": "Container name: required for volumes, optional for env vars",
8532          "type": "string"
8533        },
8534        "divisor": {
8535          "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity",
8536          "description": "Specifies the output format of the exposed resources, defaults to \"1\""
8537        },
8538        "resource": {
8539          "description": "Required: resource to select",
8540          "type": "string"
8541        }
8542      },
8543      "required": [
8544        "resource"
8545      ],
8546      "type": "object",
8547      "x-kubernetes-map-type": "atomic"
8548    },
8549    "io.k8s.api.core.v1.ResourceQuota": {
8550      "description": "ResourceQuota sets aggregate quota restrictions enforced per namespace",
8551      "properties": {
8552        "apiVersion": {
8553          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
8554          "type": "string"
8555        },
8556        "kind": {
8557          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
8558          "type": "string"
8559        },
8560        "metadata": {
8561          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
8562          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
8563        },
8564        "spec": {
8565          "$ref": "#/definitions/io.k8s.api.core.v1.ResourceQuotaSpec",
8566          "description": "Spec defines the desired quota. https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status"
8567        },
8568        "status": {
8569          "$ref": "#/definitions/io.k8s.api.core.v1.ResourceQuotaStatus",
8570          "description": "Status defines the actual enforced quota and its current usage. https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status"
8571        }
8572      },
8573      "type": "object",
8574      "x-kubernetes-group-version-kind": [
8575        {
8576          "group": "",
8577          "kind": "ResourceQuota",
8578          "version": "v1"
8579        }
8580      ]
8581    },
8582    "io.k8s.api.core.v1.ResourceQuotaList": {
8583      "description": "ResourceQuotaList is a list of ResourceQuota items.",
8584      "properties": {
8585        "apiVersion": {
8586          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
8587          "type": "string"
8588        },
8589        "items": {
8590          "description": "Items is a list of ResourceQuota objects. More info: https://kubernetes.io/docs/concepts/policy/resource-quotas/",
8591          "items": {
8592            "$ref": "#/definitions/io.k8s.api.core.v1.ResourceQuota"
8593          },
8594          "type": "array"
8595        },
8596        "kind": {
8597          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
8598          "type": "string"
8599        },
8600        "metadata": {
8601          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
8602          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds"
8603        }
8604      },
8605      "required": [
8606        "items"
8607      ],
8608      "type": "object",
8609      "x-kubernetes-group-version-kind": [
8610        {
8611          "group": "",
8612          "kind": "ResourceQuotaList",
8613          "version": "v1"
8614        }
8615      ]
8616    },
8617    "io.k8s.api.core.v1.ResourceQuotaSpec": {
8618      "description": "ResourceQuotaSpec defines the desired hard limits to enforce for Quota.",
8619      "properties": {
8620        "hard": {
8621          "additionalProperties": {
8622            "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity"
8623          },
8624          "description": "hard is the set of desired hard limits for each named resource. More info: https://kubernetes.io/docs/concepts/policy/resource-quotas/",
8625          "type": "object"
8626        },
8627        "scopeSelector": {
8628          "$ref": "#/definitions/io.k8s.api.core.v1.ScopeSelector",
8629          "description": "scopeSelector is also a collection of filters like scopes that must match each object tracked by a quota but expressed using ScopeSelectorOperator in combination with possible values. For a resource to match, both scopes AND scopeSelector (if specified in spec), must be matched."
8630        },
8631        "scopes": {
8632          "description": "A collection of filters that must match each object tracked by a quota. If not specified, the quota matches all objects.",
8633          "items": {
8634            "type": "string"
8635          },
8636          "type": "array"
8637        }
8638      },
8639      "type": "object"
8640    },
8641    "io.k8s.api.core.v1.ResourceQuotaStatus": {
8642      "description": "ResourceQuotaStatus defines the enforced hard limits and observed use.",
8643      "properties": {
8644        "hard": {
8645          "additionalProperties": {
8646            "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity"
8647          },
8648          "description": "Hard is the set of enforced hard limits for each named resource. More info: https://kubernetes.io/docs/concepts/policy/resource-quotas/",
8649          "type": "object"
8650        },
8651        "used": {
8652          "additionalProperties": {
8653            "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity"
8654          },
8655          "description": "Used is the current observed total usage of the resource in the namespace.",
8656          "type": "object"
8657        }
8658      },
8659      "type": "object"
8660    },
8661    "io.k8s.api.core.v1.ResourceRequirements": {
8662      "description": "ResourceRequirements describes the compute resource requirements.",
8663      "properties": {
8664        "limits": {
8665          "additionalProperties": {
8666            "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity"
8667          },
8668          "description": "Limits describes the maximum amount of compute resources allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/",
8669          "type": "object"
8670        },
8671        "requests": {
8672          "additionalProperties": {
8673            "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity"
8674          },
8675          "description": "Requests describes the minimum amount of compute resources required. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/",
8676          "type": "object"
8677        }
8678      },
8679      "type": "object"
8680    },
8681    "io.k8s.api.core.v1.SELinuxOptions": {
8682      "description": "SELinuxOptions are the labels to be applied to the container",
8683      "properties": {
8684        "level": {
8685          "description": "Level is SELinux level label that applies to the container.",
8686          "type": "string"
8687        },
8688        "role": {
8689          "description": "Role is a SELinux role label that applies to the container.",
8690          "type": "string"
8691        },
8692        "type": {
8693          "description": "Type is a SELinux type label that applies to the container.",
8694          "type": "string"
8695        },
8696        "user": {
8697          "description": "User is a SELinux user label that applies to the container.",
8698          "type": "string"
8699        }
8700      },
8701      "type": "object"
8702    },
8703    "io.k8s.api.core.v1.ScaleIOPersistentVolumeSource": {
8704      "description": "ScaleIOPersistentVolumeSource represents a persistent ScaleIO volume",
8705      "properties": {
8706        "fsType": {
8707          "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Default is \"xfs\"",
8708          "type": "string"
8709        },
8710        "gateway": {
8711          "description": "The host address of the ScaleIO API Gateway.",
8712          "type": "string"
8713        },
8714        "protectionDomain": {
8715          "description": "The name of the ScaleIO Protection Domain for the configured storage.",
8716          "type": "string"
8717        },
8718        "readOnly": {
8719          "description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
8720          "type": "boolean"
8721        },
8722        "secretRef": {
8723          "$ref": "#/definitions/io.k8s.api.core.v1.SecretReference",
8724          "description": "SecretRef references to the secret for ScaleIO user and other sensitive information. If this is not provided, Login operation will fail."
8725        },
8726        "sslEnabled": {
8727          "description": "Flag to enable/disable SSL communication with Gateway, default false",
8728          "type": "boolean"
8729        },
8730        "storageMode": {
8731          "description": "Indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned. Default is ThinProvisioned.",
8732          "type": "string"
8733        },
8734        "storagePool": {
8735          "description": "The ScaleIO Storage Pool associated with the protection domain.",
8736          "type": "string"
8737        },
8738        "system": {
8739          "description": "The name of the storage system as configured in ScaleIO.",
8740          "type": "string"
8741        },
8742        "volumeName": {
8743          "description": "The name of a volume already created in the ScaleIO system that is associated with this volume source.",
8744          "type": "string"
8745        }
8746      },
8747      "required": [
8748        "gateway",
8749        "system",
8750        "secretRef"
8751      ],
8752      "type": "object"
8753    },
8754    "io.k8s.api.core.v1.ScaleIOVolumeSource": {
8755      "description": "ScaleIOVolumeSource represents a persistent ScaleIO volume",
8756      "properties": {
8757        "fsType": {
8758          "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Default is \"xfs\".",
8759          "type": "string"
8760        },
8761        "gateway": {
8762          "description": "The host address of the ScaleIO API Gateway.",
8763          "type": "string"
8764        },
8765        "protectionDomain": {
8766          "description": "The name of the ScaleIO Protection Domain for the configured storage.",
8767          "type": "string"
8768        },
8769        "readOnly": {
8770          "description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
8771          "type": "boolean"
8772        },
8773        "secretRef": {
8774          "$ref": "#/definitions/io.k8s.api.core.v1.LocalObjectReference",
8775          "description": "SecretRef references to the secret for ScaleIO user and other sensitive information. If this is not provided, Login operation will fail."
8776        },
8777        "sslEnabled": {
8778          "description": "Flag to enable/disable SSL communication with Gateway, default false",
8779          "type": "boolean"
8780        },
8781        "storageMode": {
8782          "description": "Indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned. Default is ThinProvisioned.",
8783          "type": "string"
8784        },
8785        "storagePool": {
8786          "description": "The ScaleIO Storage Pool associated with the protection domain.",
8787          "type": "string"
8788        },
8789        "system": {
8790          "description": "The name of the storage system as configured in ScaleIO.",
8791          "type": "string"
8792        },
8793        "volumeName": {
8794          "description": "The name of a volume already created in the ScaleIO system that is associated with this volume source.",
8795          "type": "string"
8796        }
8797      },
8798      "required": [
8799        "gateway",
8800        "system",
8801        "secretRef"
8802      ],
8803      "type": "object"
8804    },
8805    "io.k8s.api.core.v1.ScopeSelector": {
8806      "description": "A scope selector represents the AND of the selectors represented by the scoped-resource selector requirements.",
8807      "properties": {
8808        "matchExpressions": {
8809          "description": "A list of scope selector requirements by scope of the resources.",
8810          "items": {
8811            "$ref": "#/definitions/io.k8s.api.core.v1.ScopedResourceSelectorRequirement"
8812          },
8813          "type": "array"
8814        }
8815      },
8816      "type": "object",
8817      "x-kubernetes-map-type": "atomic"
8818    },
8819    "io.k8s.api.core.v1.ScopedResourceSelectorRequirement": {
8820      "description": "A scoped-resource selector requirement is a selector that contains values, a scope name, and an operator that relates the scope name and values.",
8821      "properties": {
8822        "operator": {
8823          "description": "Represents a scope's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist.",
8824          "type": "string"
8825        },
8826        "scopeName": {
8827          "description": "The name of the scope that the selector applies to.",
8828          "type": "string"
8829        },
8830        "values": {
8831          "description": "An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.",
8832          "items": {
8833            "type": "string"
8834          },
8835          "type": "array"
8836        }
8837      },
8838      "required": [
8839        "scopeName",
8840        "operator"
8841      ],
8842      "type": "object"
8843    },
8844    "io.k8s.api.core.v1.SeccompProfile": {
8845      "description": "SeccompProfile defines a pod/container's seccomp profile settings. Only one profile source may be set.",
8846      "properties": {
8847        "localhostProfile": {
8848          "description": "localhostProfile indicates a profile defined in a file on the node should be used. The profile must be preconfigured on the node to work. Must be a descending path, relative to the kubelet's configured seccomp profile location. Must only be set if type is \"Localhost\".",
8849          "type": "string"
8850        },
8851        "type": {
8852          "description": "type indicates which kind of seccomp profile will be applied. Valid options are:\n\nLocalhost - a profile defined in a file on the node should be used. RuntimeDefault - the container runtime default profile should be used. Unconfined - no profile should be applied.",
8853          "type": "string"
8854        }
8855      },
8856      "required": [
8857        "type"
8858      ],
8859      "type": "object",
8860      "x-kubernetes-unions": [
8861        {
8862          "discriminator": "type",
8863          "fields-to-discriminateBy": {
8864            "localhostProfile": "LocalhostProfile"
8865          }
8866        }
8867      ]
8868    },
8869    "io.k8s.api.core.v1.Secret": {
8870      "description": "Secret holds secret data of a certain type. The total bytes of the values in the Data field must be less than MaxSecretSize bytes.",
8871      "properties": {
8872        "apiVersion": {
8873          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
8874          "type": "string"
8875        },
8876        "data": {
8877          "additionalProperties": {
8878            "format": "byte",
8879            "type": "string"
8880          },
8881          "description": "Data contains the secret data. Each key must consist of alphanumeric characters, '-', '_' or '.'. The serialized form of the secret data is a base64 encoded string, representing the arbitrary (possibly non-string) data value here. Described in https://tools.ietf.org/html/rfc4648#section-4",
8882          "type": "object"
8883        },
8884        "immutable": {
8885          "description": "Immutable, if set to true, ensures that data stored in the Secret cannot be updated (only object metadata can be modified). If not set to true, the field can be modified at any time. Defaulted to nil.",
8886          "type": "boolean"
8887        },
8888        "kind": {
8889          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
8890          "type": "string"
8891        },
8892        "metadata": {
8893          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
8894          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
8895        },
8896        "stringData": {
8897          "additionalProperties": {
8898            "type": "string"
8899          },
8900          "description": "stringData allows specifying non-binary secret data in string form. It is provided as a write-only input field for convenience. All keys and values are merged into the data field on write, overwriting any existing values. The stringData field is never output when reading from the API.",
8901          "type": "object"
8902        },
8903        "type": {
8904          "description": "Used to facilitate programmatic handling of secret data.",
8905          "type": "string"
8906        }
8907      },
8908      "type": "object",
8909      "x-kubernetes-group-version-kind": [
8910        {
8911          "group": "",
8912          "kind": "Secret",
8913          "version": "v1"
8914        }
8915      ]
8916    },
8917    "io.k8s.api.core.v1.SecretEnvSource": {
8918      "description": "SecretEnvSource selects a Secret to populate the environment variables with.\n\nThe contents of the target Secret's Data field will represent the key-value pairs as environment variables.",
8919      "properties": {
8920        "name": {
8921          "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
8922          "type": "string"
8923        },
8924        "optional": {
8925          "description": "Specify whether the Secret must be defined",
8926          "type": "boolean"
8927        }
8928      },
8929      "type": "object"
8930    },
8931    "io.k8s.api.core.v1.SecretKeySelector": {
8932      "description": "SecretKeySelector selects a key of a Secret.",
8933      "properties": {
8934        "key": {
8935          "description": "The key of the secret to select from.  Must be a valid secret key.",
8936          "type": "string"
8937        },
8938        "name": {
8939          "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
8940          "type": "string"
8941        },
8942        "optional": {
8943          "description": "Specify whether the Secret or its key must be defined",
8944          "type": "boolean"
8945        }
8946      },
8947      "required": [
8948        "key"
8949      ],
8950      "type": "object",
8951      "x-kubernetes-map-type": "atomic"
8952    },
8953    "io.k8s.api.core.v1.SecretList": {
8954      "description": "SecretList is a list of Secret.",
8955      "properties": {
8956        "apiVersion": {
8957          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
8958          "type": "string"
8959        },
8960        "items": {
8961          "description": "Items is a list of secret objects. More info: https://kubernetes.io/docs/concepts/configuration/secret",
8962          "items": {
8963            "$ref": "#/definitions/io.k8s.api.core.v1.Secret"
8964          },
8965          "type": "array"
8966        },
8967        "kind": {
8968          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
8969          "type": "string"
8970        },
8971        "metadata": {
8972          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
8973          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds"
8974        }
8975      },
8976      "required": [
8977        "items"
8978      ],
8979      "type": "object",
8980      "x-kubernetes-group-version-kind": [
8981        {
8982          "group": "",
8983          "kind": "SecretList",
8984          "version": "v1"
8985        }
8986      ]
8987    },
8988    "io.k8s.api.core.v1.SecretProjection": {
8989      "description": "Adapts a secret into a projected volume.\n\nThe contents of the target Secret's Data field will be presented in a projected volume as files using the keys in the Data field as the file names. Note that this is identical to a secret volume source without the default mode.",
8990      "properties": {
8991        "items": {
8992          "description": "If unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.",
8993          "items": {
8994            "$ref": "#/definitions/io.k8s.api.core.v1.KeyToPath"
8995          },
8996          "type": "array"
8997        },
8998        "name": {
8999          "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
9000          "type": "string"
9001        },
9002        "optional": {
9003          "description": "Specify whether the Secret or its key must be defined",
9004          "type": "boolean"
9005        }
9006      },
9007      "type": "object"
9008    },
9009    "io.k8s.api.core.v1.SecretReference": {
9010      "description": "SecretReference represents a Secret Reference. It has enough information to retrieve secret in any namespace",
9011      "properties": {
9012        "name": {
9013          "description": "Name is unique within a namespace to reference a secret resource.",
9014          "type": "string"
9015        },
9016        "namespace": {
9017          "description": "Namespace defines the space within which the secret name must be unique.",
9018          "type": "string"
9019        }
9020      },
9021      "type": "object",
9022      "x-kubernetes-map-type": "atomic"
9023    },
9024    "io.k8s.api.core.v1.SecretVolumeSource": {
9025      "description": "Adapts a Secret into a volume.\n\nThe contents of the target Secret's Data field will be presented in a volume as files using the keys in the Data field as the file names. Secret volumes support ownership management and SELinux relabeling.",
9026      "properties": {
9027        "defaultMode": {
9028          "description": "Optional: mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.",
9029          "format": "int32",
9030          "type": "integer"
9031        },
9032        "items": {
9033          "description": "If unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.",
9034          "items": {
9035            "$ref": "#/definitions/io.k8s.api.core.v1.KeyToPath"
9036          },
9037          "type": "array"
9038        },
9039        "optional": {
9040          "description": "Specify whether the Secret or its keys must be defined",
9041          "type": "boolean"
9042        },
9043        "secretName": {
9044          "description": "Name of the secret in the pod's namespace to use. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret",
9045          "type": "string"
9046        }
9047      },
9048      "type": "object"
9049    },
9050    "io.k8s.api.core.v1.SecurityContext": {
9051      "description": "SecurityContext holds security configuration that will be applied to a container. Some fields are present in both SecurityContext and PodSecurityContext.  When both are set, the values in SecurityContext take precedence.",
9052      "properties": {
9053        "allowPrivilegeEscalation": {
9054          "description": "AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process. This bool directly controls if the no_new_privs flag will be set on the container process. AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN",
9055          "type": "boolean"
9056        },
9057        "capabilities": {
9058          "$ref": "#/definitions/io.k8s.api.core.v1.Capabilities",
9059          "description": "The capabilities to add/drop when running containers. Defaults to the default set of capabilities granted by the container runtime."
9060        },
9061        "privileged": {
9062          "description": "Run container in privileged mode. Processes in privileged containers are essentially equivalent to root on the host. Defaults to false.",
9063          "type": "boolean"
9064        },
9065        "procMount": {
9066          "description": "procMount denotes the type of proc mount to use for the containers. The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths. This requires the ProcMountType feature flag to be enabled.",
9067          "type": "string"
9068        },
9069        "readOnlyRootFilesystem": {
9070          "description": "Whether this container has a read-only root filesystem. Default is false.",
9071          "type": "boolean"
9072        },
9073        "runAsGroup": {
9074          "description": "The GID to run the entrypoint of the container process. Uses runtime default if unset. May also be set in PodSecurityContext.  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.",
9075          "format": "int64",
9076          "type": "integer"
9077        },
9078        "runAsNonRoot": {
9079          "description": "Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in PodSecurityContext.  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.",
9080          "type": "boolean"
9081        },
9082        "runAsUser": {
9083          "description": "The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in PodSecurityContext.  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.",
9084          "format": "int64",
9085          "type": "integer"
9086        },
9087        "seLinuxOptions": {
9088          "$ref": "#/definitions/io.k8s.api.core.v1.SELinuxOptions",
9089          "description": "The SELinux context to be applied to the container. If unspecified, the container runtime will allocate a random SELinux context for each container.  May also be set in PodSecurityContext.  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence."
9090        },
9091        "seccompProfile": {
9092          "$ref": "#/definitions/io.k8s.api.core.v1.SeccompProfile",
9093          "description": "The seccomp options to use by this container. If seccomp options are provided at both the pod & container level, the container options override the pod options."
9094        },
9095        "windowsOptions": {
9096          "$ref": "#/definitions/io.k8s.api.core.v1.WindowsSecurityContextOptions",
9097          "description": "The Windows specific settings applied to all containers. If unspecified, the options from the PodSecurityContext will be used. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence."
9098        }
9099      },
9100      "type": "object"
9101    },
9102    "io.k8s.api.core.v1.Service": {
9103      "description": "Service is a named abstraction of software service (for example, mysql) consisting of local port (for example 3306) that the proxy listens on, and the selector that determines which pods will answer requests sent through the proxy.",
9104      "properties": {
9105        "apiVersion": {
9106          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
9107          "type": "string"
9108        },
9109        "kind": {
9110          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
9111          "type": "string"
9112        },
9113        "metadata": {
9114          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
9115          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
9116        },
9117        "spec": {
9118          "$ref": "#/definitions/io.k8s.api.core.v1.ServiceSpec",
9119          "description": "Spec defines the behavior of a service. https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status"
9120        },
9121        "status": {
9122          "$ref": "#/definitions/io.k8s.api.core.v1.ServiceStatus",
9123          "description": "Most recently observed status of the service. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status"
9124        }
9125      },
9126      "type": "object",
9127      "x-kubernetes-group-version-kind": [
9128        {
9129          "group": "",
9130          "kind": "Service",
9131          "version": "v1"
9132        }
9133      ]
9134    },
9135    "io.k8s.api.core.v1.ServiceAccount": {
9136      "description": "ServiceAccount binds together: * a name, understood by users, and perhaps by peripheral systems, for an identity * a principal that can be authenticated and authorized * a set of secrets",
9137      "properties": {
9138        "apiVersion": {
9139          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
9140          "type": "string"
9141        },
9142        "automountServiceAccountToken": {
9143          "description": "AutomountServiceAccountToken indicates whether pods running as this service account should have an API token automatically mounted. Can be overridden at the pod level.",
9144          "type": "boolean"
9145        },
9146        "imagePullSecrets": {
9147          "description": "ImagePullSecrets is a list of references to secrets in the same namespace to use for pulling any images in pods that reference this ServiceAccount. ImagePullSecrets are distinct from Secrets because Secrets can be mounted in the pod, but ImagePullSecrets are only accessed by the kubelet. More info: https://kubernetes.io/docs/concepts/containers/images/#specifying-imagepullsecrets-on-a-pod",
9148          "items": {
9149            "$ref": "#/definitions/io.k8s.api.core.v1.LocalObjectReference"
9150          },
9151          "type": "array"
9152        },
9153        "kind": {
9154          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
9155          "type": "string"
9156        },
9157        "metadata": {
9158          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
9159          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
9160        },
9161        "secrets": {
9162          "description": "Secrets is the list of secrets allowed to be used by pods running using this ServiceAccount. More info: https://kubernetes.io/docs/concepts/configuration/secret",
9163          "items": {
9164            "$ref": "#/definitions/io.k8s.api.core.v1.ObjectReference"
9165          },
9166          "type": "array",
9167          "x-kubernetes-patch-merge-key": "name",
9168          "x-kubernetes-patch-strategy": "merge"
9169        }
9170      },
9171      "type": "object",
9172      "x-kubernetes-group-version-kind": [
9173        {
9174          "group": "",
9175          "kind": "ServiceAccount",
9176          "version": "v1"
9177        }
9178      ]
9179    },
9180    "io.k8s.api.core.v1.ServiceAccountList": {
9181      "description": "ServiceAccountList is a list of ServiceAccount objects",
9182      "properties": {
9183        "apiVersion": {
9184          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
9185          "type": "string"
9186        },
9187        "items": {
9188          "description": "List of ServiceAccounts. More info: https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/",
9189          "items": {
9190            "$ref": "#/definitions/io.k8s.api.core.v1.ServiceAccount"
9191          },
9192          "type": "array"
9193        },
9194        "kind": {
9195          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
9196          "type": "string"
9197        },
9198        "metadata": {
9199          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
9200          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds"
9201        }
9202      },
9203      "required": [
9204        "items"
9205      ],
9206      "type": "object",
9207      "x-kubernetes-group-version-kind": [
9208        {
9209          "group": "",
9210          "kind": "ServiceAccountList",
9211          "version": "v1"
9212        }
9213      ]
9214    },
9215    "io.k8s.api.core.v1.ServiceAccountTokenProjection": {
9216      "description": "ServiceAccountTokenProjection represents a projected service account token volume. This projection can be used to insert a service account token into the pods runtime filesystem for use against APIs (Kubernetes API Server or otherwise).",
9217      "properties": {
9218        "audience": {
9219          "description": "Audience is the intended audience of the token. A recipient of a token must identify itself with an identifier specified in the audience of the token, and otherwise should reject the token. The audience defaults to the identifier of the apiserver.",
9220          "type": "string"
9221        },
9222        "expirationSeconds": {
9223          "description": "ExpirationSeconds is the requested duration of validity of the service account token. As the token approaches expiration, the kubelet volume plugin will proactively rotate the service account token. The kubelet will start trying to rotate the token if the token is older than 80 percent of its time to live or if the token is older than 24 hours.Defaults to 1 hour and must be at least 10 minutes.",
9224          "format": "int64",
9225          "type": "integer"
9226        },
9227        "path": {
9228          "description": "Path is the path relative to the mount point of the file to project the token into.",
9229          "type": "string"
9230        }
9231      },
9232      "required": [
9233        "path"
9234      ],
9235      "type": "object"
9236    },
9237    "io.k8s.api.core.v1.ServiceList": {
9238      "description": "ServiceList holds a list of services.",
9239      "properties": {
9240        "apiVersion": {
9241          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
9242          "type": "string"
9243        },
9244        "items": {
9245          "description": "List of services",
9246          "items": {
9247            "$ref": "#/definitions/io.k8s.api.core.v1.Service"
9248          },
9249          "type": "array"
9250        },
9251        "kind": {
9252          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
9253          "type": "string"
9254        },
9255        "metadata": {
9256          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
9257          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds"
9258        }
9259      },
9260      "required": [
9261        "items"
9262      ],
9263      "type": "object",
9264      "x-kubernetes-group-version-kind": [
9265        {
9266          "group": "",
9267          "kind": "ServiceList",
9268          "version": "v1"
9269        }
9270      ]
9271    },
9272    "io.k8s.api.core.v1.ServicePort": {
9273      "description": "ServicePort contains information on service's port.",
9274      "properties": {
9275        "appProtocol": {
9276          "description": "The application protocol for this port. This field follows standard Kubernetes label syntax. Un-prefixed names are reserved for IANA standard service names (as per RFC-6335 and http://www.iana.org/assignments/service-names). Non-standard protocols should use prefixed names such as mycompany.com/my-custom-protocol.",
9277          "type": "string"
9278        },
9279        "name": {
9280          "description": "The name of this port within the service. This must be a DNS_LABEL. All ports within a ServiceSpec must have unique names. When considering the endpoints for a Service, this must match the 'name' field in the EndpointPort. Optional if only one ServicePort is defined on this service.",
9281          "type": "string"
9282        },
9283        "nodePort": {
9284          "description": "The port on each node on which this service is exposed when type is NodePort or LoadBalancer.  Usually assigned by the system. If a value is specified, in-range, and not in use it will be used, otherwise the operation will fail.  If not specified, a port will be allocated if this Service requires one.  If this field is specified when creating a Service which does not need it, creation will fail. This field will be wiped when updating a Service to no longer need it (e.g. changing type from NodePort to ClusterIP). More info: https://kubernetes.io/docs/concepts/services-networking/service/#type-nodeport",
9285          "format": "int32",
9286          "type": "integer"
9287        },
9288        "port": {
9289          "description": "The port that will be exposed by this service.",
9290          "format": "int32",
9291          "type": "integer"
9292        },
9293        "protocol": {
9294          "description": "The IP protocol for this port. Supports \"TCP\", \"UDP\", and \"SCTP\". Default is TCP.",
9295          "type": "string"
9296        },
9297        "targetPort": {
9298          "$ref": "#/definitions/io.k8s.apimachinery.pkg.util.intstr.IntOrString",
9299          "description": "Number or name of the port to access on the pods targeted by the service. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. If this is a string, it will be looked up as a named port in the target Pod's container ports. If this is not specified, the value of the 'port' field is used (an identity map). This field is ignored for services with clusterIP=None, and should be omitted or set equal to the 'port' field. More info: https://kubernetes.io/docs/concepts/services-networking/service/#defining-a-service"
9300        }
9301      },
9302      "required": [
9303        "port"
9304      ],
9305      "type": "object"
9306    },
9307    "io.k8s.api.core.v1.ServiceSpec": {
9308      "description": "ServiceSpec describes the attributes that a user creates on a service.",
9309      "properties": {
9310        "allocateLoadBalancerNodePorts": {
9311          "description": "allocateLoadBalancerNodePorts defines if NodePorts will be automatically allocated for services with type LoadBalancer.  Default is \"true\". It may be set to \"false\" if the cluster load-balancer does not rely on NodePorts.  If the caller requests specific NodePorts (by specifying a value), those requests will be respected, regardless of this field. This field may only be set for services with type LoadBalancer and will be cleared if the type is changed to any other type. This field is beta-level and is only honored by servers that enable the ServiceLBNodePortControl feature.",
9312          "type": "boolean"
9313        },
9314        "clusterIP": {
9315          "description": "clusterIP is the IP address of the service and is usually assigned randomly. If an address is specified manually, is in-range (as per system configuration), and is not in use, it will be allocated to the service; otherwise creation of the service will fail. This field may not be changed through updates unless the type field is also being changed to ExternalName (which requires this field to be blank) or the type field is being changed from ExternalName (in which case this field may optionally be specified, as describe above).  Valid values are \"None\", empty string (\"\"), or a valid IP address. Setting this to \"None\" makes a \"headless service\" (no virtual IP), which is useful when direct endpoint connections are preferred and proxying is not required.  Only applies to types ClusterIP, NodePort, and LoadBalancer. If this field is specified when creating a Service of type ExternalName, creation will fail. This field will be wiped when updating a Service to type ExternalName. More info: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies",
9316          "type": "string"
9317        },
9318        "clusterIPs": {
9319          "description": "ClusterIPs is a list of IP addresses assigned to this service, and are usually assigned randomly.  If an address is specified manually, is in-range (as per system configuration), and is not in use, it will be allocated to the service; otherwise creation of the service will fail. This field may not be changed through updates unless the type field is also being changed to ExternalName (which requires this field to be empty) or the type field is being changed from ExternalName (in which case this field may optionally be specified, as describe above).  Valid values are \"None\", empty string (\"\"), or a valid IP address.  Setting this to \"None\" makes a \"headless service\" (no virtual IP), which is useful when direct endpoint connections are preferred and proxying is not required.  Only applies to types ClusterIP, NodePort, and LoadBalancer. If this field is specified when creating a Service of type ExternalName, creation will fail. This field will be wiped when updating a Service to type ExternalName.  If this field is not specified, it will be initialized from the clusterIP field.  If this field is specified, clients must ensure that clusterIPs[0] and clusterIP have the same value.\n\nUnless the \"IPv6DualStack\" feature gate is enabled, this field is limited to one value, which must be the same as the clusterIP field.  If the feature gate is enabled, this field may hold a maximum of two entries (dual-stack IPs, in either order).  These IPs must correspond to the values of the ipFamilies field. Both clusterIPs and ipFamilies are governed by the ipFamilyPolicy field. More info: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies",
9320          "items": {
9321            "type": "string"
9322          },
9323          "type": "array",
9324          "x-kubernetes-list-type": "atomic"
9325        },
9326        "externalIPs": {
9327          "description": "externalIPs is a list of IP addresses for which nodes in the cluster will also accept traffic for this service.  These IPs are not managed by Kubernetes.  The user is responsible for ensuring that traffic arrives at a node with this IP.  A common example is external load-balancers that are not part of the Kubernetes system.",
9328          "items": {
9329            "type": "string"
9330          },
9331          "type": "array"
9332        },
9333        "externalName": {
9334          "description": "externalName is the external reference that discovery mechanisms will return as an alias for this service (e.g. a DNS CNAME record). No proxying will be involved.  Must be a lowercase RFC-1123 hostname (https://tools.ietf.org/html/rfc1123) and requires `type` to be \"ExternalName\".",
9335          "type": "string"
9336        },
9337        "externalTrafficPolicy": {
9338          "description": "externalTrafficPolicy denotes if this Service desires to route external traffic to node-local or cluster-wide endpoints. \"Local\" preserves the client source IP and avoids a second hop for LoadBalancer and Nodeport type services, but risks potentially imbalanced traffic spreading. \"Cluster\" obscures the client source IP and may cause a second hop to another node, but should have good overall load-spreading.",
9339          "type": "string"
9340        },
9341        "healthCheckNodePort": {
9342          "description": "healthCheckNodePort specifies the healthcheck nodePort for the service. This only applies when type is set to LoadBalancer and externalTrafficPolicy is set to Local. If a value is specified, is in-range, and is not in use, it will be used.  If not specified, a value will be automatically allocated.  External systems (e.g. load-balancers) can use this port to determine if a given node holds endpoints for this service or not.  If this field is specified when creating a Service which does not need it, creation will fail. This field will be wiped when updating a Service to no longer need it (e.g. changing type).",
9343          "format": "int32",
9344          "type": "integer"
9345        },
9346        "internalTrafficPolicy": {
9347          "description": "InternalTrafficPolicy specifies if the cluster internal traffic should be routed to all endpoints or node-local endpoints only. \"Cluster\" routes internal traffic to a Service to all endpoints. \"Local\" routes traffic to node-local endpoints only, traffic is dropped if no node-local endpoints are ready. The default value is \"Cluster\".",
9348          "type": "string"
9349        },
9350        "ipFamilies": {
9351          "description": "IPFamilies is a list of IP families (e.g. IPv4, IPv6) assigned to this service, and is gated by the \"IPv6DualStack\" feature gate.  This field is usually assigned automatically based on cluster configuration and the ipFamilyPolicy field. If this field is specified manually, the requested family is available in the cluster, and ipFamilyPolicy allows it, it will be used; otherwise creation of the service will fail.  This field is conditionally mutable: it allows for adding or removing a secondary IP family, but it does not allow changing the primary IP family of the Service.  Valid values are \"IPv4\" and \"IPv6\".  This field only applies to Services of types ClusterIP, NodePort, and LoadBalancer, and does apply to \"headless\" services.  This field will be wiped when updating a Service to type ExternalName.\n\nThis field may hold a maximum of two entries (dual-stack families, in either order).  These families must correspond to the values of the clusterIPs field, if specified. Both clusterIPs and ipFamilies are governed by the ipFamilyPolicy field.",
9352          "items": {
9353            "type": "string"
9354          },
9355          "type": "array",
9356          "x-kubernetes-list-type": "atomic"
9357        },
9358        "ipFamilyPolicy": {
9359          "description": "IPFamilyPolicy represents the dual-stack-ness requested or required by this Service, and is gated by the \"IPv6DualStack\" feature gate.  If there is no value provided, then this field will be set to SingleStack. Services can be \"SingleStack\" (a single IP family), \"PreferDualStack\" (two IP families on dual-stack configured clusters or a single IP family on single-stack clusters), or \"RequireDualStack\" (two IP families on dual-stack configured clusters, otherwise fail). The ipFamilies and clusterIPs fields depend on the value of this field.  This field will be wiped when updating a service to type ExternalName.",
9360          "type": "string"
9361        },
9362        "loadBalancerClass": {
9363          "description": "loadBalancerClass is the class of the load balancer implementation this Service belongs to. If specified, the value of this field must be a label-style identifier, with an optional prefix, e.g. \"internal-vip\" or \"example.com/internal-vip\". Unprefixed names are reserved for end-users. This field can only be set when the Service type is 'LoadBalancer'. If not set, the default load balancer implementation is used, today this is typically done through the cloud provider integration, but should apply for any default implementation. If set, it is assumed that a load balancer implementation is watching for Services with a matching class. Any default load balancer implementation (e.g. cloud providers) should ignore Services that set this field. This field can only be set when creating or updating a Service to type 'LoadBalancer'. Once set, it can not be changed. This field will be wiped when a service is updated to a non 'LoadBalancer' type.",
9364          "type": "string"
9365        },
9366        "loadBalancerIP": {
9367          "description": "Only applies to Service Type: LoadBalancer LoadBalancer will get created with the IP specified in this field. This feature depends on whether the underlying cloud-provider supports specifying the loadBalancerIP when a load balancer is created. This field will be ignored if the cloud-provider does not support the feature.",
9368          "type": "string"
9369        },
9370        "loadBalancerSourceRanges": {
9371          "description": "If specified and supported by the platform, this will restrict traffic through the cloud-provider load-balancer will be restricted to the specified client IPs. This field will be ignored if the cloud-provider does not support the feature.\" More info: https://kubernetes.io/docs/tasks/access-application-cluster/create-external-load-balancer/",
9372          "items": {
9373            "type": "string"
9374          },
9375          "type": "array"
9376        },
9377        "ports": {
9378          "description": "The list of ports that are exposed by this service. More info: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies",
9379          "items": {
9380            "$ref": "#/definitions/io.k8s.api.core.v1.ServicePort"
9381          },
9382          "type": "array",
9383          "x-kubernetes-list-map-keys": [
9384            "port",
9385            "protocol"
9386          ],
9387          "x-kubernetes-list-type": "map",
9388          "x-kubernetes-patch-merge-key": "port",
9389          "x-kubernetes-patch-strategy": "merge"
9390        },
9391        "publishNotReadyAddresses": {
9392          "description": "publishNotReadyAddresses indicates that any agent which deals with endpoints for this Service should disregard any indications of ready/not-ready. The primary use case for setting this field is for a StatefulSet's Headless Service to propagate SRV DNS records for its Pods for the purpose of peer discovery. The Kubernetes controllers that generate Endpoints and EndpointSlice resources for Services interpret this to mean that all endpoints are considered \"ready\" even if the Pods themselves are not. Agents which consume only Kubernetes generated endpoints through the Endpoints or EndpointSlice resources can safely assume this behavior.",
9393          "type": "boolean"
9394        },
9395        "selector": {
9396          "additionalProperties": {
9397            "type": "string"
9398          },
9399          "description": "Route service traffic to pods with label keys and values matching this selector. If empty or not present, the service is assumed to have an external process managing its endpoints, which Kubernetes will not modify. Only applies to types ClusterIP, NodePort, and LoadBalancer. Ignored if type is ExternalName. More info: https://kubernetes.io/docs/concepts/services-networking/service/",
9400          "type": "object",
9401          "x-kubernetes-map-type": "atomic"
9402        },
9403        "sessionAffinity": {
9404          "description": "Supports \"ClientIP\" and \"None\". Used to maintain session affinity. Enable client IP based session affinity. Must be ClientIP or None. Defaults to None. More info: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies",
9405          "type": "string"
9406        },
9407        "sessionAffinityConfig": {
9408          "$ref": "#/definitions/io.k8s.api.core.v1.SessionAffinityConfig",
9409          "description": "sessionAffinityConfig contains the configurations of session affinity."
9410        },
9411        "type": {
9412          "description": "type determines how the Service is exposed. Defaults to ClusterIP. Valid options are ExternalName, ClusterIP, NodePort, and LoadBalancer. \"ClusterIP\" allocates a cluster-internal IP address for load-balancing to endpoints. Endpoints are determined by the selector or if that is not specified, by manual construction of an Endpoints object or EndpointSlice objects. If clusterIP is \"None\", no virtual IP is allocated and the endpoints are published as a set of endpoints rather than a virtual IP. \"NodePort\" builds on ClusterIP and allocates a port on every node which routes to the same endpoints as the clusterIP. \"LoadBalancer\" builds on NodePort and creates an external load-balancer (if supported in the current cloud) which routes to the same endpoints as the clusterIP. \"ExternalName\" aliases this service to the specified externalName. Several other fields do not apply to ExternalName services. More info: https://kubernetes.io/docs/concepts/services-networking/service/#publishing-services-service-types",
9413          "type": "string"
9414        }
9415      },
9416      "type": "object"
9417    },
9418    "io.k8s.api.core.v1.ServiceStatus": {
9419      "description": "ServiceStatus represents the current status of a service.",
9420      "properties": {
9421        "conditions": {
9422          "description": "Current service state",
9423          "items": {
9424            "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Condition"
9425          },
9426          "type": "array",
9427          "x-kubernetes-list-map-keys": [
9428            "type"
9429          ],
9430          "x-kubernetes-list-type": "map",
9431          "x-kubernetes-patch-merge-key": "type",
9432          "x-kubernetes-patch-strategy": "merge"
9433        },
9434        "loadBalancer": {
9435          "$ref": "#/definitions/io.k8s.api.core.v1.LoadBalancerStatus",
9436          "description": "LoadBalancer contains the current status of the load-balancer, if one is present."
9437        }
9438      },
9439      "type": "object"
9440    },
9441    "io.k8s.api.core.v1.SessionAffinityConfig": {
9442      "description": "SessionAffinityConfig represents the configurations of session affinity.",
9443      "properties": {
9444        "clientIP": {
9445          "$ref": "#/definitions/io.k8s.api.core.v1.ClientIPConfig",
9446          "description": "clientIP contains the configurations of Client IP based session affinity."
9447        }
9448      },
9449      "type": "object"
9450    },
9451    "io.k8s.api.core.v1.StorageOSPersistentVolumeSource": {
9452      "description": "Represents a StorageOS persistent volume resource.",
9453      "properties": {
9454        "fsType": {
9455          "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.",
9456          "type": "string"
9457        },
9458        "readOnly": {
9459          "description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
9460          "type": "boolean"
9461        },
9462        "secretRef": {
9463          "$ref": "#/definitions/io.k8s.api.core.v1.ObjectReference",
9464          "description": "SecretRef specifies the secret to use for obtaining the StorageOS API credentials.  If not specified, default values will be attempted."
9465        },
9466        "volumeName": {
9467          "description": "VolumeName is the human-readable name of the StorageOS volume.  Volume names are only unique within a namespace.",
9468          "type": "string"
9469        },
9470        "volumeNamespace": {
9471          "description": "VolumeNamespace specifies the scope of the volume within StorageOS.  If no namespace is specified then the Pod's namespace will be used.  This allows the Kubernetes name scoping to be mirrored within StorageOS for tighter integration. Set VolumeName to any name to override the default behaviour. Set to \"default\" if you are not using namespaces within StorageOS. Namespaces that do not pre-exist within StorageOS will be created.",
9472          "type": "string"
9473        }
9474      },
9475      "type": "object"
9476    },
9477    "io.k8s.api.core.v1.StorageOSVolumeSource": {
9478      "description": "Represents a StorageOS persistent volume resource.",
9479      "properties": {
9480        "fsType": {
9481          "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.",
9482          "type": "string"
9483        },
9484        "readOnly": {
9485          "description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
9486          "type": "boolean"
9487        },
9488        "secretRef": {
9489          "$ref": "#/definitions/io.k8s.api.core.v1.LocalObjectReference",
9490          "description": "SecretRef specifies the secret to use for obtaining the StorageOS API credentials.  If not specified, default values will be attempted."
9491        },
9492        "volumeName": {
9493          "description": "VolumeName is the human-readable name of the StorageOS volume.  Volume names are only unique within a namespace.",
9494          "type": "string"
9495        },
9496        "volumeNamespace": {
9497          "description": "VolumeNamespace specifies the scope of the volume within StorageOS.  If no namespace is specified then the Pod's namespace will be used.  This allows the Kubernetes name scoping to be mirrored within StorageOS for tighter integration. Set VolumeName to any name to override the default behaviour. Set to \"default\" if you are not using namespaces within StorageOS. Namespaces that do not pre-exist within StorageOS will be created.",
9498          "type": "string"
9499        }
9500      },
9501      "type": "object"
9502    },
9503    "io.k8s.api.core.v1.Sysctl": {
9504      "description": "Sysctl defines a kernel parameter to be set",
9505      "properties": {
9506        "name": {
9507          "description": "Name of a property to set",
9508          "type": "string"
9509        },
9510        "value": {
9511          "description": "Value of a property to set",
9512          "type": "string"
9513        }
9514      },
9515      "required": [
9516        "name",
9517        "value"
9518      ],
9519      "type": "object"
9520    },
9521    "io.k8s.api.core.v1.TCPSocketAction": {
9522      "description": "TCPSocketAction describes an action based on opening a socket",
9523      "properties": {
9524        "host": {
9525          "description": "Optional: Host name to connect to, defaults to the pod IP.",
9526          "type": "string"
9527        },
9528        "port": {
9529          "$ref": "#/definitions/io.k8s.apimachinery.pkg.util.intstr.IntOrString",
9530          "description": "Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME."
9531        }
9532      },
9533      "required": [
9534        "port"
9535      ],
9536      "type": "object"
9537    },
9538    "io.k8s.api.core.v1.Taint": {
9539      "description": "The node this Taint is attached to has the \"effect\" on any pod that does not tolerate the Taint.",
9540      "properties": {
9541        "effect": {
9542          "description": "Required. The effect of the taint on pods that do not tolerate the taint. Valid effects are NoSchedule, PreferNoSchedule and NoExecute.",
9543          "type": "string"
9544        },
9545        "key": {
9546          "description": "Required. The taint key to be applied to a node.",
9547          "type": "string"
9548        },
9549        "timeAdded": {
9550          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
9551          "description": "TimeAdded represents the time at which the taint was added. It is only written for NoExecute taints."
9552        },
9553        "value": {
9554          "description": "The taint value corresponding to the taint key.",
9555          "type": "string"
9556        }
9557      },
9558      "required": [
9559        "key",
9560        "effect"
9561      ],
9562      "type": "object"
9563    },
9564    "io.k8s.api.core.v1.Toleration": {
9565      "description": "The pod this Toleration is attached to tolerates any taint that matches the triple <key,value,effect> using the matching operator <operator>.",
9566      "properties": {
9567        "effect": {
9568          "description": "Effect indicates the taint effect to match. Empty means match all taint effects. When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute.",
9569          "type": "string"
9570        },
9571        "key": {
9572          "description": "Key is the taint key that the toleration applies to. Empty means match all taint keys. If the key is empty, operator must be Exists; this combination means to match all values and all keys.",
9573          "type": "string"
9574        },
9575        "operator": {
9576          "description": "Operator represents a key's relationship to the value. Valid operators are Exists and Equal. Defaults to Equal. Exists is equivalent to wildcard for value, so that a pod can tolerate all taints of a particular category.",
9577          "type": "string"
9578        },
9579        "tolerationSeconds": {
9580          "description": "TolerationSeconds represents the period of time the toleration (which must be of effect NoExecute, otherwise this field is ignored) tolerates the taint. By default, it is not set, which means tolerate the taint forever (do not evict). Zero and negative values will be treated as 0 (evict immediately) by the system.",
9581          "format": "int64",
9582          "type": "integer"
9583        },
9584        "value": {
9585          "description": "Value is the taint value the toleration matches to. If the operator is Exists, the value should be empty, otherwise just a regular string.",
9586          "type": "string"
9587        }
9588      },
9589      "type": "object"
9590    },
9591    "io.k8s.api.core.v1.TopologySelectorLabelRequirement": {
9592      "description": "A topology selector requirement is a selector that matches given label. This is an alpha feature and may change in the future.",
9593      "properties": {
9594        "key": {
9595          "description": "The label key that the selector applies to.",
9596          "type": "string"
9597        },
9598        "values": {
9599          "description": "An array of string values. One value must match the label to be selected. Each entry in Values is ORed.",
9600          "items": {
9601            "type": "string"
9602          },
9603          "type": "array"
9604        }
9605      },
9606      "required": [
9607        "key",
9608        "values"
9609      ],
9610      "type": "object"
9611    },
9612    "io.k8s.api.core.v1.TopologySelectorTerm": {
9613      "description": "A topology selector term represents the result of label queries. A null or empty topology selector term matches no objects. The requirements of them are ANDed. It provides a subset of functionality as NodeSelectorTerm. This is an alpha feature and may change in the future.",
9614      "properties": {
9615        "matchLabelExpressions": {
9616          "description": "A list of topology selector requirements by labels.",
9617          "items": {
9618            "$ref": "#/definitions/io.k8s.api.core.v1.TopologySelectorLabelRequirement"
9619          },
9620          "type": "array"
9621        }
9622      },
9623      "type": "object",
9624      "x-kubernetes-map-type": "atomic"
9625    },
9626    "io.k8s.api.core.v1.TopologySpreadConstraint": {
9627      "description": "TopologySpreadConstraint specifies how to spread matching pods among the given topology.",
9628      "properties": {
9629        "labelSelector": {
9630          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector",
9631          "description": "LabelSelector is used to find matching pods. Pods that match this label selector are counted to determine the number of pods in their corresponding topology domain."
9632        },
9633        "maxSkew": {
9634          "description": "MaxSkew describes the degree to which pods may be unevenly distributed. When `whenUnsatisfiable=DoNotSchedule`, it is the maximum permitted difference between the number of matching pods in the target topology and the global minimum. For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 1/1/0: | zone1 | zone2 | zone3 | |   P   |   P   |       | - if MaxSkew is 1, incoming pod can only be scheduled to zone3 to become 1/1/1; scheduling it onto zone1(zone2) would make the ActualSkew(2-0) on zone1(zone2) violate MaxSkew(1). - if MaxSkew is 2, incoming pod can be scheduled onto any zone. When `whenUnsatisfiable=ScheduleAnyway`, it is used to give higher precedence to topologies that satisfy it. It's a required field. Default value is 1 and 0 is not allowed.",
9635          "format": "int32",
9636          "type": "integer"
9637        },
9638        "topologyKey": {
9639          "description": "TopologyKey is the key of node labels. Nodes that have a label with this key and identical values are considered to be in the same topology. We consider each <key, value> as a \"bucket\", and try to put balanced number of pods into each bucket. It's a required field.",
9640          "type": "string"
9641        },
9642        "whenUnsatisfiable": {
9643          "description": "WhenUnsatisfiable indicates how to deal with a pod if it doesn't satisfy the spread constraint. - DoNotSchedule (default) tells the scheduler not to schedule it. - ScheduleAnyway tells the scheduler to schedule the pod in any location,\n  but giving higher precedence to topologies that would help reduce the\n  skew.\nA constraint is considered \"Unsatisfiable\" for an incoming pod if and only if every possible node assigment for that pod would violate \"MaxSkew\" on some topology. For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 3/1/1: | zone1 | zone2 | zone3 | | P P P |   P   |   P   | If WhenUnsatisfiable is set to DoNotSchedule, incoming pod can only be scheduled to zone2(zone3) to become 3/2/1(3/1/2) as ActualSkew(2-1) on zone2(zone3) satisfies MaxSkew(1). In other words, the cluster can still be imbalanced, but scheduler won't make it *more* imbalanced. It's a required field.",
9644          "type": "string"
9645        }
9646      },
9647      "required": [
9648        "maxSkew",
9649        "topologyKey",
9650        "whenUnsatisfiable"
9651      ],
9652      "type": "object"
9653    },
9654    "io.k8s.api.core.v1.TypedLocalObjectReference": {
9655      "description": "TypedLocalObjectReference contains enough information to let you locate the typed referenced object inside the same namespace.",
9656      "properties": {
9657        "apiGroup": {
9658          "description": "APIGroup is the group for the resource being referenced. If APIGroup is not specified, the specified Kind must be in the core API group. For any other third-party types, APIGroup is required.",
9659          "type": "string"
9660        },
9661        "kind": {
9662          "description": "Kind is the type of resource being referenced",
9663          "type": "string"
9664        },
9665        "name": {
9666          "description": "Name is the name of resource being referenced",
9667          "type": "string"
9668        }
9669      },
9670      "required": [
9671        "kind",
9672        "name"
9673      ],
9674      "type": "object",
9675      "x-kubernetes-map-type": "atomic"
9676    },
9677    "io.k8s.api.core.v1.Volume": {
9678      "description": "Volume represents a named volume in a pod that may be accessed by any container in the pod.",
9679      "properties": {
9680        "awsElasticBlockStore": {
9681          "$ref": "#/definitions/io.k8s.api.core.v1.AWSElasticBlockStoreVolumeSource",
9682          "description": "AWSElasticBlockStore represents an AWS Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore"
9683        },
9684        "azureDisk": {
9685          "$ref": "#/definitions/io.k8s.api.core.v1.AzureDiskVolumeSource",
9686          "description": "AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod."
9687        },
9688        "azureFile": {
9689          "$ref": "#/definitions/io.k8s.api.core.v1.AzureFileVolumeSource",
9690          "description": "AzureFile represents an Azure File Service mount on the host and bind mount to the pod."
9691        },
9692        "cephfs": {
9693          "$ref": "#/definitions/io.k8s.api.core.v1.CephFSVolumeSource",
9694          "description": "CephFS represents a Ceph FS mount on the host that shares a pod's lifetime"
9695        },
9696        "cinder": {
9697          "$ref": "#/definitions/io.k8s.api.core.v1.CinderVolumeSource",
9698          "description": "Cinder represents a cinder volume attached and mounted on kubelets host machine. More info: https://examples.k8s.io/mysql-cinder-pd/README.md"
9699        },
9700        "configMap": {
9701          "$ref": "#/definitions/io.k8s.api.core.v1.ConfigMapVolumeSource",
9702          "description": "ConfigMap represents a configMap that should populate this volume"
9703        },
9704        "csi": {
9705          "$ref": "#/definitions/io.k8s.api.core.v1.CSIVolumeSource",
9706          "description": "CSI (Container Storage Interface) represents ephemeral storage that is handled by certain external CSI drivers (Beta feature)."
9707        },
9708        "downwardAPI": {
9709          "$ref": "#/definitions/io.k8s.api.core.v1.DownwardAPIVolumeSource",
9710          "description": "DownwardAPI represents downward API about the pod that should populate this volume"
9711        },
9712        "emptyDir": {
9713          "$ref": "#/definitions/io.k8s.api.core.v1.EmptyDirVolumeSource",
9714          "description": "EmptyDir represents a temporary directory that shares a pod's lifetime. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir"
9715        },
9716        "ephemeral": {
9717          "$ref": "#/definitions/io.k8s.api.core.v1.EphemeralVolumeSource",
9718          "description": "Ephemeral represents a volume that is handled by a cluster storage driver. The volume's lifecycle is tied to the pod that defines it - it will be created before the pod starts, and deleted when the pod is removed.\n\nUse this if: a) the volume is only needed while the pod runs, b) features of normal volumes like restoring from snapshot or capacity\n   tracking are needed,\nc) the storage driver is specified through a storage class, and d) the storage driver supports dynamic volume provisioning through\n   a PersistentVolumeClaim (see EphemeralVolumeSource for more\n   information on the connection between this volume type\n   and PersistentVolumeClaim).\n\nUse PersistentVolumeClaim or one of the vendor-specific APIs for volumes that persist for longer than the lifecycle of an individual pod.\n\nUse CSI for light-weight local ephemeral volumes if the CSI driver is meant to be used that way - see the documentation of the driver for more information.\n\nA pod can use both types of ephemeral volumes and persistent volumes at the same time.\n\nThis is a beta feature and only available when the GenericEphemeralVolume feature gate is enabled."
9719        },
9720        "fc": {
9721          "$ref": "#/definitions/io.k8s.api.core.v1.FCVolumeSource",
9722          "description": "FC represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod."
9723        },
9724        "flexVolume": {
9725          "$ref": "#/definitions/io.k8s.api.core.v1.FlexVolumeSource",
9726          "description": "FlexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin."
9727        },
9728        "flocker": {
9729          "$ref": "#/definitions/io.k8s.api.core.v1.FlockerVolumeSource",
9730          "description": "Flocker represents a Flocker volume attached to a kubelet's host machine. This depends on the Flocker control service being running"
9731        },
9732        "gcePersistentDisk": {
9733          "$ref": "#/definitions/io.k8s.api.core.v1.GCEPersistentDiskVolumeSource",
9734          "description": "GCEPersistentDisk represents a GCE Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk"
9735        },
9736        "gitRepo": {
9737          "$ref": "#/definitions/io.k8s.api.core.v1.GitRepoVolumeSource",
9738          "description": "GitRepo represents a git repository at a particular revision. DEPRECATED: GitRepo is deprecated. To provision a container with a git repo, mount an EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir into the Pod's container."
9739        },
9740        "glusterfs": {
9741          "$ref": "#/definitions/io.k8s.api.core.v1.GlusterfsVolumeSource",
9742          "description": "Glusterfs represents a Glusterfs mount on the host that shares a pod's lifetime. More info: https://examples.k8s.io/volumes/glusterfs/README.md"
9743        },
9744        "hostPath": {
9745          "$ref": "#/definitions/io.k8s.api.core.v1.HostPathVolumeSource",
9746          "description": "HostPath represents a pre-existing file or directory on the host machine that is directly exposed to the container. This is generally used for system agents or other privileged things that are allowed to see the host machine. Most containers will NOT need this. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath"
9747        },
9748        "iscsi": {
9749          "$ref": "#/definitions/io.k8s.api.core.v1.ISCSIVolumeSource",
9750          "description": "ISCSI represents an ISCSI Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://examples.k8s.io/volumes/iscsi/README.md"
9751        },
9752        "name": {
9753          "description": "Volume's name. Must be a DNS_LABEL and unique within the pod. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
9754          "type": "string"
9755        },
9756        "nfs": {
9757          "$ref": "#/definitions/io.k8s.api.core.v1.NFSVolumeSource",
9758          "description": "NFS represents an NFS mount on the host that shares a pod's lifetime More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs"
9759        },
9760        "persistentVolumeClaim": {
9761          "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaimVolumeSource",
9762          "description": "PersistentVolumeClaimVolumeSource represents a reference to a PersistentVolumeClaim in the same namespace. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims"
9763        },
9764        "photonPersistentDisk": {
9765          "$ref": "#/definitions/io.k8s.api.core.v1.PhotonPersistentDiskVolumeSource",
9766          "description": "PhotonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine"
9767        },
9768        "portworxVolume": {
9769          "$ref": "#/definitions/io.k8s.api.core.v1.PortworxVolumeSource",
9770          "description": "PortworxVolume represents a portworx volume attached and mounted on kubelets host machine"
9771        },
9772        "projected": {
9773          "$ref": "#/definitions/io.k8s.api.core.v1.ProjectedVolumeSource",
9774          "description": "Items for all in one resources secrets, configmaps, and downward API"
9775        },
9776        "quobyte": {
9777          "$ref": "#/definitions/io.k8s.api.core.v1.QuobyteVolumeSource",
9778          "description": "Quobyte represents a Quobyte mount on the host that shares a pod's lifetime"
9779        },
9780        "rbd": {
9781          "$ref": "#/definitions/io.k8s.api.core.v1.RBDVolumeSource",
9782          "description": "RBD represents a Rados Block Device mount on the host that shares a pod's lifetime. More info: https://examples.k8s.io/volumes/rbd/README.md"
9783        },
9784        "scaleIO": {
9785          "$ref": "#/definitions/io.k8s.api.core.v1.ScaleIOVolumeSource",
9786          "description": "ScaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes."
9787        },
9788        "secret": {
9789          "$ref": "#/definitions/io.k8s.api.core.v1.SecretVolumeSource",
9790          "description": "Secret represents a secret that should populate this volume. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret"
9791        },
9792        "storageos": {
9793          "$ref": "#/definitions/io.k8s.api.core.v1.StorageOSVolumeSource",
9794          "description": "StorageOS represents a StorageOS volume attached and mounted on Kubernetes nodes."
9795        },
9796        "vsphereVolume": {
9797          "$ref": "#/definitions/io.k8s.api.core.v1.VsphereVirtualDiskVolumeSource",
9798          "description": "VsphereVolume represents a vSphere volume attached and mounted on kubelets host machine"
9799        }
9800      },
9801      "required": [
9802        "name"
9803      ],
9804      "type": "object"
9805    },
9806    "io.k8s.api.core.v1.VolumeDevice": {
9807      "description": "volumeDevice describes a mapping of a raw block device within a container.",
9808      "properties": {
9809        "devicePath": {
9810          "description": "devicePath is the path inside of the container that the device will be mapped to.",
9811          "type": "string"
9812        },
9813        "name": {
9814          "description": "name must match the name of a persistentVolumeClaim in the pod",
9815          "type": "string"
9816        }
9817      },
9818      "required": [
9819        "name",
9820        "devicePath"
9821      ],
9822      "type": "object"
9823    },
9824    "io.k8s.api.core.v1.VolumeMount": {
9825      "description": "VolumeMount describes a mounting of a Volume within a container.",
9826      "properties": {
9827        "mountPath": {
9828          "description": "Path within the container at which the volume should be mounted.  Must not contain ':'.",
9829          "type": "string"
9830        },
9831        "mountPropagation": {
9832          "description": "mountPropagation determines how mounts are propagated from the host to container and the other way around. When not set, MountPropagationNone is used. This field is beta in 1.10.",
9833          "type": "string"
9834        },
9835        "name": {
9836          "description": "This must match the Name of a Volume.",
9837          "type": "string"
9838        },
9839        "readOnly": {
9840          "description": "Mounted read-only if true, read-write otherwise (false or unspecified). Defaults to false.",
9841          "type": "boolean"
9842        },
9843        "subPath": {
9844          "description": "Path within the volume from which the container's volume should be mounted. Defaults to \"\" (volume's root).",
9845          "type": "string"
9846        },
9847        "subPathExpr": {
9848          "description": "Expanded path within the volume from which the container's volume should be mounted. Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container's environment. Defaults to \"\" (volume's root). SubPathExpr and SubPath are mutually exclusive.",
9849          "type": "string"
9850        }
9851      },
9852      "required": [
9853        "name",
9854        "mountPath"
9855      ],
9856      "type": "object"
9857    },
9858    "io.k8s.api.core.v1.VolumeNodeAffinity": {
9859      "description": "VolumeNodeAffinity defines constraints that limit what nodes this volume can be accessed from.",
9860      "properties": {
9861        "required": {
9862          "$ref": "#/definitions/io.k8s.api.core.v1.NodeSelector",
9863          "description": "Required specifies hard node constraints that must be met."
9864        }
9865      },
9866      "type": "object"
9867    },
9868    "io.k8s.api.core.v1.VolumeProjection": {
9869      "description": "Projection that may be projected along with other supported volume types",
9870      "properties": {
9871        "configMap": {
9872          "$ref": "#/definitions/io.k8s.api.core.v1.ConfigMapProjection",
9873          "description": "information about the configMap data to project"
9874        },
9875        "downwardAPI": {
9876          "$ref": "#/definitions/io.k8s.api.core.v1.DownwardAPIProjection",
9877          "description": "information about the downwardAPI data to project"
9878        },
9879        "secret": {
9880          "$ref": "#/definitions/io.k8s.api.core.v1.SecretProjection",
9881          "description": "information about the secret data to project"
9882        },
9883        "serviceAccountToken": {
9884          "$ref": "#/definitions/io.k8s.api.core.v1.ServiceAccountTokenProjection",
9885          "description": "information about the serviceAccountToken data to project"
9886        }
9887      },
9888      "type": "object"
9889    },
9890    "io.k8s.api.core.v1.VsphereVirtualDiskVolumeSource": {
9891      "description": "Represents a vSphere volume resource.",
9892      "properties": {
9893        "fsType": {
9894          "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.",
9895          "type": "string"
9896        },
9897        "storagePolicyID": {
9898          "description": "Storage Policy Based Management (SPBM) profile ID associated with the StoragePolicyName.",
9899          "type": "string"
9900        },
9901        "storagePolicyName": {
9902          "description": "Storage Policy Based Management (SPBM) profile name.",
9903          "type": "string"
9904        },
9905        "volumePath": {
9906          "description": "Path that identifies vSphere volume vmdk",
9907          "type": "string"
9908        }
9909      },
9910      "required": [
9911        "volumePath"
9912      ],
9913      "type": "object"
9914    },
9915    "io.k8s.api.core.v1.WeightedPodAffinityTerm": {
9916      "description": "The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)",
9917      "properties": {
9918        "podAffinityTerm": {
9919          "$ref": "#/definitions/io.k8s.api.core.v1.PodAffinityTerm",
9920          "description": "Required. A pod affinity term, associated with the corresponding weight."
9921        },
9922        "weight": {
9923          "description": "weight associated with matching the corresponding podAffinityTerm, in the range 1-100.",
9924          "format": "int32",
9925          "type": "integer"
9926        }
9927      },
9928      "required": [
9929        "weight",
9930        "podAffinityTerm"
9931      ],
9932      "type": "object"
9933    },
9934    "io.k8s.api.core.v1.WindowsSecurityContextOptions": {
9935      "description": "WindowsSecurityContextOptions contain Windows-specific options and credentials.",
9936      "properties": {
9937        "gmsaCredentialSpec": {
9938          "description": "GMSACredentialSpec is where the GMSA admission webhook (https://github.com/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field.",
9939          "type": "string"
9940        },
9941        "gmsaCredentialSpecName": {
9942          "description": "GMSACredentialSpecName is the name of the GMSA credential spec to use.",
9943          "type": "string"
9944        },
9945        "hostProcess": {
9946          "description": "HostProcess determines if a container should be run as a 'Host Process' container. This field is alpha-level and will only be honored by components that enable the WindowsHostProcessContainers feature flag. Setting this field without the feature flag will result in errors when validating the Pod. All of a Pod's containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers).  In addition, if HostProcess is true then HostNetwork must also be set to true.",
9947          "type": "boolean"
9948        },
9949        "runAsUserName": {
9950          "description": "The UserName in Windows to run the entrypoint of the container process. Defaults to the user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.",
9951          "type": "string"
9952        }
9953      },
9954      "type": "object"
9955    },
9956    "io.k8s.api.discovery.v1.Endpoint": {
9957      "description": "Endpoint represents a single logical \"backend\" implementing a service.",
9958      "properties": {
9959        "addresses": {
9960          "description": "addresses of this endpoint. The contents of this field are interpreted according to the corresponding EndpointSlice addressType field. Consumers must handle different types of addresses in the context of their own capabilities. This must contain at least one address but no more than 100.",
9961          "items": {
9962            "type": "string"
9963          },
9964          "type": "array",
9965          "x-kubernetes-list-type": "set"
9966        },
9967        "conditions": {
9968          "$ref": "#/definitions/io.k8s.api.discovery.v1.EndpointConditions",
9969          "description": "conditions contains information about the current status of the endpoint."
9970        },
9971        "deprecatedTopology": {
9972          "additionalProperties": {
9973            "type": "string"
9974          },
9975          "description": "deprecatedTopology contains topology information part of the v1beta1 API. This field is deprecated, and will be removed when the v1beta1 API is removed (no sooner than kubernetes v1.24).  While this field can hold values, it is not writable through the v1 API, and any attempts to write to it will be silently ignored. Topology information can be found in the zone and nodeName fields instead.",
9976          "type": "object"
9977        },
9978        "hints": {
9979          "$ref": "#/definitions/io.k8s.api.discovery.v1.EndpointHints",
9980          "description": "hints contains information associated with how an endpoint should be consumed."
9981        },
9982        "hostname": {
9983          "description": "hostname of this endpoint. This field may be used by consumers of endpoints to distinguish endpoints from each other (e.g. in DNS names). Multiple endpoints which use the same hostname should be considered fungible (e.g. multiple A values in DNS). Must be lowercase and pass DNS Label (RFC 1123) validation.",
9984          "type": "string"
9985        },
9986        "nodeName": {
9987          "description": "nodeName represents the name of the Node hosting this endpoint. This can be used to determine endpoints local to a Node. This field can be enabled with the EndpointSliceNodeName feature gate.",
9988          "type": "string"
9989        },
9990        "targetRef": {
9991          "$ref": "#/definitions/io.k8s.api.core.v1.ObjectReference",
9992          "description": "targetRef is a reference to a Kubernetes object that represents this endpoint."
9993        },
9994        "zone": {
9995          "description": "zone is the name of the Zone this endpoint exists in.",
9996          "type": "string"
9997        }
9998      },
9999      "required": [
10000        "addresses"
10001      ],
10002      "type": "object"
10003    },
10004    "io.k8s.api.discovery.v1.EndpointConditions": {
10005      "description": "EndpointConditions represents the current condition of an endpoint.",
10006      "properties": {
10007        "ready": {
10008          "description": "ready indicates that this endpoint is prepared to receive traffic, according to whatever system is managing the endpoint. A nil value indicates an unknown state. In most cases consumers should interpret this unknown state as ready. For compatibility reasons, ready should never be \"true\" for terminating endpoints.",
10009          "type": "boolean"
10010        },
10011        "serving": {
10012          "description": "serving is identical to ready except that it is set regardless of the terminating state of endpoints. This condition should be set to true for a ready endpoint that is terminating. If nil, consumers should defer to the ready condition. This field can be enabled with the EndpointSliceTerminatingCondition feature gate.",
10013          "type": "boolean"
10014        },
10015        "terminating": {
10016          "description": "terminating indicates that this endpoint is terminating. A nil value indicates an unknown state. Consumers should interpret this unknown state to mean that the endpoint is not terminating. This field can be enabled with the EndpointSliceTerminatingCondition feature gate.",
10017          "type": "boolean"
10018        }
10019      },
10020      "type": "object"
10021    },
10022    "io.k8s.api.discovery.v1.EndpointHints": {
10023      "description": "EndpointHints provides hints describing how an endpoint should be consumed.",
10024      "properties": {
10025        "forZones": {
10026          "description": "forZones indicates the zone(s) this endpoint should be consumed by to enable topology aware routing.",
10027          "items": {
10028            "$ref": "#/definitions/io.k8s.api.discovery.v1.ForZone"
10029          },
10030          "type": "array",
10031          "x-kubernetes-list-type": "atomic"
10032        }
10033      },
10034      "type": "object"
10035    },
10036    "io.k8s.api.discovery.v1.EndpointPort": {
10037      "description": "EndpointPort represents a Port used by an EndpointSlice",
10038      "properties": {
10039        "appProtocol": {
10040          "description": "The application protocol for this port. This field follows standard Kubernetes label syntax. Un-prefixed names are reserved for IANA standard service names (as per RFC-6335 and http://www.iana.org/assignments/service-names). Non-standard protocols should use prefixed names such as mycompany.com/my-custom-protocol.",
10041          "type": "string"
10042        },
10043        "name": {
10044          "description": "The name of this port. All ports in an EndpointSlice must have a unique name. If the EndpointSlice is dervied from a Kubernetes service, this corresponds to the Service.ports[].name. Name must either be an empty string or pass DNS_LABEL validation: * must be no more than 63 characters long. * must consist of lower case alphanumeric characters or '-'. * must start and end with an alphanumeric character. Default is empty string.",
10045          "type": "string"
10046        },
10047        "port": {
10048          "description": "The port number of the endpoint. If this is not specified, ports are not restricted and must be interpreted in the context of the specific consumer.",
10049          "format": "int32",
10050          "type": "integer"
10051        },
10052        "protocol": {
10053          "description": "The IP protocol for this port. Must be UDP, TCP, or SCTP. Default is TCP.",
10054          "type": "string"
10055        }
10056      },
10057      "type": "object",
10058      "x-kubernetes-map-type": "atomic"
10059    },
10060    "io.k8s.api.discovery.v1.EndpointSlice": {
10061      "description": "EndpointSlice represents a subset of the endpoints that implement a service. For a given service there may be multiple EndpointSlice objects, selected by labels, which must be joined to produce the full set of endpoints.",
10062      "properties": {
10063        "addressType": {
10064          "description": "addressType specifies the type of address carried by this EndpointSlice. All addresses in this slice must be the same type. This field is immutable after creation. The following address types are currently supported: * IPv4: Represents an IPv4 Address. * IPv6: Represents an IPv6 Address. * FQDN: Represents a Fully Qualified Domain Name.",
10065          "type": "string"
10066        },
10067        "apiVersion": {
10068          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
10069          "type": "string"
10070        },
10071        "endpoints": {
10072          "description": "endpoints is a list of unique endpoints in this slice. Each slice may include a maximum of 1000 endpoints.",
10073          "items": {
10074            "$ref": "#/definitions/io.k8s.api.discovery.v1.Endpoint"
10075          },
10076          "type": "array",
10077          "x-kubernetes-list-type": "atomic"
10078        },
10079        "kind": {
10080          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
10081          "type": "string"
10082        },
10083        "metadata": {
10084          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
10085          "description": "Standard object's metadata."
10086        },
10087        "ports": {
10088          "description": "ports specifies the list of network ports exposed by each endpoint in this slice. Each port must have a unique name. When ports is empty, it indicates that there are no defined ports. When a port is defined with a nil port value, it indicates \"all ports\". Each slice may include a maximum of 100 ports.",
10089          "items": {
10090            "$ref": "#/definitions/io.k8s.api.discovery.v1.EndpointPort"
10091          },
10092          "type": "array",
10093          "x-kubernetes-list-type": "atomic"
10094        }
10095      },
10096      "required": [
10097        "addressType",
10098        "endpoints"
10099      ],
10100      "type": "object",
10101      "x-kubernetes-group-version-kind": [
10102        {
10103          "group": "discovery.k8s.io",
10104          "kind": "EndpointSlice",
10105          "version": "v1"
10106        }
10107      ]
10108    },
10109    "io.k8s.api.discovery.v1.EndpointSliceList": {
10110      "description": "EndpointSliceList represents a list of endpoint slices",
10111      "properties": {
10112        "apiVersion": {
10113          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
10114          "type": "string"
10115        },
10116        "items": {
10117          "description": "List of endpoint slices",
10118          "items": {
10119            "$ref": "#/definitions/io.k8s.api.discovery.v1.EndpointSlice"
10120          },
10121          "type": "array"
10122        },
10123        "kind": {
10124          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
10125          "type": "string"
10126        },
10127        "metadata": {
10128          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
10129          "description": "Standard list metadata."
10130        }
10131      },
10132      "required": [
10133        "items"
10134      ],
10135      "type": "object",
10136      "x-kubernetes-group-version-kind": [
10137        {
10138          "group": "discovery.k8s.io",
10139          "kind": "EndpointSliceList",
10140          "version": "v1"
10141        }
10142      ]
10143    },
10144    "io.k8s.api.discovery.v1.ForZone": {
10145      "description": "ForZone provides information about which zones should consume this endpoint.",
10146      "properties": {
10147        "name": {
10148          "description": "name represents the name of the zone.",
10149          "type": "string"
10150        }
10151      },
10152      "required": [
10153        "name"
10154      ],
10155      "type": "object"
10156    },
10157    "io.k8s.api.discovery.v1beta1.Endpoint": {
10158      "description": "Endpoint represents a single logical \"backend\" implementing a service.",
10159      "properties": {
10160        "addresses": {
10161          "description": "addresses of this endpoint. The contents of this field are interpreted according to the corresponding EndpointSlice addressType field. Consumers must handle different types of addresses in the context of their own capabilities. This must contain at least one address but no more than 100.",
10162          "items": {
10163            "type": "string"
10164          },
10165          "type": "array",
10166          "x-kubernetes-list-type": "set"
10167        },
10168        "conditions": {
10169          "$ref": "#/definitions/io.k8s.api.discovery.v1beta1.EndpointConditions",
10170          "description": "conditions contains information about the current status of the endpoint."
10171        },
10172        "hints": {
10173          "$ref": "#/definitions/io.k8s.api.discovery.v1beta1.EndpointHints",
10174          "description": "hints contains information associated with how an endpoint should be consumed."
10175        },
10176        "hostname": {
10177          "description": "hostname of this endpoint. This field may be used by consumers of endpoints to distinguish endpoints from each other (e.g. in DNS names). Multiple endpoints which use the same hostname should be considered fungible (e.g. multiple A values in DNS). Must be lowercase and pass DNS Label (RFC 1123) validation.",
10178          "type": "string"
10179        },
10180        "nodeName": {
10181          "description": "nodeName represents the name of the Node hosting this endpoint. This can be used to determine endpoints local to a Node. This field can be enabled with the EndpointSliceNodeName feature gate.",
10182          "type": "string"
10183        },
10184        "targetRef": {
10185          "$ref": "#/definitions/io.k8s.api.core.v1.ObjectReference",
10186          "description": "targetRef is a reference to a Kubernetes object that represents this endpoint."
10187        },
10188        "topology": {
10189          "additionalProperties": {
10190            "type": "string"
10191          },
10192          "description": "topology contains arbitrary topology information associated with the endpoint. These key/value pairs must conform with the label format. https://kubernetes.io/docs/concepts/overview/working-with-objects/labels Topology may include a maximum of 16 key/value pairs. This includes, but is not limited to the following well known keys: * kubernetes.io/hostname: the value indicates the hostname of the node\n  where the endpoint is located. This should match the corresponding\n  node label.\n* topology.kubernetes.io/zone: the value indicates the zone where the\n  endpoint is located. This should match the corresponding node label.\n* topology.kubernetes.io/region: the value indicates the region where the\n  endpoint is located. This should match the corresponding node label.\nThis field is deprecated and will be removed in future api versions.",
10193          "type": "object"
10194        }
10195      },
10196      "required": [
10197        "addresses"
10198      ],
10199      "type": "object"
10200    },
10201    "io.k8s.api.discovery.v1beta1.EndpointConditions": {
10202      "description": "EndpointConditions represents the current condition of an endpoint.",
10203      "properties": {
10204        "ready": {
10205          "description": "ready indicates that this endpoint is prepared to receive traffic, according to whatever system is managing the endpoint. A nil value indicates an unknown state. In most cases consumers should interpret this unknown state as ready. For compatibility reasons, ready should never be \"true\" for terminating endpoints.",
10206          "type": "boolean"
10207        },
10208        "serving": {
10209          "description": "serving is identical to ready except that it is set regardless of the terminating state of endpoints. This condition should be set to true for a ready endpoint that is terminating. If nil, consumers should defer to the ready condition. This field can be enabled with the EndpointSliceTerminatingCondition feature gate.",
10210          "type": "boolean"
10211        },
10212        "terminating": {
10213          "description": "terminating indicates that this endpoint is terminating. A nil value indicates an unknown state. Consumers should interpret this unknown state to mean that the endpoint is not terminating. This field can be enabled with the EndpointSliceTerminatingCondition feature gate.",
10214          "type": "boolean"
10215        }
10216      },
10217      "type": "object"
10218    },
10219    "io.k8s.api.discovery.v1beta1.EndpointHints": {
10220      "description": "EndpointHints provides hints describing how an endpoint should be consumed.",
10221      "properties": {
10222        "forZones": {
10223          "description": "forZones indicates the zone(s) this endpoint should be consumed by to enable topology aware routing. May contain a maximum of 8 entries.",
10224          "items": {
10225            "$ref": "#/definitions/io.k8s.api.discovery.v1beta1.ForZone"
10226          },
10227          "type": "array",
10228          "x-kubernetes-list-type": "atomic"
10229        }
10230      },
10231      "type": "object"
10232    },
10233    "io.k8s.api.discovery.v1beta1.EndpointPort": {
10234      "description": "EndpointPort represents a Port used by an EndpointSlice",
10235      "properties": {
10236        "appProtocol": {
10237          "description": "The application protocol for this port. This field follows standard Kubernetes label syntax. Un-prefixed names are reserved for IANA standard service names (as per RFC-6335 and http://www.iana.org/assignments/service-names). Non-standard protocols should use prefixed names such as mycompany.com/my-custom-protocol.",
10238          "type": "string"
10239        },
10240        "name": {
10241          "description": "The name of this port. All ports in an EndpointSlice must have a unique name. If the EndpointSlice is dervied from a Kubernetes service, this corresponds to the Service.ports[].name. Name must either be an empty string or pass DNS_LABEL validation: * must be no more than 63 characters long. * must consist of lower case alphanumeric characters or '-'. * must start and end with an alphanumeric character. Default is empty string.",
10242          "type": "string"
10243        },
10244        "port": {
10245          "description": "The port number of the endpoint. If this is not specified, ports are not restricted and must be interpreted in the context of the specific consumer.",
10246          "format": "int32",
10247          "type": "integer"
10248        },
10249        "protocol": {
10250          "description": "The IP protocol for this port. Must be UDP, TCP, or SCTP. Default is TCP.",
10251          "type": "string"
10252        }
10253      },
10254      "type": "object"
10255    },
10256    "io.k8s.api.discovery.v1beta1.EndpointSlice": {
10257      "description": "EndpointSlice represents a subset of the endpoints that implement a service. For a given service there may be multiple EndpointSlice objects, selected by labels, which must be joined to produce the full set of endpoints.",
10258      "properties": {
10259        "addressType": {
10260          "description": "addressType specifies the type of address carried by this EndpointSlice. All addresses in this slice must be the same type. This field is immutable after creation. The following address types are currently supported: * IPv4: Represents an IPv4 Address. * IPv6: Represents an IPv6 Address. * FQDN: Represents a Fully Qualified Domain Name.",
10261          "type": "string"
10262        },
10263        "apiVersion": {
10264          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
10265          "type": "string"
10266        },
10267        "endpoints": {
10268          "description": "endpoints is a list of unique endpoints in this slice. Each slice may include a maximum of 1000 endpoints.",
10269          "items": {
10270            "$ref": "#/definitions/io.k8s.api.discovery.v1beta1.Endpoint"
10271          },
10272          "type": "array",
10273          "x-kubernetes-list-type": "atomic"
10274        },
10275        "kind": {
10276          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
10277          "type": "string"
10278        },
10279        "metadata": {
10280          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
10281          "description": "Standard object's metadata."
10282        },
10283        "ports": {
10284          "description": "ports specifies the list of network ports exposed by each endpoint in this slice. Each port must have a unique name. When ports is empty, it indicates that there are no defined ports. When a port is defined with a nil port value, it indicates \"all ports\". Each slice may include a maximum of 100 ports.",
10285          "items": {
10286            "$ref": "#/definitions/io.k8s.api.discovery.v1beta1.EndpointPort"
10287          },
10288          "type": "array",
10289          "x-kubernetes-list-type": "atomic"
10290        }
10291      },
10292      "required": [
10293        "addressType",
10294        "endpoints"
10295      ],
10296      "type": "object",
10297      "x-kubernetes-group-version-kind": [
10298        {
10299          "group": "discovery.k8s.io",
10300          "kind": "EndpointSlice",
10301          "version": "v1beta1"
10302        }
10303      ]
10304    },
10305    "io.k8s.api.discovery.v1beta1.EndpointSliceList": {
10306      "description": "EndpointSliceList represents a list of endpoint slices",
10307      "properties": {
10308        "apiVersion": {
10309          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
10310          "type": "string"
10311        },
10312        "items": {
10313          "description": "List of endpoint slices",
10314          "items": {
10315            "$ref": "#/definitions/io.k8s.api.discovery.v1beta1.EndpointSlice"
10316          },
10317          "type": "array"
10318        },
10319        "kind": {
10320          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
10321          "type": "string"
10322        },
10323        "metadata": {
10324          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
10325          "description": "Standard list metadata."
10326        }
10327      },
10328      "required": [
10329        "items"
10330      ],
10331      "type": "object",
10332      "x-kubernetes-group-version-kind": [
10333        {
10334          "group": "discovery.k8s.io",
10335          "kind": "EndpointSliceList",
10336          "version": "v1beta1"
10337        }
10338      ]
10339    },
10340    "io.k8s.api.discovery.v1beta1.ForZone": {
10341      "description": "ForZone provides information about which zones should consume this endpoint.",
10342      "properties": {
10343        "name": {
10344          "description": "name represents the name of the zone.",
10345          "type": "string"
10346        }
10347      },
10348      "required": [
10349        "name"
10350      ],
10351      "type": "object"
10352    },
10353    "io.k8s.api.events.v1.Event": {
10354      "description": "Event is a report of an event somewhere in the cluster. It generally denotes some state change in the system. Events have a limited retention time and triggers and messages may evolve with time.  Event consumers should not rely on the timing of an event with a given Reason reflecting a consistent underlying trigger, or the continued existence of events with that Reason.  Events should be treated as informative, best-effort, supplemental data.",
10355      "properties": {
10356        "action": {
10357          "description": "action is what action was taken/failed regarding to the regarding object. It is machine-readable. This field cannot be empty for new Events and it can have at most 128 characters.",
10358          "type": "string"
10359        },
10360        "apiVersion": {
10361          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
10362          "type": "string"
10363        },
10364        "deprecatedCount": {
10365          "description": "deprecatedCount is the deprecated field assuring backward compatibility with core.v1 Event type.",
10366          "format": "int32",
10367          "type": "integer"
10368        },
10369        "deprecatedFirstTimestamp": {
10370          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
10371          "description": "deprecatedFirstTimestamp is the deprecated field assuring backward compatibility with core.v1 Event type."
10372        },
10373        "deprecatedLastTimestamp": {
10374          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
10375          "description": "deprecatedLastTimestamp is the deprecated field assuring backward compatibility with core.v1 Event type."
10376        },
10377        "deprecatedSource": {
10378          "$ref": "#/definitions/io.k8s.api.core.v1.EventSource",
10379          "description": "deprecatedSource is the deprecated field assuring backward compatibility with core.v1 Event type."
10380        },
10381        "eventTime": {
10382          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.MicroTime",
10383          "description": "eventTime is the time when this Event was first observed. It is required."
10384        },
10385        "kind": {
10386          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
10387          "type": "string"
10388        },
10389        "metadata": {
10390          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
10391          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
10392        },
10393        "note": {
10394          "description": "note is a human-readable description of the status of this operation. Maximal length of the note is 1kB, but libraries should be prepared to handle values up to 64kB.",
10395          "type": "string"
10396        },
10397        "reason": {
10398          "description": "reason is why the action was taken. It is human-readable. This field cannot be empty for new Events and it can have at most 128 characters.",
10399          "type": "string"
10400        },
10401        "regarding": {
10402          "$ref": "#/definitions/io.k8s.api.core.v1.ObjectReference",
10403          "description": "regarding contains the object this Event is about. In most cases it's an Object reporting controller implements, e.g. ReplicaSetController implements ReplicaSets and this event is emitted because it acts on some changes in a ReplicaSet object."
10404        },
10405        "related": {
10406          "$ref": "#/definitions/io.k8s.api.core.v1.ObjectReference",
10407          "description": "related is the optional secondary object for more complex actions. E.g. when regarding object triggers a creation or deletion of related object."
10408        },
10409        "reportingController": {
10410          "description": "reportingController is the name of the controller that emitted this Event, e.g. `kubernetes.io/kubelet`. This field cannot be empty for new Events.",
10411          "type": "string"
10412        },
10413        "reportingInstance": {
10414          "description": "reportingInstance is the ID of the controller instance, e.g. `kubelet-xyzf`. This field cannot be empty for new Events and it can have at most 128 characters.",
10415          "type": "string"
10416        },
10417        "series": {
10418          "$ref": "#/definitions/io.k8s.api.events.v1.EventSeries",
10419          "description": "series is data about the Event series this event represents or nil if it's a singleton Event."
10420        },
10421        "type": {
10422          "description": "type is the type of this event (Normal, Warning), new types could be added in the future. It is machine-readable. This field cannot be empty for new Events.",
10423          "type": "string"
10424        }
10425      },
10426      "required": [
10427        "eventTime"
10428      ],
10429      "type": "object",
10430      "x-kubernetes-group-version-kind": [
10431        {
10432          "group": "events.k8s.io",
10433          "kind": "Event",
10434          "version": "v1"
10435        }
10436      ]
10437    },
10438    "io.k8s.api.events.v1.EventList": {
10439      "description": "EventList is a list of Event objects.",
10440      "properties": {
10441        "apiVersion": {
10442          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
10443          "type": "string"
10444        },
10445        "items": {
10446          "description": "items is a list of schema objects.",
10447          "items": {
10448            "$ref": "#/definitions/io.k8s.api.events.v1.Event"
10449          },
10450          "type": "array"
10451        },
10452        "kind": {
10453          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
10454          "type": "string"
10455        },
10456        "metadata": {
10457          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
10458          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
10459        }
10460      },
10461      "required": [
10462        "items"
10463      ],
10464      "type": "object",
10465      "x-kubernetes-group-version-kind": [
10466        {
10467          "group": "events.k8s.io",
10468          "kind": "EventList",
10469          "version": "v1"
10470        }
10471      ]
10472    },
10473    "io.k8s.api.events.v1.EventSeries": {
10474      "description": "EventSeries contain information on series of events, i.e. thing that was/is happening continuously for some time. How often to update the EventSeries is up to the event reporters. The default event reporter in \"k8s.io/client-go/tools/events/event_broadcaster.go\" shows how this struct is updated on heartbeats and can guide customized reporter implementations.",
10475      "properties": {
10476        "count": {
10477          "description": "count is the number of occurrences in this series up to the last heartbeat time.",
10478          "format": "int32",
10479          "type": "integer"
10480        },
10481        "lastObservedTime": {
10482          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.MicroTime",
10483          "description": "lastObservedTime is the time when last Event from the series was seen before last heartbeat."
10484        }
10485      },
10486      "required": [
10487        "count",
10488        "lastObservedTime"
10489      ],
10490      "type": "object"
10491    },
10492    "io.k8s.api.events.v1beta1.Event": {
10493      "description": "Event is a report of an event somewhere in the cluster. It generally denotes some state change in the system. Events have a limited retention time and triggers and messages may evolve with time.  Event consumers should not rely on the timing of an event with a given Reason reflecting a consistent underlying trigger, or the continued existence of events with that Reason.  Events should be treated as informative, best-effort, supplemental data.",
10494      "properties": {
10495        "action": {
10496          "description": "action is what action was taken/failed regarding to the regarding object. It is machine-readable. This field can have at most 128 characters.",
10497          "type": "string"
10498        },
10499        "apiVersion": {
10500          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
10501          "type": "string"
10502        },
10503        "deprecatedCount": {
10504          "description": "deprecatedCount is the deprecated field assuring backward compatibility with core.v1 Event type.",
10505          "format": "int32",
10506          "type": "integer"
10507        },
10508        "deprecatedFirstTimestamp": {
10509          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
10510          "description": "deprecatedFirstTimestamp is the deprecated field assuring backward compatibility with core.v1 Event type."
10511        },
10512        "deprecatedLastTimestamp": {
10513          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
10514          "description": "deprecatedLastTimestamp is the deprecated field assuring backward compatibility with core.v1 Event type."
10515        },
10516        "deprecatedSource": {
10517          "$ref": "#/definitions/io.k8s.api.core.v1.EventSource",
10518          "description": "deprecatedSource is the deprecated field assuring backward compatibility with core.v1 Event type."
10519        },
10520        "eventTime": {
10521          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.MicroTime",
10522          "description": "eventTime is the time when this Event was first observed. It is required."
10523        },
10524        "kind": {
10525          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
10526          "type": "string"
10527        },
10528        "metadata": {
10529          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
10530          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
10531        },
10532        "note": {
10533          "description": "note is a human-readable description of the status of this operation. Maximal length of the note is 1kB, but libraries should be prepared to handle values up to 64kB.",
10534          "type": "string"
10535        },
10536        "reason": {
10537          "description": "reason is why the action was taken. It is human-readable. This field can have at most 128 characters.",
10538          "type": "string"
10539        },
10540        "regarding": {
10541          "$ref": "#/definitions/io.k8s.api.core.v1.ObjectReference",
10542          "description": "regarding contains the object this Event is about. In most cases it's an Object reporting controller implements, e.g. ReplicaSetController implements ReplicaSets and this event is emitted because it acts on some changes in a ReplicaSet object."
10543        },
10544        "related": {
10545          "$ref": "#/definitions/io.k8s.api.core.v1.ObjectReference",
10546          "description": "related is the optional secondary object for more complex actions. E.g. when regarding object triggers a creation or deletion of related object."
10547        },
10548        "reportingController": {
10549          "description": "reportingController is the name of the controller that emitted this Event, e.g. `kubernetes.io/kubelet`. This field cannot be empty for new Events.",
10550          "type": "string"
10551        },
10552        "reportingInstance": {
10553          "description": "reportingInstance is the ID of the controller instance, e.g. `kubelet-xyzf`. This field cannot be empty for new Events and it can have at most 128 characters.",
10554          "type": "string"
10555        },
10556        "series": {
10557          "$ref": "#/definitions/io.k8s.api.events.v1beta1.EventSeries",
10558          "description": "series is data about the Event series this event represents or nil if it's a singleton Event."
10559        },
10560        "type": {
10561          "description": "type is the type of this event (Normal, Warning), new types could be added in the future. It is machine-readable.",
10562          "type": "string"
10563        }
10564      },
10565      "required": [
10566        "eventTime"
10567      ],
10568      "type": "object",
10569      "x-kubernetes-group-version-kind": [
10570        {
10571          "group": "events.k8s.io",
10572          "kind": "Event",
10573          "version": "v1beta1"
10574        }
10575      ]
10576    },
10577    "io.k8s.api.events.v1beta1.EventList": {
10578      "description": "EventList is a list of Event objects.",
10579      "properties": {
10580        "apiVersion": {
10581          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
10582          "type": "string"
10583        },
10584        "items": {
10585          "description": "items is a list of schema objects.",
10586          "items": {
10587            "$ref": "#/definitions/io.k8s.api.events.v1beta1.Event"
10588          },
10589          "type": "array"
10590        },
10591        "kind": {
10592          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
10593          "type": "string"
10594        },
10595        "metadata": {
10596          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
10597          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
10598        }
10599      },
10600      "required": [
10601        "items"
10602      ],
10603      "type": "object",
10604      "x-kubernetes-group-version-kind": [
10605        {
10606          "group": "events.k8s.io",
10607          "kind": "EventList",
10608          "version": "v1beta1"
10609        }
10610      ]
10611    },
10612    "io.k8s.api.events.v1beta1.EventSeries": {
10613      "description": "EventSeries contain information on series of events, i.e. thing that was/is happening continuously for some time.",
10614      "properties": {
10615        "count": {
10616          "description": "count is the number of occurrences in this series up to the last heartbeat time.",
10617          "format": "int32",
10618          "type": "integer"
10619        },
10620        "lastObservedTime": {
10621          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.MicroTime",
10622          "description": "lastObservedTime is the time when last Event from the series was seen before last heartbeat."
10623        }
10624      },
10625      "required": [
10626        "count",
10627        "lastObservedTime"
10628      ],
10629      "type": "object"
10630    },
10631    "io.k8s.api.flowcontrol.v1beta1.FlowDistinguisherMethod": {
10632      "description": "FlowDistinguisherMethod specifies the method of a flow distinguisher.",
10633      "properties": {
10634        "type": {
10635          "description": "`type` is the type of flow distinguisher method The supported types are \"ByUser\" and \"ByNamespace\". Required.",
10636          "type": "string"
10637        }
10638      },
10639      "required": [
10640        "type"
10641      ],
10642      "type": "object"
10643    },
10644    "io.k8s.api.flowcontrol.v1beta1.FlowSchema": {
10645      "description": "FlowSchema defines the schema of a group of flows. Note that a flow is made up of a set of inbound API requests with similar attributes and is identified by a pair of strings: the name of the FlowSchema and a \"flow distinguisher\".",
10646      "properties": {
10647        "apiVersion": {
10648          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
10649          "type": "string"
10650        },
10651        "kind": {
10652          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
10653          "type": "string"
10654        },
10655        "metadata": {
10656          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
10657          "description": "`metadata` is the standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
10658        },
10659        "spec": {
10660          "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.FlowSchemaSpec",
10661          "description": "`spec` is the specification of the desired behavior of a FlowSchema. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status"
10662        },
10663        "status": {
10664          "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.FlowSchemaStatus",
10665          "description": "`status` is the current status of a FlowSchema. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status"
10666        }
10667      },
10668      "type": "object",
10669      "x-kubernetes-group-version-kind": [
10670        {
10671          "group": "flowcontrol.apiserver.k8s.io",
10672          "kind": "FlowSchema",
10673          "version": "v1beta1"
10674        }
10675      ]
10676    },
10677    "io.k8s.api.flowcontrol.v1beta1.FlowSchemaCondition": {
10678      "description": "FlowSchemaCondition describes conditions for a FlowSchema.",
10679      "properties": {
10680        "lastTransitionTime": {
10681          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
10682          "description": "`lastTransitionTime` is the last time the condition transitioned from one status to another."
10683        },
10684        "message": {
10685          "description": "`message` is a human-readable message indicating details about last transition.",
10686          "type": "string"
10687        },
10688        "reason": {
10689          "description": "`reason` is a unique, one-word, CamelCase reason for the condition's last transition.",
10690          "type": "string"
10691        },
10692        "status": {
10693          "description": "`status` is the status of the condition. Can be True, False, Unknown. Required.",
10694          "type": "string"
10695        },
10696        "type": {
10697          "description": "`type` is the type of the condition. Required.",
10698          "type": "string"
10699        }
10700      },
10701      "type": "object"
10702    },
10703    "io.k8s.api.flowcontrol.v1beta1.FlowSchemaList": {
10704      "description": "FlowSchemaList is a list of FlowSchema objects.",
10705      "properties": {
10706        "apiVersion": {
10707          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
10708          "type": "string"
10709        },
10710        "items": {
10711          "description": "`items` is a list of FlowSchemas.",
10712          "items": {
10713            "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.FlowSchema"
10714          },
10715          "type": "array"
10716        },
10717        "kind": {
10718          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
10719          "type": "string"
10720        },
10721        "metadata": {
10722          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
10723          "description": "`metadata` is the standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
10724        }
10725      },
10726      "required": [
10727        "items"
10728      ],
10729      "type": "object",
10730      "x-kubernetes-group-version-kind": [
10731        {
10732          "group": "flowcontrol.apiserver.k8s.io",
10733          "kind": "FlowSchemaList",
10734          "version": "v1beta1"
10735        }
10736      ]
10737    },
10738    "io.k8s.api.flowcontrol.v1beta1.FlowSchemaSpec": {
10739      "description": "FlowSchemaSpec describes how the FlowSchema's specification looks like.",
10740      "properties": {
10741        "distinguisherMethod": {
10742          "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.FlowDistinguisherMethod",
10743          "description": "`distinguisherMethod` defines how to compute the flow distinguisher for requests that match this schema. `nil` specifies that the distinguisher is disabled and thus will always be the empty string."
10744        },
10745        "matchingPrecedence": {
10746          "description": "`matchingPrecedence` is used to choose among the FlowSchemas that match a given request. The chosen FlowSchema is among those with the numerically lowest (which we take to be logically highest) MatchingPrecedence.  Each MatchingPrecedence value must be ranged in [1,10000]. Note that if the precedence is not specified, it will be set to 1000 as default.",
10747          "format": "int32",
10748          "type": "integer"
10749        },
10750        "priorityLevelConfiguration": {
10751          "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.PriorityLevelConfigurationReference",
10752          "description": "`priorityLevelConfiguration` should reference a PriorityLevelConfiguration in the cluster. If the reference cannot be resolved, the FlowSchema will be ignored and marked as invalid in its status. Required."
10753        },
10754        "rules": {
10755          "description": "`rules` describes which requests will match this flow schema. This FlowSchema matches a request if and only if at least one member of rules matches the request. if it is an empty slice, there will be no requests matching the FlowSchema.",
10756          "items": {
10757            "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.PolicyRulesWithSubjects"
10758          },
10759          "type": "array",
10760          "x-kubernetes-list-type": "atomic"
10761        }
10762      },
10763      "required": [
10764        "priorityLevelConfiguration"
10765      ],
10766      "type": "object"
10767    },
10768    "io.k8s.api.flowcontrol.v1beta1.FlowSchemaStatus": {
10769      "description": "FlowSchemaStatus represents the current state of a FlowSchema.",
10770      "properties": {
10771        "conditions": {
10772          "description": "`conditions` is a list of the current states of FlowSchema.",
10773          "items": {
10774            "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.FlowSchemaCondition"
10775          },
10776          "type": "array",
10777          "x-kubernetes-list-map-keys": [
10778            "type"
10779          ],
10780          "x-kubernetes-list-type": "map"
10781        }
10782      },
10783      "type": "object"
10784    },
10785    "io.k8s.api.flowcontrol.v1beta1.GroupSubject": {
10786      "description": "GroupSubject holds detailed information for group-kind subject.",
10787      "properties": {
10788        "name": {
10789          "description": "name is the user group that matches, or \"*\" to match all user groups. See https://github.com/kubernetes/apiserver/blob/master/pkg/authentication/user/user.go for some well-known group names. Required.",
10790          "type": "string"
10791        }
10792      },
10793      "required": [
10794        "name"
10795      ],
10796      "type": "object"
10797    },
10798    "io.k8s.api.flowcontrol.v1beta1.LimitResponse": {
10799      "description": "LimitResponse defines how to handle requests that can not be executed right now.",
10800      "properties": {
10801        "queuing": {
10802          "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.QueuingConfiguration",
10803          "description": "`queuing` holds the configuration parameters for queuing. This field may be non-empty only if `type` is `\"Queue\"`."
10804        },
10805        "type": {
10806          "description": "`type` is \"Queue\" or \"Reject\". \"Queue\" means that requests that can not be executed upon arrival are held in a queue until they can be executed or a queuing limit is reached. \"Reject\" means that requests that can not be executed upon arrival are rejected. Required.",
10807          "type": "string"
10808        }
10809      },
10810      "required": [
10811        "type"
10812      ],
10813      "type": "object",
10814      "x-kubernetes-unions": [
10815        {
10816          "discriminator": "type",
10817          "fields-to-discriminateBy": {
10818            "queuing": "Queuing"
10819          }
10820        }
10821      ]
10822    },
10823    "io.k8s.api.flowcontrol.v1beta1.LimitedPriorityLevelConfiguration": {
10824      "description": "LimitedPriorityLevelConfiguration specifies how to handle requests that are subject to limits. It addresses two issues:\n * How are requests for this priority level limited?\n * What should be done with requests that exceed the limit?",
10825      "properties": {
10826        "assuredConcurrencyShares": {
10827          "description": "`assuredConcurrencyShares` (ACS) configures the execution limit, which is a limit on the number of requests of this priority level that may be exeucting at a given time.  ACS must be a positive number. The server's concurrency limit (SCL) is divided among the concurrency-controlled priority levels in proportion to their assured concurrency shares. This produces the assured concurrency value (ACV) --- the number of requests that may be executing at a time --- for each such priority level:\n\n            ACV(l) = ceil( SCL * ACS(l) / ( sum[priority levels k] ACS(k) ) )\n\nbigger numbers of ACS mean more reserved concurrent requests (at the expense of every other PL). This field has a default value of 30.",
10828          "format": "int32",
10829          "type": "integer"
10830        },
10831        "limitResponse": {
10832          "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.LimitResponse",
10833          "description": "`limitResponse` indicates what to do with requests that can not be executed right now"
10834        }
10835      },
10836      "type": "object"
10837    },
10838    "io.k8s.api.flowcontrol.v1beta1.NonResourcePolicyRule": {
10839      "description": "NonResourcePolicyRule is a predicate that matches non-resource requests according to their verb and the target non-resource URL. A NonResourcePolicyRule matches a request if and only if both (a) at least one member of verbs matches the request and (b) at least one member of nonResourceURLs matches the request.",
10840      "properties": {
10841        "nonResourceURLs": {
10842          "description": "`nonResourceURLs` is a set of url prefixes that a user should have access to and may not be empty. For example:\n  - \"/healthz\" is legal\n  - \"/hea*\" is illegal\n  - \"/hea\" is legal but matches nothing\n  - \"/hea/*\" also matches nothing\n  - \"/healthz/*\" matches all per-component health checks.\n\"*\" matches all non-resource urls. if it is present, it must be the only entry. Required.",
10843          "items": {
10844            "type": "string"
10845          },
10846          "type": "array",
10847          "x-kubernetes-list-type": "set"
10848        },
10849        "verbs": {
10850          "description": "`verbs` is a list of matching verbs and may not be empty. \"*\" matches all verbs. If it is present, it must be the only entry. Required.",
10851          "items": {
10852            "type": "string"
10853          },
10854          "type": "array",
10855          "x-kubernetes-list-type": "set"
10856        }
10857      },
10858      "required": [
10859        "verbs",
10860        "nonResourceURLs"
10861      ],
10862      "type": "object"
10863    },
10864    "io.k8s.api.flowcontrol.v1beta1.PolicyRulesWithSubjects": {
10865      "description": "PolicyRulesWithSubjects prescribes a test that applies to a request to an apiserver. The test considers the subject making the request, the verb being requested, and the resource to be acted upon. This PolicyRulesWithSubjects matches a request if and only if both (a) at least one member of subjects matches the request and (b) at least one member of resourceRules or nonResourceRules matches the request.",
10866      "properties": {
10867        "nonResourceRules": {
10868          "description": "`nonResourceRules` is a list of NonResourcePolicyRules that identify matching requests according to their verb and the target non-resource URL.",
10869          "items": {
10870            "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.NonResourcePolicyRule"
10871          },
10872          "type": "array",
10873          "x-kubernetes-list-type": "atomic"
10874        },
10875        "resourceRules": {
10876          "description": "`resourceRules` is a slice of ResourcePolicyRules that identify matching requests according to their verb and the target resource. At least one of `resourceRules` and `nonResourceRules` has to be non-empty.",
10877          "items": {
10878            "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.ResourcePolicyRule"
10879          },
10880          "type": "array",
10881          "x-kubernetes-list-type": "atomic"
10882        },
10883        "subjects": {
10884          "description": "subjects is the list of normal user, serviceaccount, or group that this rule cares about. There must be at least one member in this slice. A slice that includes both the system:authenticated and system:unauthenticated user groups matches every request. Required.",
10885          "items": {
10886            "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.Subject"
10887          },
10888          "type": "array",
10889          "x-kubernetes-list-type": "atomic"
10890        }
10891      },
10892      "required": [
10893        "subjects"
10894      ],
10895      "type": "object"
10896    },
10897    "io.k8s.api.flowcontrol.v1beta1.PriorityLevelConfiguration": {
10898      "description": "PriorityLevelConfiguration represents the configuration of a priority level.",
10899      "properties": {
10900        "apiVersion": {
10901          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
10902          "type": "string"
10903        },
10904        "kind": {
10905          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
10906          "type": "string"
10907        },
10908        "metadata": {
10909          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
10910          "description": "`metadata` is the standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
10911        },
10912        "spec": {
10913          "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.PriorityLevelConfigurationSpec",
10914          "description": "`spec` is the specification of the desired behavior of a \"request-priority\". More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status"
10915        },
10916        "status": {
10917          "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.PriorityLevelConfigurationStatus",
10918          "description": "`status` is the current status of a \"request-priority\". More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status"
10919        }
10920      },
10921      "type": "object",
10922      "x-kubernetes-group-version-kind": [
10923        {
10924          "group": "flowcontrol.apiserver.k8s.io",
10925          "kind": "PriorityLevelConfiguration",
10926          "version": "v1beta1"
10927        }
10928      ]
10929    },
10930    "io.k8s.api.flowcontrol.v1beta1.PriorityLevelConfigurationCondition": {
10931      "description": "PriorityLevelConfigurationCondition defines the condition of priority level.",
10932      "properties": {
10933        "lastTransitionTime": {
10934          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
10935          "description": "`lastTransitionTime` is the last time the condition transitioned from one status to another."
10936        },
10937        "message": {
10938          "description": "`message` is a human-readable message indicating details about last transition.",
10939          "type": "string"
10940        },
10941        "reason": {
10942          "description": "`reason` is a unique, one-word, CamelCase reason for the condition's last transition.",
10943          "type": "string"
10944        },
10945        "status": {
10946          "description": "`status` is the status of the condition. Can be True, False, Unknown. Required.",
10947          "type": "string"
10948        },
10949        "type": {
10950          "description": "`type` is the type of the condition. Required.",
10951          "type": "string"
10952        }
10953      },
10954      "type": "object"
10955    },
10956    "io.k8s.api.flowcontrol.v1beta1.PriorityLevelConfigurationList": {
10957      "description": "PriorityLevelConfigurationList is a list of PriorityLevelConfiguration objects.",
10958      "properties": {
10959        "apiVersion": {
10960          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
10961          "type": "string"
10962        },
10963        "items": {
10964          "description": "`items` is a list of request-priorities.",
10965          "items": {
10966            "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.PriorityLevelConfiguration"
10967          },
10968          "type": "array"
10969        },
10970        "kind": {
10971          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
10972          "type": "string"
10973        },
10974        "metadata": {
10975          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
10976          "description": "`metadata` is the standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
10977        }
10978      },
10979      "required": [
10980        "items"
10981      ],
10982      "type": "object",
10983      "x-kubernetes-group-version-kind": [
10984        {
10985          "group": "flowcontrol.apiserver.k8s.io",
10986          "kind": "PriorityLevelConfigurationList",
10987          "version": "v1beta1"
10988        }
10989      ]
10990    },
10991    "io.k8s.api.flowcontrol.v1beta1.PriorityLevelConfigurationReference": {
10992      "description": "PriorityLevelConfigurationReference contains information that points to the \"request-priority\" being used.",
10993      "properties": {
10994        "name": {
10995          "description": "`name` is the name of the priority level configuration being referenced Required.",
10996          "type": "string"
10997        }
10998      },
10999      "required": [
11000        "name"
11001      ],
11002      "type": "object"
11003    },
11004    "io.k8s.api.flowcontrol.v1beta1.PriorityLevelConfigurationSpec": {
11005      "description": "PriorityLevelConfigurationSpec specifies the configuration of a priority level.",
11006      "properties": {
11007        "limited": {
11008          "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.LimitedPriorityLevelConfiguration",
11009          "description": "`limited` specifies how requests are handled for a Limited priority level. This field must be non-empty if and only if `type` is `\"Limited\"`."
11010        },
11011        "type": {
11012          "description": "`type` indicates whether this priority level is subject to limitation on request execution.  A value of `\"Exempt\"` means that requests of this priority level are not subject to a limit (and thus are never queued) and do not detract from the capacity made available to other priority levels.  A value of `\"Limited\"` means that (a) requests of this priority level _are_ subject to limits and (b) some of the server's limited capacity is made available exclusively to this priority level. Required.",
11013          "type": "string"
11014        }
11015      },
11016      "required": [
11017        "type"
11018      ],
11019      "type": "object",
11020      "x-kubernetes-unions": [
11021        {
11022          "discriminator": "type",
11023          "fields-to-discriminateBy": {
11024            "limited": "Limited"
11025          }
11026        }
11027      ]
11028    },
11029    "io.k8s.api.flowcontrol.v1beta1.PriorityLevelConfigurationStatus": {
11030      "description": "PriorityLevelConfigurationStatus represents the current state of a \"request-priority\".",
11031      "properties": {
11032        "conditions": {
11033          "description": "`conditions` is the current state of \"request-priority\".",
11034          "items": {
11035            "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.PriorityLevelConfigurationCondition"
11036          },
11037          "type": "array",
11038          "x-kubernetes-list-map-keys": [
11039            "type"
11040          ],
11041          "x-kubernetes-list-type": "map"
11042        }
11043      },
11044      "type": "object"
11045    },
11046    "io.k8s.api.flowcontrol.v1beta1.QueuingConfiguration": {
11047      "description": "QueuingConfiguration holds the configuration parameters for queuing",
11048      "properties": {
11049        "handSize": {
11050          "description": "`handSize` is a small positive number that configures the shuffle sharding of requests into queues.  When enqueuing a request at this priority level the request's flow identifier (a string pair) is hashed and the hash value is used to shuffle the list of queues and deal a hand of the size specified here.  The request is put into one of the shortest queues in that hand. `handSize` must be no larger than `queues`, and should be significantly smaller (so that a few heavy flows do not saturate most of the queues).  See the user-facing documentation for more extensive guidance on setting this field.  This field has a default value of 8.",
11051          "format": "int32",
11052          "type": "integer"
11053        },
11054        "queueLengthLimit": {
11055          "description": "`queueLengthLimit` is the maximum number of requests allowed to be waiting in a given queue of this priority level at a time; excess requests are rejected.  This value must be positive.  If not specified, it will be defaulted to 50.",
11056          "format": "int32",
11057          "type": "integer"
11058        },
11059        "queues": {
11060          "description": "`queues` is the number of queues for this priority level. The queues exist independently at each apiserver. The value must be positive.  Setting it to 1 effectively precludes shufflesharding and thus makes the distinguisher method of associated flow schemas irrelevant.  This field has a default value of 64.",
11061          "format": "int32",
11062          "type": "integer"
11063        }
11064      },
11065      "type": "object"
11066    },
11067    "io.k8s.api.flowcontrol.v1beta1.ResourcePolicyRule": {
11068      "description": "ResourcePolicyRule is a predicate that matches some resource requests, testing the request's verb and the target resource. A ResourcePolicyRule matches a resource request if and only if: (a) at least one member of verbs matches the request, (b) at least one member of apiGroups matches the request, (c) at least one member of resources matches the request, and (d) least one member of namespaces matches the request.",
11069      "properties": {
11070        "apiGroups": {
11071          "description": "`apiGroups` is a list of matching API groups and may not be empty. \"*\" matches all API groups and, if present, must be the only entry. Required.",
11072          "items": {
11073            "type": "string"
11074          },
11075          "type": "array",
11076          "x-kubernetes-list-type": "set"
11077        },
11078        "clusterScope": {
11079          "description": "`clusterScope` indicates whether to match requests that do not specify a namespace (which happens either because the resource is not namespaced or the request targets all namespaces). If this field is omitted or false then the `namespaces` field must contain a non-empty list.",
11080          "type": "boolean"
11081        },
11082        "namespaces": {
11083          "description": "`namespaces` is a list of target namespaces that restricts matches.  A request that specifies a target namespace matches only if either (a) this list contains that target namespace or (b) this list contains \"*\".  Note that \"*\" matches any specified namespace but does not match a request that _does not specify_ a namespace (see the `clusterScope` field for that). This list may be empty, but only if `clusterScope` is true.",
11084          "items": {
11085            "type": "string"
11086          },
11087          "type": "array",
11088          "x-kubernetes-list-type": "set"
11089        },
11090        "resources": {
11091          "description": "`resources` is a list of matching resources (i.e., lowercase and plural) with, if desired, subresource.  For example, [ \"services\", \"nodes/status\" ].  This list may not be empty. \"*\" matches all resources and, if present, must be the only entry. Required.",
11092          "items": {
11093            "type": "string"
11094          },
11095          "type": "array",
11096          "x-kubernetes-list-type": "set"
11097        },
11098        "verbs": {
11099          "description": "`verbs` is a list of matching verbs and may not be empty. \"*\" matches all verbs and, if present, must be the only entry. Required.",
11100          "items": {
11101            "type": "string"
11102          },
11103          "type": "array",
11104          "x-kubernetes-list-type": "set"
11105        }
11106      },
11107      "required": [
11108        "verbs",
11109        "apiGroups",
11110        "resources"
11111      ],
11112      "type": "object"
11113    },
11114    "io.k8s.api.flowcontrol.v1beta1.ServiceAccountSubject": {
11115      "description": "ServiceAccountSubject holds detailed information for service-account-kind subject.",
11116      "properties": {
11117        "name": {
11118          "description": "`name` is the name of matching ServiceAccount objects, or \"*\" to match regardless of name. Required.",
11119          "type": "string"
11120        },
11121        "namespace": {
11122          "description": "`namespace` is the namespace of matching ServiceAccount objects. Required.",
11123          "type": "string"
11124        }
11125      },
11126      "required": [
11127        "namespace",
11128        "name"
11129      ],
11130      "type": "object"
11131    },
11132    "io.k8s.api.flowcontrol.v1beta1.Subject": {
11133      "description": "Subject matches the originator of a request, as identified by the request authentication system. There are three ways of matching an originator; by user, group, or service account.",
11134      "properties": {
11135        "group": {
11136          "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.GroupSubject",
11137          "description": "`group` matches based on user group name."
11138        },
11139        "kind": {
11140          "description": "`kind` indicates which one of the other fields is non-empty. Required",
11141          "type": "string"
11142        },
11143        "serviceAccount": {
11144          "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.ServiceAccountSubject",
11145          "description": "`serviceAccount` matches ServiceAccounts."
11146        },
11147        "user": {
11148          "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.UserSubject",
11149          "description": "`user` matches based on username."
11150        }
11151      },
11152      "required": [
11153        "kind"
11154      ],
11155      "type": "object",
11156      "x-kubernetes-unions": [
11157        {
11158          "discriminator": "kind",
11159          "fields-to-discriminateBy": {
11160            "group": "Group",
11161            "serviceAccount": "ServiceAccount",
11162            "user": "User"
11163          }
11164        }
11165      ]
11166    },
11167    "io.k8s.api.flowcontrol.v1beta1.UserSubject": {
11168      "description": "UserSubject holds detailed information for user-kind subject.",
11169      "properties": {
11170        "name": {
11171          "description": "`name` is the username that matches, or \"*\" to match all usernames. Required.",
11172          "type": "string"
11173        }
11174      },
11175      "required": [
11176        "name"
11177      ],
11178      "type": "object"
11179    },
11180    "io.k8s.api.networking.v1.HTTPIngressPath": {
11181      "description": "HTTPIngressPath associates a path with a backend. Incoming urls matching the path are forwarded to the backend.",
11182      "properties": {
11183        "backend": {
11184          "$ref": "#/definitions/io.k8s.api.networking.v1.IngressBackend",
11185          "description": "Backend defines the referenced service endpoint to which the traffic will be forwarded to."
11186        },
11187        "path": {
11188          "description": "Path is matched against the path of an incoming request. Currently it can contain characters disallowed from the conventional \"path\" part of a URL as defined by RFC 3986. Paths must begin with a '/' and must be present when using PathType with value \"Exact\" or \"Prefix\".",
11189          "type": "string"
11190        },
11191        "pathType": {
11192          "description": "PathType determines the interpretation of the Path matching. PathType can be one of the following values: * Exact: Matches the URL path exactly. * Prefix: Matches based on a URL path prefix split by '/'. Matching is\n  done on a path element by element basis. A path element refers is the\n  list of labels in the path split by the '/' separator. A request is a\n  match for path p if every p is an element-wise prefix of p of the\n  request path. Note that if the last element of the path is a substring\n  of the last element in request path, it is not a match (e.g. /foo/bar\n  matches /foo/bar/baz, but does not match /foo/barbaz).\n* ImplementationSpecific: Interpretation of the Path matching is up to\n  the IngressClass. Implementations can treat this as a separate PathType\n  or treat it identically to Prefix or Exact path types.\nImplementations are required to support all path types.",
11193          "type": "string"
11194        }
11195      },
11196      "required": [
11197        "pathType",
11198        "backend"
11199      ],
11200      "type": "object"
11201    },
11202    "io.k8s.api.networking.v1.HTTPIngressRuleValue": {
11203      "description": "HTTPIngressRuleValue is a list of http selectors pointing to backends. In the example: http://<host>/<path>?<searchpart> -> backend where where parts of the url correspond to RFC 3986, this resource will be used to match against everything after the last '/' and before the first '?' or '#'.",
11204      "properties": {
11205        "paths": {
11206          "description": "A collection of paths that map requests to backends.",
11207          "items": {
11208            "$ref": "#/definitions/io.k8s.api.networking.v1.HTTPIngressPath"
11209          },
11210          "type": "array",
11211          "x-kubernetes-list-type": "atomic"
11212        }
11213      },
11214      "required": [
11215        "paths"
11216      ],
11217      "type": "object"
11218    },
11219    "io.k8s.api.networking.v1.IPBlock": {
11220      "description": "IPBlock describes a particular CIDR (Ex. \"192.168.1.1/24\",\"2001:db9::/64\") that is allowed to the pods matched by a NetworkPolicySpec's podSelector. The except entry describes CIDRs that should not be included within this rule.",
11221      "properties": {
11222        "cidr": {
11223          "description": "CIDR is a string representing the IP Block Valid examples are \"192.168.1.1/24\" or \"2001:db9::/64\"",
11224          "type": "string"
11225        },
11226        "except": {
11227          "description": "Except is a slice of CIDRs that should not be included within an IP Block Valid examples are \"192.168.1.1/24\" or \"2001:db9::/64\" Except values will be rejected if they are outside the CIDR range",
11228          "items": {
11229            "type": "string"
11230          },
11231          "type": "array"
11232        }
11233      },
11234      "required": [
11235        "cidr"
11236      ],
11237      "type": "object"
11238    },
11239    "io.k8s.api.networking.v1.Ingress": {
11240      "description": "Ingress is a collection of rules that allow inbound connections to reach the endpoints defined by a backend. An Ingress can be configured to give services externally-reachable urls, load balance traffic, terminate SSL, offer name based virtual hosting etc.",
11241      "properties": {
11242        "apiVersion": {
11243          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
11244          "type": "string"
11245        },
11246        "kind": {
11247          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
11248          "type": "string"
11249        },
11250        "metadata": {
11251          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
11252          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
11253        },
11254        "spec": {
11255          "$ref": "#/definitions/io.k8s.api.networking.v1.IngressSpec",
11256          "description": "Spec is the desired state of the Ingress. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status"
11257        },
11258        "status": {
11259          "$ref": "#/definitions/io.k8s.api.networking.v1.IngressStatus",
11260          "description": "Status is the current state of the Ingress. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status"
11261        }
11262      },
11263      "type": "object",
11264      "x-kubernetes-group-version-kind": [
11265        {
11266          "group": "networking.k8s.io",
11267          "kind": "Ingress",
11268          "version": "v1"
11269        }
11270      ]
11271    },
11272    "io.k8s.api.networking.v1.IngressBackend": {
11273      "description": "IngressBackend describes all endpoints for a given service and port.",
11274      "properties": {
11275        "resource": {
11276          "$ref": "#/definitions/io.k8s.api.core.v1.TypedLocalObjectReference",
11277          "description": "Resource is an ObjectRef to another Kubernetes resource in the namespace of the Ingress object. If resource is specified, a service.Name and service.Port must not be specified. This is a mutually exclusive setting with \"Service\"."
11278        },
11279        "service": {
11280          "$ref": "#/definitions/io.k8s.api.networking.v1.IngressServiceBackend",
11281          "description": "Service references a Service as a Backend. This is a mutually exclusive setting with \"Resource\"."
11282        }
11283      },
11284      "type": "object"
11285    },
11286    "io.k8s.api.networking.v1.IngressClass": {
11287      "description": "IngressClass represents the class of the Ingress, referenced by the Ingress Spec. The `ingressclass.kubernetes.io/is-default-class` annotation can be used to indicate that an IngressClass should be considered default. When a single IngressClass resource has this annotation set to true, new Ingress resources without a class specified will be assigned this default class.",
11288      "properties": {
11289        "apiVersion": {
11290          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
11291          "type": "string"
11292        },
11293        "kind": {
11294          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
11295          "type": "string"
11296        },
11297        "metadata": {
11298          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
11299          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
11300        },
11301        "spec": {
11302          "$ref": "#/definitions/io.k8s.api.networking.v1.IngressClassSpec",
11303          "description": "Spec is the desired state of the IngressClass. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status"
11304        }
11305      },
11306      "type": "object",
11307      "x-kubernetes-group-version-kind": [
11308        {
11309          "group": "networking.k8s.io",
11310          "kind": "IngressClass",
11311          "version": "v1"
11312        }
11313      ]
11314    },
11315    "io.k8s.api.networking.v1.IngressClassList": {
11316      "description": "IngressClassList is a collection of IngressClasses.",
11317      "properties": {
11318        "apiVersion": {
11319          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
11320          "type": "string"
11321        },
11322        "items": {
11323          "description": "Items is the list of IngressClasses.",
11324          "items": {
11325            "$ref": "#/definitions/io.k8s.api.networking.v1.IngressClass"
11326          },
11327          "type": "array"
11328        },
11329        "kind": {
11330          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
11331          "type": "string"
11332        },
11333        "metadata": {
11334          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
11335          "description": "Standard list metadata."
11336        }
11337      },
11338      "required": [
11339        "items"
11340      ],
11341      "type": "object",
11342      "x-kubernetes-group-version-kind": [
11343        {
11344          "group": "networking.k8s.io",
11345          "kind": "IngressClassList",
11346          "version": "v1"
11347        }
11348      ]
11349    },
11350    "io.k8s.api.networking.v1.IngressClassParametersReference": {
11351      "description": "IngressClassParametersReference identifies an API object. This can be used to specify a cluster or namespace-scoped resource.",
11352      "properties": {
11353        "apiGroup": {
11354          "description": "APIGroup is the group for the resource being referenced. If APIGroup is not specified, the specified Kind must be in the core API group. For any other third-party types, APIGroup is required.",
11355          "type": "string"
11356        },
11357        "kind": {
11358          "description": "Kind is the type of resource being referenced.",
11359          "type": "string"
11360        },
11361        "name": {
11362          "description": "Name is the name of resource being referenced.",
11363          "type": "string"
11364        },
11365        "namespace": {
11366          "description": "Namespace is the namespace of the resource being referenced. This field is required when scope is set to \"Namespace\" and must be unset when scope is set to \"Cluster\".",
11367          "type": "string"
11368        },
11369        "scope": {
11370          "description": "Scope represents if this refers to a cluster or namespace scoped resource. This may be set to \"Cluster\" (default) or \"Namespace\". Field can be enabled with IngressClassNamespacedParams feature gate.",
11371          "type": "string"
11372        }
11373      },
11374      "required": [
11375        "kind",
11376        "name"
11377      ],
11378      "type": "object"
11379    },
11380    "io.k8s.api.networking.v1.IngressClassSpec": {
11381      "description": "IngressClassSpec provides information about the class of an Ingress.",
11382      "properties": {
11383        "controller": {
11384          "description": "Controller refers to the name of the controller that should handle this class. This allows for different \"flavors\" that are controlled by the same controller. For example, you may have different Parameters for the same implementing controller. This should be specified as a domain-prefixed path no more than 250 characters in length, e.g. \"acme.io/ingress-controller\". This field is immutable.",
11385          "type": "string"
11386        },
11387        "parameters": {
11388          "$ref": "#/definitions/io.k8s.api.networking.v1.IngressClassParametersReference",
11389          "description": "Parameters is a link to a custom resource containing additional configuration for the controller. This is optional if the controller does not require extra parameters."
11390        }
11391      },
11392      "type": "object"
11393    },
11394    "io.k8s.api.networking.v1.IngressList": {
11395      "description": "IngressList is a collection of Ingress.",
11396      "properties": {
11397        "apiVersion": {
11398          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
11399          "type": "string"
11400        },
11401        "items": {
11402          "description": "Items is the list of Ingress.",
11403          "items": {
11404            "$ref": "#/definitions/io.k8s.api.networking.v1.Ingress"
11405          },
11406          "type": "array"
11407        },
11408        "kind": {
11409          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
11410          "type": "string"
11411        },
11412        "metadata": {
11413          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
11414          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
11415        }
11416      },
11417      "required": [
11418        "items"
11419      ],
11420      "type": "object",
11421      "x-kubernetes-group-version-kind": [
11422        {
11423          "group": "networking.k8s.io",
11424          "kind": "IngressList",
11425          "version": "v1"
11426        }
11427      ]
11428    },
11429    "io.k8s.api.networking.v1.IngressRule": {
11430      "description": "IngressRule represents the rules mapping the paths under a specified host to the related backend services. Incoming requests are first evaluated for a host match, then routed to the backend associated with the matching IngressRuleValue.",
11431      "properties": {
11432        "host": {
11433          "description": "Host is the fully qualified domain name of a network host, as defined by RFC 3986. Note the following deviations from the \"host\" part of the URI as defined in RFC 3986: 1. IPs are not allowed. Currently an IngressRuleValue can only apply to\n   the IP in the Spec of the parent Ingress.\n2. The `:` delimiter is not respected because ports are not allowed.\n\t  Currently the port of an Ingress is implicitly :80 for http and\n\t  :443 for https.\nBoth these may change in the future. Incoming requests are matched against the host before the IngressRuleValue. If the host is unspecified, the Ingress routes all traffic based on the specified IngressRuleValue.\n\nHost can be \"precise\" which is a domain name without the terminating dot of a network host (e.g. \"foo.bar.com\") or \"wildcard\", which is a domain name prefixed with a single wildcard label (e.g. \"*.foo.com\"). The wildcard character '*' must appear by itself as the first DNS label and matches only a single label. You cannot have a wildcard label by itself (e.g. Host == \"*\"). Requests will be matched against the Host field in the following way: 1. If Host is precise, the request matches this rule if the http host header is equal to Host. 2. If Host is a wildcard, then the request matches this rule if the http host header is to equal to the suffix (removing the first label) of the wildcard rule.",
11434          "type": "string"
11435        },
11436        "http": {
11437          "$ref": "#/definitions/io.k8s.api.networking.v1.HTTPIngressRuleValue"
11438        }
11439      },
11440      "type": "object"
11441    },
11442    "io.k8s.api.networking.v1.IngressServiceBackend": {
11443      "description": "IngressServiceBackend references a Kubernetes Service as a Backend.",
11444      "properties": {
11445        "name": {
11446          "description": "Name is the referenced service. The service must exist in the same namespace as the Ingress object.",
11447          "type": "string"
11448        },
11449        "port": {
11450          "$ref": "#/definitions/io.k8s.api.networking.v1.ServiceBackendPort",
11451          "description": "Port of the referenced service. A port name or port number is required for a IngressServiceBackend."
11452        }
11453      },
11454      "required": [
11455        "name"
11456      ],
11457      "type": "object"
11458    },
11459    "io.k8s.api.networking.v1.IngressSpec": {
11460      "description": "IngressSpec describes the Ingress the user wishes to exist.",
11461      "properties": {
11462        "defaultBackend": {
11463          "$ref": "#/definitions/io.k8s.api.networking.v1.IngressBackend",
11464          "description": "DefaultBackend is the backend that should handle requests that don't match any rule. If Rules are not specified, DefaultBackend must be specified. If DefaultBackend is not set, the handling of requests that do not match any of the rules will be up to the Ingress controller."
11465        },
11466        "ingressClassName": {
11467          "description": "IngressClassName is the name of the IngressClass cluster resource. The associated IngressClass defines which controller will implement the resource. This replaces the deprecated `kubernetes.io/ingress.class` annotation. For backwards compatibility, when that annotation is set, it must be given precedence over this field. The controller may emit a warning if the field and annotation have different values. Implementations of this API should ignore Ingresses without a class specified. An IngressClass resource may be marked as default, which can be used to set a default value for this field. For more information, refer to the IngressClass documentation.",
11468          "type": "string"
11469        },
11470        "rules": {
11471          "description": "A list of host rules used to configure the Ingress. If unspecified, or no rule matches, all traffic is sent to the default backend.",
11472          "items": {
11473            "$ref": "#/definitions/io.k8s.api.networking.v1.IngressRule"
11474          },
11475          "type": "array",
11476          "x-kubernetes-list-type": "atomic"
11477        },
11478        "tls": {
11479          "description": "TLS configuration. Currently the Ingress only supports a single TLS port, 443. If multiple members of this list specify different hosts, they will be multiplexed on the same port according to the hostname specified through the SNI TLS extension, if the ingress controller fulfilling the ingress supports SNI.",
11480          "items": {
11481            "$ref": "#/definitions/io.k8s.api.networking.v1.IngressTLS"
11482          },
11483          "type": "array",
11484          "x-kubernetes-list-type": "atomic"
11485        }
11486      },
11487      "type": "object"
11488    },
11489    "io.k8s.api.networking.v1.IngressStatus": {
11490      "description": "IngressStatus describe the current state of the Ingress.",
11491      "properties": {
11492        "loadBalancer": {
11493          "$ref": "#/definitions/io.k8s.api.core.v1.LoadBalancerStatus",
11494          "description": "LoadBalancer contains the current status of the load-balancer."
11495        }
11496      },
11497      "type": "object"
11498    },
11499    "io.k8s.api.networking.v1.IngressTLS": {
11500      "description": "IngressTLS describes the transport layer security associated with an Ingress.",
11501      "properties": {
11502        "hosts": {
11503          "description": "Hosts are a list of hosts included in the TLS certificate. The values in this list must match the name/s used in the tlsSecret. Defaults to the wildcard host setting for the loadbalancer controller fulfilling this Ingress, if left unspecified.",
11504          "items": {
11505            "type": "string"
11506          },
11507          "type": "array",
11508          "x-kubernetes-list-type": "atomic"
11509        },
11510        "secretName": {
11511          "description": "SecretName is the name of the secret used to terminate TLS traffic on port 443. Field is left optional to allow TLS routing based on SNI hostname alone. If the SNI host in a listener conflicts with the \"Host\" header field used by an IngressRule, the SNI host is used for termination and value of the Host header is used for routing.",
11512          "type": "string"
11513        }
11514      },
11515      "type": "object"
11516    },
11517    "io.k8s.api.networking.v1.NetworkPolicy": {
11518      "description": "NetworkPolicy describes what network traffic is allowed for a set of Pods",
11519      "properties": {
11520        "apiVersion": {
11521          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
11522          "type": "string"
11523        },
11524        "kind": {
11525          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
11526          "type": "string"
11527        },
11528        "metadata": {
11529          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
11530          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
11531        },
11532        "spec": {
11533          "$ref": "#/definitions/io.k8s.api.networking.v1.NetworkPolicySpec",
11534          "description": "Specification of the desired behavior for this NetworkPolicy."
11535        }
11536      },
11537      "type": "object",
11538      "x-kubernetes-group-version-kind": [
11539        {
11540          "group": "networking.k8s.io",
11541          "kind": "NetworkPolicy",
11542          "version": "v1"
11543        }
11544      ]
11545    },
11546    "io.k8s.api.networking.v1.NetworkPolicyEgressRule": {
11547      "description": "NetworkPolicyEgressRule describes a particular set of traffic that is allowed out of pods matched by a NetworkPolicySpec's podSelector. The traffic must match both ports and to. This type is beta-level in 1.8",
11548      "properties": {
11549        "ports": {
11550          "description": "List of destination ports for outgoing traffic. Each item in this list is combined using a logical OR. If this field is empty or missing, this rule matches all ports (traffic not restricted by port). If this field is present and contains at least one item, then this rule allows traffic only if the traffic matches at least one port in the list.",
11551          "items": {
11552            "$ref": "#/definitions/io.k8s.api.networking.v1.NetworkPolicyPort"
11553          },
11554          "type": "array"
11555        },
11556        "to": {
11557          "description": "List of destinations for outgoing traffic of pods selected for this rule. Items in this list are combined using a logical OR operation. If this field is empty or missing, this rule matches all destinations (traffic not restricted by destination). If this field is present and contains at least one item, this rule allows traffic only if the traffic matches at least one item in the to list.",
11558          "items": {
11559            "$ref": "#/definitions/io.k8s.api.networking.v1.NetworkPolicyPeer"
11560          },
11561          "type": "array"
11562        }
11563      },
11564      "type": "object"
11565    },
11566    "io.k8s.api.networking.v1.NetworkPolicyIngressRule": {
11567      "description": "NetworkPolicyIngressRule describes a particular set of traffic that is allowed to the pods matched by a NetworkPolicySpec's podSelector. The traffic must match both ports and from.",
11568      "properties": {
11569        "from": {
11570          "description": "List of sources which should be able to access the pods selected for this rule. Items in this list are combined using a logical OR operation. If this field is empty or missing, this rule matches all sources (traffic not restricted by source). If this field is present and contains at least one item, this rule allows traffic only if the traffic matches at least one item in the from list.",
11571          "items": {
11572            "$ref": "#/definitions/io.k8s.api.networking.v1.NetworkPolicyPeer"
11573          },
11574          "type": "array"
11575        },
11576        "ports": {
11577          "description": "List of ports which should be made accessible on the pods selected for this rule. Each item in this list is combined using a logical OR. If this field is empty or missing, this rule matches all ports (traffic not restricted by port). If this field is present and contains at least one item, then this rule allows traffic only if the traffic matches at least one port in the list.",
11578          "items": {
11579            "$ref": "#/definitions/io.k8s.api.networking.v1.NetworkPolicyPort"
11580          },
11581          "type": "array"
11582        }
11583      },
11584      "type": "object"
11585    },
11586    "io.k8s.api.networking.v1.NetworkPolicyList": {
11587      "description": "NetworkPolicyList is a list of NetworkPolicy objects.",
11588      "properties": {
11589        "apiVersion": {
11590          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
11591          "type": "string"
11592        },
11593        "items": {
11594          "description": "Items is a list of schema objects.",
11595          "items": {
11596            "$ref": "#/definitions/io.k8s.api.networking.v1.NetworkPolicy"
11597          },
11598          "type": "array"
11599        },
11600        "kind": {
11601          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
11602          "type": "string"
11603        },
11604        "metadata": {
11605          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
11606          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
11607        }
11608      },
11609      "required": [
11610        "items"
11611      ],
11612      "type": "object",
11613      "x-kubernetes-group-version-kind": [
11614        {
11615          "group": "networking.k8s.io",
11616          "kind": "NetworkPolicyList",
11617          "version": "v1"
11618        }
11619      ]
11620    },
11621    "io.k8s.api.networking.v1.NetworkPolicyPeer": {
11622      "description": "NetworkPolicyPeer describes a peer to allow traffic to/from. Only certain combinations of fields are allowed",
11623      "properties": {
11624        "ipBlock": {
11625          "$ref": "#/definitions/io.k8s.api.networking.v1.IPBlock",
11626          "description": "IPBlock defines policy on a particular IPBlock. If this field is set then neither of the other fields can be."
11627        },
11628        "namespaceSelector": {
11629          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector",
11630          "description": "Selects Namespaces using cluster-scoped labels. This field follows standard label selector semantics; if present but empty, it selects all namespaces.\n\nIf PodSelector is also set, then the NetworkPolicyPeer as a whole selects the Pods matching PodSelector in the Namespaces selected by NamespaceSelector. Otherwise it selects all Pods in the Namespaces selected by NamespaceSelector."
11631        },
11632        "podSelector": {
11633          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector",
11634          "description": "This is a label selector which selects Pods. This field follows standard label selector semantics; if present but empty, it selects all pods.\n\nIf NamespaceSelector is also set, then the NetworkPolicyPeer as a whole selects the Pods matching PodSelector in the Namespaces selected by NamespaceSelector. Otherwise it selects the Pods matching PodSelector in the policy's own Namespace."
11635        }
11636      },
11637      "type": "object"
11638    },
11639    "io.k8s.api.networking.v1.NetworkPolicyPort": {
11640      "description": "NetworkPolicyPort describes a port to allow traffic on",
11641      "properties": {
11642        "endPort": {
11643          "description": "If set, indicates that the range of ports from port to endPort, inclusive, should be allowed by the policy. This field cannot be defined if the port field is not defined or if the port field is defined as a named (string) port. The endPort must be equal or greater than port. This feature is in Beta state and is enabled by default. It can be disabled using the Feature Gate \"NetworkPolicyEndPort\".",
11644          "format": "int32",
11645          "type": "integer"
11646        },
11647        "port": {
11648          "$ref": "#/definitions/io.k8s.apimachinery.pkg.util.intstr.IntOrString",
11649          "description": "The port on the given protocol. This can either be a numerical or named port on a pod. If this field is not provided, this matches all port names and numbers. If present, only traffic on the specified protocol AND port will be matched."
11650        },
11651        "protocol": {
11652          "description": "The protocol (TCP, UDP, or SCTP) which traffic must match. If not specified, this field defaults to TCP.",
11653          "type": "string"
11654        }
11655      },
11656      "type": "object"
11657    },
11658    "io.k8s.api.networking.v1.NetworkPolicySpec": {
11659      "description": "NetworkPolicySpec provides the specification of a NetworkPolicy",
11660      "properties": {
11661        "egress": {
11662          "description": "List of egress rules to be applied to the selected pods. Outgoing traffic is allowed if there are no NetworkPolicies selecting the pod (and cluster policy otherwise allows the traffic), OR if the traffic matches at least one egress rule across all of the NetworkPolicy objects whose podSelector matches the pod. If this field is empty then this NetworkPolicy limits all outgoing traffic (and serves solely to ensure that the pods it selects are isolated by default). This field is beta-level in 1.8",
11663          "items": {
11664            "$ref": "#/definitions/io.k8s.api.networking.v1.NetworkPolicyEgressRule"
11665          },
11666          "type": "array"
11667        },
11668        "ingress": {
11669          "description": "List of ingress rules to be applied to the selected pods. Traffic is allowed to a pod if there are no NetworkPolicies selecting the pod (and cluster policy otherwise allows the traffic), OR if the traffic source is the pod's local node, OR if the traffic matches at least one ingress rule across all of the NetworkPolicy objects whose podSelector matches the pod. If this field is empty then this NetworkPolicy does not allow any traffic (and serves solely to ensure that the pods it selects are isolated by default)",
11670          "items": {
11671            "$ref": "#/definitions/io.k8s.api.networking.v1.NetworkPolicyIngressRule"
11672          },
11673          "type": "array"
11674        },
11675        "podSelector": {
11676          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector",
11677          "description": "Selects the pods to which this NetworkPolicy object applies. The array of ingress rules is applied to any pods selected by this field. Multiple network policies can select the same set of pods. In this case, the ingress rules for each are combined additively. This field is NOT optional and follows standard label selector semantics. An empty podSelector matches all pods in this namespace."
11678        },
11679        "policyTypes": {
11680          "description": "List of rule types that the NetworkPolicy relates to. Valid options are [\"Ingress\"], [\"Egress\"], or [\"Ingress\", \"Egress\"]. If this field is not specified, it will default based on the existence of Ingress or Egress rules; policies that contain an Egress section are assumed to affect Egress, and all policies (whether or not they contain an Ingress section) are assumed to affect Ingress. If you want to write an egress-only policy, you must explicitly specify policyTypes [ \"Egress\" ]. Likewise, if you want to write a policy that specifies that no egress is allowed, you must specify a policyTypes value that include \"Egress\" (since such a policy would not include an Egress section and would otherwise default to just [ \"Ingress\" ]). This field is beta-level in 1.8",
11681          "items": {
11682            "type": "string"
11683          },
11684          "type": "array"
11685        }
11686      },
11687      "required": [
11688        "podSelector"
11689      ],
11690      "type": "object"
11691    },
11692    "io.k8s.api.networking.v1.ServiceBackendPort": {
11693      "description": "ServiceBackendPort is the service port being referenced.",
11694      "properties": {
11695        "name": {
11696          "description": "Name is the name of the port on the Service. This is a mutually exclusive setting with \"Number\".",
11697          "type": "string"
11698        },
11699        "number": {
11700          "description": "Number is the numerical port number (e.g. 80) on the Service. This is a mutually exclusive setting with \"Name\".",
11701          "format": "int32",
11702          "type": "integer"
11703        }
11704      },
11705      "type": "object"
11706    },
11707    "io.k8s.api.node.v1.Overhead": {
11708      "description": "Overhead structure represents the resource overhead associated with running a pod.",
11709      "properties": {
11710        "podFixed": {
11711          "additionalProperties": {
11712            "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity"
11713          },
11714          "description": "PodFixed represents the fixed resource overhead associated with running a pod.",
11715          "type": "object"
11716        }
11717      },
11718      "type": "object"
11719    },
11720    "io.k8s.api.node.v1.RuntimeClass": {
11721      "description": "RuntimeClass defines a class of container runtime supported in the cluster. The RuntimeClass is used to determine which container runtime is used to run all containers in a pod. RuntimeClasses are manually defined by a user or cluster provisioner, and referenced in the PodSpec. The Kubelet is responsible for resolving the RuntimeClassName reference before running the pod.  For more details, see https://kubernetes.io/docs/concepts/containers/runtime-class/",
11722      "properties": {
11723        "apiVersion": {
11724          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
11725          "type": "string"
11726        },
11727        "handler": {
11728          "description": "Handler specifies the underlying runtime and configuration that the CRI implementation will use to handle pods of this class. The possible values are specific to the node & CRI configuration.  It is assumed that all handlers are available on every node, and handlers of the same name are equivalent on every node. For example, a handler called \"runc\" might specify that the runc OCI runtime (using native Linux containers) will be used to run the containers in a pod. The Handler must be lowercase, conform to the DNS Label (RFC 1123) requirements, and is immutable.",
11729          "type": "string"
11730        },
11731        "kind": {
11732          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
11733          "type": "string"
11734        },
11735        "metadata": {
11736          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
11737          "description": "More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
11738        },
11739        "overhead": {
11740          "$ref": "#/definitions/io.k8s.api.node.v1.Overhead",
11741          "description": "Overhead represents the resource overhead associated with running a pod for a given RuntimeClass. For more details, see\n https://kubernetes.io/docs/concepts/scheduling-eviction/pod-overhead/\nThis field is in beta starting v1.18 and is only honored by servers that enable the PodOverhead feature."
11742        },
11743        "scheduling": {
11744          "$ref": "#/definitions/io.k8s.api.node.v1.Scheduling",
11745          "description": "Scheduling holds the scheduling constraints to ensure that pods running with this RuntimeClass are scheduled to nodes that support it. If scheduling is nil, this RuntimeClass is assumed to be supported by all nodes."
11746        }
11747      },
11748      "required": [
11749        "handler"
11750      ],
11751      "type": "object",
11752      "x-kubernetes-group-version-kind": [
11753        {
11754          "group": "node.k8s.io",
11755          "kind": "RuntimeClass",
11756          "version": "v1"
11757        }
11758      ]
11759    },
11760    "io.k8s.api.node.v1.RuntimeClassList": {
11761      "description": "RuntimeClassList is a list of RuntimeClass objects.",
11762      "properties": {
11763        "apiVersion": {
11764          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
11765          "type": "string"
11766        },
11767        "items": {
11768          "description": "Items is a list of schema objects.",
11769          "items": {
11770            "$ref": "#/definitions/io.k8s.api.node.v1.RuntimeClass"
11771          },
11772          "type": "array"
11773        },
11774        "kind": {
11775          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
11776          "type": "string"
11777        },
11778        "metadata": {
11779          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
11780          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
11781        }
11782      },
11783      "required": [
11784        "items"
11785      ],
11786      "type": "object",
11787      "x-kubernetes-group-version-kind": [
11788        {
11789          "group": "node.k8s.io",
11790          "kind": "RuntimeClassList",
11791          "version": "v1"
11792        }
11793      ]
11794    },
11795    "io.k8s.api.node.v1.Scheduling": {
11796      "description": "Scheduling specifies the scheduling constraints for nodes supporting a RuntimeClass.",
11797      "properties": {
11798        "nodeSelector": {
11799          "additionalProperties": {
11800            "type": "string"
11801          },
11802          "description": "nodeSelector lists labels that must be present on nodes that support this RuntimeClass. Pods using this RuntimeClass can only be scheduled to a node matched by this selector. The RuntimeClass nodeSelector is merged with a pod's existing nodeSelector. Any conflicts will cause the pod to be rejected in admission.",
11803          "type": "object",
11804          "x-kubernetes-map-type": "atomic"
11805        },
11806        "tolerations": {
11807          "description": "tolerations are appended (excluding duplicates) to pods running with this RuntimeClass during admission, effectively unioning the set of nodes tolerated by the pod and the RuntimeClass.",
11808          "items": {
11809            "$ref": "#/definitions/io.k8s.api.core.v1.Toleration"
11810          },
11811          "type": "array",
11812          "x-kubernetes-list-type": "atomic"
11813        }
11814      },
11815      "type": "object"
11816    },
11817    "io.k8s.api.node.v1alpha1.Overhead": {
11818      "description": "Overhead structure represents the resource overhead associated with running a pod.",
11819      "properties": {
11820        "podFixed": {
11821          "additionalProperties": {
11822            "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity"
11823          },
11824          "description": "PodFixed represents the fixed resource overhead associated with running a pod.",
11825          "type": "object"
11826        }
11827      },
11828      "type": "object"
11829    },
11830    "io.k8s.api.node.v1alpha1.RuntimeClass": {
11831      "description": "RuntimeClass defines a class of container runtime supported in the cluster. The RuntimeClass is used to determine which container runtime is used to run all containers in a pod. RuntimeClasses are (currently) manually defined by a user or cluster provisioner, and referenced in the PodSpec. The Kubelet is responsible for resolving the RuntimeClassName reference before running the pod.  For more details, see https://git.k8s.io/enhancements/keps/sig-node/585-runtime-class",
11832      "properties": {
11833        "apiVersion": {
11834          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
11835          "type": "string"
11836        },
11837        "kind": {
11838          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
11839          "type": "string"
11840        },
11841        "metadata": {
11842          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
11843          "description": "More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
11844        },
11845        "spec": {
11846          "$ref": "#/definitions/io.k8s.api.node.v1alpha1.RuntimeClassSpec",
11847          "description": "Specification of the RuntimeClass More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status"
11848        }
11849      },
11850      "required": [
11851        "spec"
11852      ],
11853      "type": "object",
11854      "x-kubernetes-group-version-kind": [
11855        {
11856          "group": "node.k8s.io",
11857          "kind": "RuntimeClass",
11858          "version": "v1alpha1"
11859        }
11860      ]
11861    },
11862    "io.k8s.api.node.v1alpha1.RuntimeClassList": {
11863      "description": "RuntimeClassList is a list of RuntimeClass objects.",
11864      "properties": {
11865        "apiVersion": {
11866          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
11867          "type": "string"
11868        },
11869        "items": {
11870          "description": "Items is a list of schema objects.",
11871          "items": {
11872            "$ref": "#/definitions/io.k8s.api.node.v1alpha1.RuntimeClass"
11873          },
11874          "type": "array"
11875        },
11876        "kind": {
11877          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
11878          "type": "string"
11879        },
11880        "metadata": {
11881          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
11882          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
11883        }
11884      },
11885      "required": [
11886        "items"
11887      ],
11888      "type": "object",
11889      "x-kubernetes-group-version-kind": [
11890        {
11891          "group": "node.k8s.io",
11892          "kind": "RuntimeClassList",
11893          "version": "v1alpha1"
11894        }
11895      ]
11896    },
11897    "io.k8s.api.node.v1alpha1.RuntimeClassSpec": {
11898      "description": "RuntimeClassSpec is a specification of a RuntimeClass. It contains parameters that are required to describe the RuntimeClass to the Container Runtime Interface (CRI) implementation, as well as any other components that need to understand how the pod will be run. The RuntimeClassSpec is immutable.",
11899      "properties": {
11900        "overhead": {
11901          "$ref": "#/definitions/io.k8s.api.node.v1alpha1.Overhead",
11902          "description": "Overhead represents the resource overhead associated with running a pod for a given RuntimeClass. For more details, see https://git.k8s.io/enhancements/keps/sig-node/688-pod-overhead/README.md This field is beta-level as of Kubernetes v1.18, and is only honored by servers that enable the PodOverhead feature."
11903        },
11904        "runtimeHandler": {
11905          "description": "RuntimeHandler specifies the underlying runtime and configuration that the CRI implementation will use to handle pods of this class. The possible values are specific to the node & CRI configuration.  It is assumed that all handlers are available on every node, and handlers of the same name are equivalent on every node. For example, a handler called \"runc\" might specify that the runc OCI runtime (using native Linux containers) will be used to run the containers in a pod. The RuntimeHandler must be lowercase, conform to the DNS Label (RFC 1123) requirements, and is immutable.",
11906          "type": "string"
11907        },
11908        "scheduling": {
11909          "$ref": "#/definitions/io.k8s.api.node.v1alpha1.Scheduling",
11910          "description": "Scheduling holds the scheduling constraints to ensure that pods running with this RuntimeClass are scheduled to nodes that support it. If scheduling is nil, this RuntimeClass is assumed to be supported by all nodes."
11911        }
11912      },
11913      "required": [
11914        "runtimeHandler"
11915      ],
11916      "type": "object"
11917    },
11918    "io.k8s.api.node.v1alpha1.Scheduling": {
11919      "description": "Scheduling specifies the scheduling constraints for nodes supporting a RuntimeClass.",
11920      "properties": {
11921        "nodeSelector": {
11922          "additionalProperties": {
11923            "type": "string"
11924          },
11925          "description": "nodeSelector lists labels that must be present on nodes that support this RuntimeClass. Pods using this RuntimeClass can only be scheduled to a node matched by this selector. The RuntimeClass nodeSelector is merged with a pod's existing nodeSelector. Any conflicts will cause the pod to be rejected in admission.",
11926          "type": "object",
11927          "x-kubernetes-map-type": "atomic"
11928        },
11929        "tolerations": {
11930          "description": "tolerations are appended (excluding duplicates) to pods running with this RuntimeClass during admission, effectively unioning the set of nodes tolerated by the pod and the RuntimeClass.",
11931          "items": {
11932            "$ref": "#/definitions/io.k8s.api.core.v1.Toleration"
11933          },
11934          "type": "array",
11935          "x-kubernetes-list-type": "atomic"
11936        }
11937      },
11938      "type": "object"
11939    },
11940    "io.k8s.api.node.v1beta1.Overhead": {
11941      "description": "Overhead structure represents the resource overhead associated with running a pod.",
11942      "properties": {
11943        "podFixed": {
11944          "additionalProperties": {
11945            "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity"
11946          },
11947          "description": "PodFixed represents the fixed resource overhead associated with running a pod.",
11948          "type": "object"
11949        }
11950      },
11951      "type": "object"
11952    },
11953    "io.k8s.api.node.v1beta1.RuntimeClass": {
11954      "description": "RuntimeClass defines a class of container runtime supported in the cluster. The RuntimeClass is used to determine which container runtime is used to run all containers in a pod. RuntimeClasses are (currently) manually defined by a user or cluster provisioner, and referenced in the PodSpec. The Kubelet is responsible for resolving the RuntimeClassName reference before running the pod.  For more details, see https://git.k8s.io/enhancements/keps/sig-node/585-runtime-class",
11955      "properties": {
11956        "apiVersion": {
11957          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
11958          "type": "string"
11959        },
11960        "handler": {
11961          "description": "Handler specifies the underlying runtime and configuration that the CRI implementation will use to handle pods of this class. The possible values are specific to the node & CRI configuration.  It is assumed that all handlers are available on every node, and handlers of the same name are equivalent on every node. For example, a handler called \"runc\" might specify that the runc OCI runtime (using native Linux containers) will be used to run the containers in a pod. The Handler must be lowercase, conform to the DNS Label (RFC 1123) requirements, and is immutable.",
11962          "type": "string"
11963        },
11964        "kind": {
11965          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
11966          "type": "string"
11967        },
11968        "metadata": {
11969          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
11970          "description": "More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
11971        },
11972        "overhead": {
11973          "$ref": "#/definitions/io.k8s.api.node.v1beta1.Overhead",
11974          "description": "Overhead represents the resource overhead associated with running a pod for a given RuntimeClass. For more details, see https://git.k8s.io/enhancements/keps/sig-node/688-pod-overhead/README.md This field is beta-level as of Kubernetes v1.18, and is only honored by servers that enable the PodOverhead feature."
11975        },
11976        "scheduling": {
11977          "$ref": "#/definitions/io.k8s.api.node.v1beta1.Scheduling",
11978          "description": "Scheduling holds the scheduling constraints to ensure that pods running with this RuntimeClass are scheduled to nodes that support it. If scheduling is nil, this RuntimeClass is assumed to be supported by all nodes."
11979        }
11980      },
11981      "required": [
11982        "handler"
11983      ],
11984      "type": "object",
11985      "x-kubernetes-group-version-kind": [
11986        {
11987          "group": "node.k8s.io",
11988          "kind": "RuntimeClass",
11989          "version": "v1beta1"
11990        }
11991      ]
11992    },
11993    "io.k8s.api.node.v1beta1.RuntimeClassList": {
11994      "description": "RuntimeClassList is a list of RuntimeClass objects.",
11995      "properties": {
11996        "apiVersion": {
11997          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
11998          "type": "string"
11999        },
12000        "items": {
12001          "description": "Items is a list of schema objects.",
12002          "items": {
12003            "$ref": "#/definitions/io.k8s.api.node.v1beta1.RuntimeClass"
12004          },
12005          "type": "array"
12006        },
12007        "kind": {
12008          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
12009          "type": "string"
12010        },
12011        "metadata": {
12012          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
12013          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
12014        }
12015      },
12016      "required": [
12017        "items"
12018      ],
12019      "type": "object",
12020      "x-kubernetes-group-version-kind": [
12021        {
12022          "group": "node.k8s.io",
12023          "kind": "RuntimeClassList",
12024          "version": "v1beta1"
12025        }
12026      ]
12027    },
12028    "io.k8s.api.node.v1beta1.Scheduling": {
12029      "description": "Scheduling specifies the scheduling constraints for nodes supporting a RuntimeClass.",
12030      "properties": {
12031        "nodeSelector": {
12032          "additionalProperties": {
12033            "type": "string"
12034          },
12035          "description": "nodeSelector lists labels that must be present on nodes that support this RuntimeClass. Pods using this RuntimeClass can only be scheduled to a node matched by this selector. The RuntimeClass nodeSelector is merged with a pod's existing nodeSelector. Any conflicts will cause the pod to be rejected in admission.",
12036          "type": "object",
12037          "x-kubernetes-map-type": "atomic"
12038        },
12039        "tolerations": {
12040          "description": "tolerations are appended (excluding duplicates) to pods running with this RuntimeClass during admission, effectively unioning the set of nodes tolerated by the pod and the RuntimeClass.",
12041          "items": {
12042            "$ref": "#/definitions/io.k8s.api.core.v1.Toleration"
12043          },
12044          "type": "array",
12045          "x-kubernetes-list-type": "atomic"
12046        }
12047      },
12048      "type": "object"
12049    },
12050    "io.k8s.api.policy.v1.Eviction": {
12051      "description": "Eviction evicts a pod from its node subject to certain policies and safety constraints. This is a subresource of Pod.  A request to cause such an eviction is created by POSTing to .../pods/<pod name>/evictions.",
12052      "properties": {
12053        "apiVersion": {
12054          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
12055          "type": "string"
12056        },
12057        "deleteOptions": {
12058          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions",
12059          "description": "DeleteOptions may be provided"
12060        },
12061        "kind": {
12062          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
12063          "type": "string"
12064        },
12065        "metadata": {
12066          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
12067          "description": "ObjectMeta describes the pod that is being evicted."
12068        }
12069      },
12070      "type": "object",
12071      "x-kubernetes-group-version-kind": [
12072        {
12073          "group": "policy",
12074          "kind": "Eviction",
12075          "version": "v1"
12076        }
12077      ]
12078    },
12079    "io.k8s.api.policy.v1.PodDisruptionBudget": {
12080      "description": "PodDisruptionBudget is an object to define the max disruption that can be caused to a collection of pods",
12081      "properties": {
12082        "apiVersion": {
12083          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
12084          "type": "string"
12085        },
12086        "kind": {
12087          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
12088          "type": "string"
12089        },
12090        "metadata": {
12091          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
12092          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
12093        },
12094        "spec": {
12095          "$ref": "#/definitions/io.k8s.api.policy.v1.PodDisruptionBudgetSpec",
12096          "description": "Specification of the desired behavior of the PodDisruptionBudget."
12097        },
12098        "status": {
12099          "$ref": "#/definitions/io.k8s.api.policy.v1.PodDisruptionBudgetStatus",
12100          "description": "Most recently observed status of the PodDisruptionBudget."
12101        }
12102      },
12103      "type": "object",
12104      "x-kubernetes-group-version-kind": [
12105        {
12106          "group": "policy",
12107          "kind": "PodDisruptionBudget",
12108          "version": "v1"
12109        }
12110      ]
12111    },
12112    "io.k8s.api.policy.v1.PodDisruptionBudgetList": {
12113      "description": "PodDisruptionBudgetList is a collection of PodDisruptionBudgets.",
12114      "properties": {
12115        "apiVersion": {
12116          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
12117          "type": "string"
12118        },
12119        "items": {
12120          "description": "Items is a list of PodDisruptionBudgets",
12121          "items": {
12122            "$ref": "#/definitions/io.k8s.api.policy.v1.PodDisruptionBudget"
12123          },
12124          "type": "array"
12125        },
12126        "kind": {
12127          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
12128          "type": "string"
12129        },
12130        "metadata": {
12131          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
12132          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
12133        }
12134      },
12135      "required": [
12136        "items"
12137      ],
12138      "type": "object",
12139      "x-kubernetes-group-version-kind": [
12140        {
12141          "group": "policy",
12142          "kind": "PodDisruptionBudgetList",
12143          "version": "v1"
12144        }
12145      ]
12146    },
12147    "io.k8s.api.policy.v1.PodDisruptionBudgetSpec": {
12148      "description": "PodDisruptionBudgetSpec is a description of a PodDisruptionBudget.",
12149      "properties": {
12150        "maxUnavailable": {
12151          "$ref": "#/definitions/io.k8s.apimachinery.pkg.util.intstr.IntOrString",
12152          "description": "An eviction is allowed if at most \"maxUnavailable\" pods selected by \"selector\" are unavailable after the eviction, i.e. even in absence of the evicted pod. For example, one can prevent all voluntary evictions by specifying 0. This is a mutually exclusive setting with \"minAvailable\"."
12153        },
12154        "minAvailable": {
12155          "$ref": "#/definitions/io.k8s.apimachinery.pkg.util.intstr.IntOrString",
12156          "description": "An eviction is allowed if at least \"minAvailable\" pods selected by \"selector\" will still be available after the eviction, i.e. even in the absence of the evicted pod.  So for example you can prevent all voluntary evictions by specifying \"100%\"."
12157        },
12158        "selector": {
12159          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector",
12160          "description": "Label query over pods whose evictions are managed by the disruption budget. A null selector will match no pods, while an empty ({}) selector will select all pods within the namespace.",
12161          "x-kubernetes-patch-strategy": "replace"
12162        }
12163      },
12164      "type": "object"
12165    },
12166    "io.k8s.api.policy.v1.PodDisruptionBudgetStatus": {
12167      "description": "PodDisruptionBudgetStatus represents information about the status of a PodDisruptionBudget. Status may trail the actual state of a system.",
12168      "properties": {
12169        "conditions": {
12170          "description": "Conditions contain conditions for PDB. The disruption controller sets the DisruptionAllowed condition. The following are known values for the reason field (additional reasons could be added in the future): - SyncFailed: The controller encountered an error and wasn't able to compute\n              the number of allowed disruptions. Therefore no disruptions are\n              allowed and the status of the condition will be False.\n- InsufficientPods: The number of pods are either at or below the number\n                    required by the PodDisruptionBudget. No disruptions are\n                    allowed and the status of the condition will be False.\n- SufficientPods: There are more pods than required by the PodDisruptionBudget.\n                  The condition will be True, and the number of allowed\n                  disruptions are provided by the disruptionsAllowed property.",
12171          "items": {
12172            "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Condition"
12173          },
12174          "type": "array",
12175          "x-kubernetes-list-map-keys": [
12176            "type"
12177          ],
12178          "x-kubernetes-list-type": "map",
12179          "x-kubernetes-patch-merge-key": "type",
12180          "x-kubernetes-patch-strategy": "merge"
12181        },
12182        "currentHealthy": {
12183          "description": "current number of healthy pods",
12184          "format": "int32",
12185          "type": "integer"
12186        },
12187        "desiredHealthy": {
12188          "description": "minimum desired number of healthy pods",
12189          "format": "int32",
12190          "type": "integer"
12191        },
12192        "disruptedPods": {
12193          "additionalProperties": {
12194            "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time"
12195          },
12196          "description": "DisruptedPods contains information about pods whose eviction was processed by the API server eviction subresource handler but has not yet been observed by the PodDisruptionBudget controller. A pod will be in this map from the time when the API server processed the eviction request to the time when the pod is seen by PDB controller as having been marked for deletion (or after a timeout). The key in the map is the name of the pod and the value is the time when the API server processed the eviction request. If the deletion didn't occur and a pod is still there it will be removed from the list automatically by PodDisruptionBudget controller after some time. If everything goes smooth this map should be empty for the most of the time. Large number of entries in the map may indicate problems with pod deletions.",
12197          "type": "object"
12198        },
12199        "disruptionsAllowed": {
12200          "description": "Number of pod disruptions that are currently allowed.",
12201          "format": "int32",
12202          "type": "integer"
12203        },
12204        "expectedPods": {
12205          "description": "total number of pods counted by this disruption budget",
12206          "format": "int32",
12207          "type": "integer"
12208        },
12209        "observedGeneration": {
12210          "description": "Most recent generation observed when updating this PDB status. DisruptionsAllowed and other status information is valid only if observedGeneration equals to PDB's object generation.",
12211          "format": "int64",
12212          "type": "integer"
12213        }
12214      },
12215      "required": [
12216        "disruptionsAllowed",
12217        "currentHealthy",
12218        "desiredHealthy",
12219        "expectedPods"
12220      ],
12221      "type": "object"
12222    },
12223    "io.k8s.api.policy.v1beta1.AllowedCSIDriver": {
12224      "description": "AllowedCSIDriver represents a single inline CSI Driver that is allowed to be used.",
12225      "properties": {
12226        "name": {
12227          "description": "Name is the registered name of the CSI driver",
12228          "type": "string"
12229        }
12230      },
12231      "required": [
12232        "name"
12233      ],
12234      "type": "object"
12235    },
12236    "io.k8s.api.policy.v1beta1.AllowedFlexVolume": {
12237      "description": "AllowedFlexVolume represents a single Flexvolume that is allowed to be used.",
12238      "properties": {
12239        "driver": {
12240          "description": "driver is the name of the Flexvolume driver.",
12241          "type": "string"
12242        }
12243      },
12244      "required": [
12245        "driver"
12246      ],
12247      "type": "object"
12248    },
12249    "io.k8s.api.policy.v1beta1.AllowedHostPath": {
12250      "description": "AllowedHostPath defines the host volume conditions that will be enabled by a policy for pods to use. It requires the path prefix to be defined.",
12251      "properties": {
12252        "pathPrefix": {
12253          "description": "pathPrefix is the path prefix that the host volume must match. It does not support `*`. Trailing slashes are trimmed when validating the path prefix with a host path.\n\nExamples: `/foo` would allow `/foo`, `/foo/` and `/foo/bar` `/foo` would not allow `/food` or `/etc/foo`",
12254          "type": "string"
12255        },
12256        "readOnly": {
12257          "description": "when set to true, will allow host volumes matching the pathPrefix only if all volume mounts are readOnly.",
12258          "type": "boolean"
12259        }
12260      },
12261      "type": "object"
12262    },
12263    "io.k8s.api.policy.v1beta1.FSGroupStrategyOptions": {
12264      "description": "FSGroupStrategyOptions defines the strategy type and options used to create the strategy.",
12265      "properties": {
12266        "ranges": {
12267          "description": "ranges are the allowed ranges of fs groups.  If you would like to force a single fs group then supply a single range with the same start and end. Required for MustRunAs.",
12268          "items": {
12269            "$ref": "#/definitions/io.k8s.api.policy.v1beta1.IDRange"
12270          },
12271          "type": "array"
12272        },
12273        "rule": {
12274          "description": "rule is the strategy that will dictate what FSGroup is used in the SecurityContext.",
12275          "type": "string"
12276        }
12277      },
12278      "type": "object"
12279    },
12280    "io.k8s.api.policy.v1beta1.HostPortRange": {
12281      "description": "HostPortRange defines a range of host ports that will be enabled by a policy for pods to use.  It requires both the start and end to be defined.",
12282      "properties": {
12283        "max": {
12284          "description": "max is the end of the range, inclusive.",
12285          "format": "int32",
12286          "type": "integer"
12287        },
12288        "min": {
12289          "description": "min is the start of the range, inclusive.",
12290          "format": "int32",
12291          "type": "integer"
12292        }
12293      },
12294      "required": [
12295        "min",
12296        "max"
12297      ],
12298      "type": "object"
12299    },
12300    "io.k8s.api.policy.v1beta1.IDRange": {
12301      "description": "IDRange provides a min/max of an allowed range of IDs.",
12302      "properties": {
12303        "max": {
12304          "description": "max is the end of the range, inclusive.",
12305          "format": "int64",
12306          "type": "integer"
12307        },
12308        "min": {
12309          "description": "min is the start of the range, inclusive.",
12310          "format": "int64",
12311          "type": "integer"
12312        }
12313      },
12314      "required": [
12315        "min",
12316        "max"
12317      ],
12318      "type": "object"
12319    },
12320    "io.k8s.api.policy.v1beta1.PodDisruptionBudget": {
12321      "description": "PodDisruptionBudget is an object to define the max disruption that can be caused to a collection of pods",
12322      "properties": {
12323        "apiVersion": {
12324          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
12325          "type": "string"
12326        },
12327        "kind": {
12328          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
12329          "type": "string"
12330        },
12331        "metadata": {
12332          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
12333          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
12334        },
12335        "spec": {
12336          "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodDisruptionBudgetSpec",
12337          "description": "Specification of the desired behavior of the PodDisruptionBudget."
12338        },
12339        "status": {
12340          "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodDisruptionBudgetStatus",
12341          "description": "Most recently observed status of the PodDisruptionBudget."
12342        }
12343      },
12344      "type": "object",
12345      "x-kubernetes-group-version-kind": [
12346        {
12347          "group": "policy",
12348          "kind": "PodDisruptionBudget",
12349          "version": "v1beta1"
12350        }
12351      ]
12352    },
12353    "io.k8s.api.policy.v1beta1.PodDisruptionBudgetList": {
12354      "description": "PodDisruptionBudgetList is a collection of PodDisruptionBudgets.",
12355      "properties": {
12356        "apiVersion": {
12357          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
12358          "type": "string"
12359        },
12360        "items": {
12361          "description": "items list individual PodDisruptionBudget objects",
12362          "items": {
12363            "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodDisruptionBudget"
12364          },
12365          "type": "array"
12366        },
12367        "kind": {
12368          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
12369          "type": "string"
12370        },
12371        "metadata": {
12372          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
12373          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
12374        }
12375      },
12376      "required": [
12377        "items"
12378      ],
12379      "type": "object",
12380      "x-kubernetes-group-version-kind": [
12381        {
12382          "group": "policy",
12383          "kind": "PodDisruptionBudgetList",
12384          "version": "v1beta1"
12385        }
12386      ]
12387    },
12388    "io.k8s.api.policy.v1beta1.PodDisruptionBudgetSpec": {
12389      "description": "PodDisruptionBudgetSpec is a description of a PodDisruptionBudget.",
12390      "properties": {
12391        "maxUnavailable": {
12392          "$ref": "#/definitions/io.k8s.apimachinery.pkg.util.intstr.IntOrString",
12393          "description": "An eviction is allowed if at most \"maxUnavailable\" pods selected by \"selector\" are unavailable after the eviction, i.e. even in absence of the evicted pod. For example, one can prevent all voluntary evictions by specifying 0. This is a mutually exclusive setting with \"minAvailable\"."
12394        },
12395        "minAvailable": {
12396          "$ref": "#/definitions/io.k8s.apimachinery.pkg.util.intstr.IntOrString",
12397          "description": "An eviction is allowed if at least \"minAvailable\" pods selected by \"selector\" will still be available after the eviction, i.e. even in the absence of the evicted pod.  So for example you can prevent all voluntary evictions by specifying \"100%\"."
12398        },
12399        "selector": {
12400          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector",
12401          "description": "Label query over pods whose evictions are managed by the disruption budget. A null selector selects no pods. An empty selector ({}) also selects no pods, which differs from standard behavior of selecting all pods. In policy/v1, an empty selector will select all pods in the namespace.",
12402          "x-kubernetes-patch-strategy": "replace"
12403        }
12404      },
12405      "type": "object"
12406    },
12407    "io.k8s.api.policy.v1beta1.PodDisruptionBudgetStatus": {
12408      "description": "PodDisruptionBudgetStatus represents information about the status of a PodDisruptionBudget. Status may trail the actual state of a system.",
12409      "properties": {
12410        "conditions": {
12411          "description": "Conditions contain conditions for PDB. The disruption controller sets the DisruptionAllowed condition. The following are known values for the reason field (additional reasons could be added in the future): - SyncFailed: The controller encountered an error and wasn't able to compute\n              the number of allowed disruptions. Therefore no disruptions are\n              allowed and the status of the condition will be False.\n- InsufficientPods: The number of pods are either at or below the number\n                    required by the PodDisruptionBudget. No disruptions are\n                    allowed and the status of the condition will be False.\n- SufficientPods: There are more pods than required by the PodDisruptionBudget.\n                  The condition will be True, and the number of allowed\n                  disruptions are provided by the disruptionsAllowed property.",
12412          "items": {
12413            "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Condition"
12414          },
12415          "type": "array",
12416          "x-kubernetes-list-map-keys": [
12417            "type"
12418          ],
12419          "x-kubernetes-list-type": "map",
12420          "x-kubernetes-patch-merge-key": "type",
12421          "x-kubernetes-patch-strategy": "merge"
12422        },
12423        "currentHealthy": {
12424          "description": "current number of healthy pods",
12425          "format": "int32",
12426          "type": "integer"
12427        },
12428        "desiredHealthy": {
12429          "description": "minimum desired number of healthy pods",
12430          "format": "int32",
12431          "type": "integer"
12432        },
12433        "disruptedPods": {
12434          "additionalProperties": {
12435            "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time"
12436          },
12437          "description": "DisruptedPods contains information about pods whose eviction was processed by the API server eviction subresource handler but has not yet been observed by the PodDisruptionBudget controller. A pod will be in this map from the time when the API server processed the eviction request to the time when the pod is seen by PDB controller as having been marked for deletion (or after a timeout). The key in the map is the name of the pod and the value is the time when the API server processed the eviction request. If the deletion didn't occur and a pod is still there it will be removed from the list automatically by PodDisruptionBudget controller after some time. If everything goes smooth this map should be empty for the most of the time. Large number of entries in the map may indicate problems with pod deletions.",
12438          "type": "object"
12439        },
12440        "disruptionsAllowed": {
12441          "description": "Number of pod disruptions that are currently allowed.",
12442          "format": "int32",
12443          "type": "integer"
12444        },
12445        "expectedPods": {
12446          "description": "total number of pods counted by this disruption budget",
12447          "format": "int32",
12448          "type": "integer"
12449        },
12450        "observedGeneration": {
12451          "description": "Most recent generation observed when updating this PDB status. DisruptionsAllowed and other status information is valid only if observedGeneration equals to PDB's object generation.",
12452          "format": "int64",
12453          "type": "integer"
12454        }
12455      },
12456      "required": [
12457        "disruptionsAllowed",
12458        "currentHealthy",
12459        "desiredHealthy",
12460        "expectedPods"
12461      ],
12462      "type": "object"
12463    },
12464    "io.k8s.api.policy.v1beta1.PodSecurityPolicy": {
12465      "description": "PodSecurityPolicy governs the ability to make requests that affect the Security Context that will be applied to a pod and container. Deprecated in 1.21.",
12466      "properties": {
12467        "apiVersion": {
12468          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
12469          "type": "string"
12470        },
12471        "kind": {
12472          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
12473          "type": "string"
12474        },
12475        "metadata": {
12476          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
12477          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
12478        },
12479        "spec": {
12480          "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodSecurityPolicySpec",
12481          "description": "spec defines the policy enforced."
12482        }
12483      },
12484      "type": "object",
12485      "x-kubernetes-group-version-kind": [
12486        {
12487          "group": "policy",
12488          "kind": "PodSecurityPolicy",
12489          "version": "v1beta1"
12490        }
12491      ]
12492    },
12493    "io.k8s.api.policy.v1beta1.PodSecurityPolicyList": {
12494      "description": "PodSecurityPolicyList is a list of PodSecurityPolicy objects.",
12495      "properties": {
12496        "apiVersion": {
12497          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
12498          "type": "string"
12499        },
12500        "items": {
12501          "description": "items is a list of schema objects.",
12502          "items": {
12503            "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodSecurityPolicy"
12504          },
12505          "type": "array"
12506        },
12507        "kind": {
12508          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
12509          "type": "string"
12510        },
12511        "metadata": {
12512          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
12513          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
12514        }
12515      },
12516      "required": [
12517        "items"
12518      ],
12519      "type": "object",
12520      "x-kubernetes-group-version-kind": [
12521        {
12522          "group": "policy",
12523          "kind": "PodSecurityPolicyList",
12524          "version": "v1beta1"
12525        }
12526      ]
12527    },
12528    "io.k8s.api.policy.v1beta1.PodSecurityPolicySpec": {
12529      "description": "PodSecurityPolicySpec defines the policy enforced.",
12530      "properties": {
12531        "allowPrivilegeEscalation": {
12532          "description": "allowPrivilegeEscalation determines if a pod can request to allow privilege escalation. If unspecified, defaults to true.",
12533          "type": "boolean"
12534        },
12535        "allowedCSIDrivers": {
12536          "description": "AllowedCSIDrivers is an allowlist of inline CSI drivers that must be explicitly set to be embedded within a pod spec. An empty value indicates that any CSI driver can be used for inline ephemeral volumes. This is a beta field, and is only honored if the API server enables the CSIInlineVolume feature gate.",
12537          "items": {
12538            "$ref": "#/definitions/io.k8s.api.policy.v1beta1.AllowedCSIDriver"
12539          },
12540          "type": "array"
12541        },
12542        "allowedCapabilities": {
12543          "description": "allowedCapabilities is a list of capabilities that can be requested to add to the container. Capabilities in this field may be added at the pod author's discretion. You must not list a capability in both allowedCapabilities and requiredDropCapabilities.",
12544          "items": {
12545            "type": "string"
12546          },
12547          "type": "array"
12548        },
12549        "allowedFlexVolumes": {
12550          "description": "allowedFlexVolumes is an allowlist of Flexvolumes.  Empty or nil indicates that all Flexvolumes may be used.  This parameter is effective only when the usage of the Flexvolumes is allowed in the \"volumes\" field.",
12551          "items": {
12552            "$ref": "#/definitions/io.k8s.api.policy.v1beta1.AllowedFlexVolume"
12553          },
12554          "type": "array"
12555        },
12556        "allowedHostPaths": {
12557          "description": "allowedHostPaths is an allowlist of host paths. Empty indicates that all host paths may be used.",
12558          "items": {
12559            "$ref": "#/definitions/io.k8s.api.policy.v1beta1.AllowedHostPath"
12560          },
12561          "type": "array"
12562        },
12563        "allowedProcMountTypes": {
12564          "description": "AllowedProcMountTypes is an allowlist of allowed ProcMountTypes. Empty or nil indicates that only the DefaultProcMountType may be used. This requires the ProcMountType feature flag to be enabled.",
12565          "items": {
12566            "type": "string"
12567          },
12568          "type": "array"
12569        },
12570        "allowedUnsafeSysctls": {
12571          "description": "allowedUnsafeSysctls is a list of explicitly allowed unsafe sysctls, defaults to none. Each entry is either a plain sysctl name or ends in \"*\" in which case it is considered as a prefix of allowed sysctls. Single * means all unsafe sysctls are allowed. Kubelet has to allowlist all allowed unsafe sysctls explicitly to avoid rejection.\n\nExamples: e.g. \"foo/*\" allows \"foo/bar\", \"foo/baz\", etc. e.g. \"foo.*\" allows \"foo.bar\", \"foo.baz\", etc.",
12572          "items": {
12573            "type": "string"
12574          },
12575          "type": "array"
12576        },
12577        "defaultAddCapabilities": {
12578          "description": "defaultAddCapabilities is the default set of capabilities that will be added to the container unless the pod spec specifically drops the capability.  You may not list a capability in both defaultAddCapabilities and requiredDropCapabilities. Capabilities added here are implicitly allowed, and need not be included in the allowedCapabilities list.",
12579          "items": {
12580            "type": "string"
12581          },
12582          "type": "array"
12583        },
12584        "defaultAllowPrivilegeEscalation": {
12585          "description": "defaultAllowPrivilegeEscalation controls the default setting for whether a process can gain more privileges than its parent process.",
12586          "type": "boolean"
12587        },
12588        "forbiddenSysctls": {
12589          "description": "forbiddenSysctls is a list of explicitly forbidden sysctls, defaults to none. Each entry is either a plain sysctl name or ends in \"*\" in which case it is considered as a prefix of forbidden sysctls. Single * means all sysctls are forbidden.\n\nExamples: e.g. \"foo/*\" forbids \"foo/bar\", \"foo/baz\", etc. e.g. \"foo.*\" forbids \"foo.bar\", \"foo.baz\", etc.",
12590          "items": {
12591            "type": "string"
12592          },
12593          "type": "array"
12594        },
12595        "fsGroup": {
12596          "$ref": "#/definitions/io.k8s.api.policy.v1beta1.FSGroupStrategyOptions",
12597          "description": "fsGroup is the strategy that will dictate what fs group is used by the SecurityContext."
12598        },
12599        "hostIPC": {
12600          "description": "hostIPC determines if the policy allows the use of HostIPC in the pod spec.",
12601          "type": "boolean"
12602        },
12603        "hostNetwork": {
12604          "description": "hostNetwork determines if the policy allows the use of HostNetwork in the pod spec.",
12605          "type": "boolean"
12606        },
12607        "hostPID": {
12608          "description": "hostPID determines if the policy allows the use of HostPID in the pod spec.",
12609          "type": "boolean"
12610        },
12611        "hostPorts": {
12612          "description": "hostPorts determines which host port ranges are allowed to be exposed.",
12613          "items": {
12614            "$ref": "#/definitions/io.k8s.api.policy.v1beta1.HostPortRange"
12615          },
12616          "type": "array"
12617        },
12618        "privileged": {
12619          "description": "privileged determines if a pod can request to be run as privileged.",
12620          "type": "boolean"
12621        },
12622        "readOnlyRootFilesystem": {
12623          "description": "readOnlyRootFilesystem when set to true will force containers to run with a read only root file system.  If the container specifically requests to run with a non-read only root file system the PSP should deny the pod. If set to false the container may run with a read only root file system if it wishes but it will not be forced to.",
12624          "type": "boolean"
12625        },
12626        "requiredDropCapabilities": {
12627          "description": "requiredDropCapabilities are the capabilities that will be dropped from the container.  These are required to be dropped and cannot be added.",
12628          "items": {
12629            "type": "string"
12630          },
12631          "type": "array"
12632        },
12633        "runAsGroup": {
12634          "$ref": "#/definitions/io.k8s.api.policy.v1beta1.RunAsGroupStrategyOptions",
12635          "description": "RunAsGroup is the strategy that will dictate the allowable RunAsGroup values that may be set. If this field is omitted, the pod's RunAsGroup can take any value. This field requires the RunAsGroup feature gate to be enabled."
12636        },
12637        "runAsUser": {
12638          "$ref": "#/definitions/io.k8s.api.policy.v1beta1.RunAsUserStrategyOptions",
12639          "description": "runAsUser is the strategy that will dictate the allowable RunAsUser values that may be set."
12640        },
12641        "runtimeClass": {
12642          "$ref": "#/definitions/io.k8s.api.policy.v1beta1.RuntimeClassStrategyOptions",
12643          "description": "runtimeClass is the strategy that will dictate the allowable RuntimeClasses for a pod. If this field is omitted, the pod's runtimeClassName field is unrestricted. Enforcement of this field depends on the RuntimeClass feature gate being enabled."
12644        },
12645        "seLinux": {
12646          "$ref": "#/definitions/io.k8s.api.policy.v1beta1.SELinuxStrategyOptions",
12647          "description": "seLinux is the strategy that will dictate the allowable labels that may be set."
12648        },
12649        "supplementalGroups": {
12650          "$ref": "#/definitions/io.k8s.api.policy.v1beta1.SupplementalGroupsStrategyOptions",
12651          "description": "supplementalGroups is the strategy that will dictate what supplemental groups are used by the SecurityContext."
12652        },
12653        "volumes": {
12654          "description": "volumes is an allowlist of volume plugins. Empty indicates that no volumes may be used. To allow all volumes you may use '*'.",
12655          "items": {
12656            "type": "string"
12657          },
12658          "type": "array"
12659        }
12660      },
12661      "required": [
12662        "seLinux",
12663        "runAsUser",
12664        "supplementalGroups",
12665        "fsGroup"
12666      ],
12667      "type": "object"
12668    },
12669    "io.k8s.api.policy.v1beta1.RunAsGroupStrategyOptions": {
12670      "description": "RunAsGroupStrategyOptions defines the strategy type and any options used to create the strategy.",
12671      "properties": {
12672        "ranges": {
12673          "description": "ranges are the allowed ranges of gids that may be used. If you would like to force a single gid then supply a single range with the same start and end. Required for MustRunAs.",
12674          "items": {
12675            "$ref": "#/definitions/io.k8s.api.policy.v1beta1.IDRange"
12676          },
12677          "type": "array"
12678        },
12679        "rule": {
12680          "description": "rule is the strategy that will dictate the allowable RunAsGroup values that may be set.",
12681          "type": "string"
12682        }
12683      },
12684      "required": [
12685        "rule"
12686      ],
12687      "type": "object"
12688    },
12689    "io.k8s.api.policy.v1beta1.RunAsUserStrategyOptions": {
12690      "description": "RunAsUserStrategyOptions defines the strategy type and any options used to create the strategy.",
12691      "properties": {
12692        "ranges": {
12693          "description": "ranges are the allowed ranges of uids that may be used. If you would like to force a single uid then supply a single range with the same start and end. Required for MustRunAs.",
12694          "items": {
12695            "$ref": "#/definitions/io.k8s.api.policy.v1beta1.IDRange"
12696          },
12697          "type": "array"
12698        },
12699        "rule": {
12700          "description": "rule is the strategy that will dictate the allowable RunAsUser values that may be set.",
12701          "type": "string"
12702        }
12703      },
12704      "required": [
12705        "rule"
12706      ],
12707      "type": "object"
12708    },
12709    "io.k8s.api.policy.v1beta1.RuntimeClassStrategyOptions": {
12710      "description": "RuntimeClassStrategyOptions define the strategy that will dictate the allowable RuntimeClasses for a pod.",
12711      "properties": {
12712        "allowedRuntimeClassNames": {
12713          "description": "allowedRuntimeClassNames is an allowlist of RuntimeClass names that may be specified on a pod. A value of \"*\" means that any RuntimeClass name is allowed, and must be the only item in the list. An empty list requires the RuntimeClassName field to be unset.",
12714          "items": {
12715            "type": "string"
12716          },
12717          "type": "array"
12718        },
12719        "defaultRuntimeClassName": {
12720          "description": "defaultRuntimeClassName is the default RuntimeClassName to set on the pod. The default MUST be allowed by the allowedRuntimeClassNames list. A value of nil does not mutate the Pod.",
12721          "type": "string"
12722        }
12723      },
12724      "required": [
12725        "allowedRuntimeClassNames"
12726      ],
12727      "type": "object"
12728    },
12729    "io.k8s.api.policy.v1beta1.SELinuxStrategyOptions": {
12730      "description": "SELinuxStrategyOptions defines the strategy type and any options used to create the strategy.",
12731      "properties": {
12732        "rule": {
12733          "description": "rule is the strategy that will dictate the allowable labels that may be set.",
12734          "type": "string"
12735        },
12736        "seLinuxOptions": {
12737          "$ref": "#/definitions/io.k8s.api.core.v1.SELinuxOptions",
12738          "description": "seLinuxOptions required to run as; required for MustRunAs More info: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/"
12739        }
12740      },
12741      "required": [
12742        "rule"
12743      ],
12744      "type": "object"
12745    },
12746    "io.k8s.api.policy.v1beta1.SupplementalGroupsStrategyOptions": {
12747      "description": "SupplementalGroupsStrategyOptions defines the strategy type and options used to create the strategy.",
12748      "properties": {
12749        "ranges": {
12750          "description": "ranges are the allowed ranges of supplemental groups.  If you would like to force a single supplemental group then supply a single range with the same start and end. Required for MustRunAs.",
12751          "items": {
12752            "$ref": "#/definitions/io.k8s.api.policy.v1beta1.IDRange"
12753          },
12754          "type": "array"
12755        },
12756        "rule": {
12757          "description": "rule is the strategy that will dictate what supplemental groups is used in the SecurityContext.",
12758          "type": "string"
12759        }
12760      },
12761      "type": "object"
12762    },
12763    "io.k8s.api.rbac.v1.AggregationRule": {
12764      "description": "AggregationRule describes how to locate ClusterRoles to aggregate into the ClusterRole",
12765      "properties": {
12766        "clusterRoleSelectors": {
12767          "description": "ClusterRoleSelectors holds a list of selectors which will be used to find ClusterRoles and create the rules. If any of the selectors match, then the ClusterRole's permissions will be added",
12768          "items": {
12769            "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector"
12770          },
12771          "type": "array"
12772        }
12773      },
12774      "type": "object"
12775    },
12776    "io.k8s.api.rbac.v1.ClusterRole": {
12777      "description": "ClusterRole is a cluster level, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding or ClusterRoleBinding.",
12778      "properties": {
12779        "aggregationRule": {
12780          "$ref": "#/definitions/io.k8s.api.rbac.v1.AggregationRule",
12781          "description": "AggregationRule is an optional field that describes how to build the Rules for this ClusterRole. If AggregationRule is set, then the Rules are controller managed and direct changes to Rules will be stomped by the controller."
12782        },
12783        "apiVersion": {
12784          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
12785          "type": "string"
12786        },
12787        "kind": {
12788          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
12789          "type": "string"
12790        },
12791        "metadata": {
12792          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
12793          "description": "Standard object's metadata."
12794        },
12795        "rules": {
12796          "description": "Rules holds all the PolicyRules for this ClusterRole",
12797          "items": {
12798            "$ref": "#/definitions/io.k8s.api.rbac.v1.PolicyRule"
12799          },
12800          "type": "array"
12801        }
12802      },
12803      "type": "object",
12804      "x-kubernetes-group-version-kind": [
12805        {
12806          "group": "rbac.authorization.k8s.io",
12807          "kind": "ClusterRole",
12808          "version": "v1"
12809        }
12810      ]
12811    },
12812    "io.k8s.api.rbac.v1.ClusterRoleBinding": {
12813      "description": "ClusterRoleBinding references a ClusterRole, but not contain it.  It can reference a ClusterRole in the global namespace, and adds who information via Subject.",
12814      "properties": {
12815        "apiVersion": {
12816          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
12817          "type": "string"
12818        },
12819        "kind": {
12820          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
12821          "type": "string"
12822        },
12823        "metadata": {
12824          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
12825          "description": "Standard object's metadata."
12826        },
12827        "roleRef": {
12828          "$ref": "#/definitions/io.k8s.api.rbac.v1.RoleRef",
12829          "description": "RoleRef can only reference a ClusterRole in the global namespace. If the RoleRef cannot be resolved, the Authorizer must return an error."
12830        },
12831        "subjects": {
12832          "description": "Subjects holds references to the objects the role applies to.",
12833          "items": {
12834            "$ref": "#/definitions/io.k8s.api.rbac.v1.Subject"
12835          },
12836          "type": "array"
12837        }
12838      },
12839      "required": [
12840        "roleRef"
12841      ],
12842      "type": "object",
12843      "x-kubernetes-group-version-kind": [
12844        {
12845          "group": "rbac.authorization.k8s.io",
12846          "kind": "ClusterRoleBinding",
12847          "version": "v1"
12848        }
12849      ]
12850    },
12851    "io.k8s.api.rbac.v1.ClusterRoleBindingList": {
12852      "description": "ClusterRoleBindingList is a collection of ClusterRoleBindings",
12853      "properties": {
12854        "apiVersion": {
12855          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
12856          "type": "string"
12857        },
12858        "items": {
12859          "description": "Items is a list of ClusterRoleBindings",
12860          "items": {
12861            "$ref": "#/definitions/io.k8s.api.rbac.v1.ClusterRoleBinding"
12862          },
12863          "type": "array"
12864        },
12865        "kind": {
12866          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
12867          "type": "string"
12868        },
12869        "metadata": {
12870          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
12871          "description": "Standard object's metadata."
12872        }
12873      },
12874      "required": [
12875        "items"
12876      ],
12877      "type": "object",
12878      "x-kubernetes-group-version-kind": [
12879        {
12880          "group": "rbac.authorization.k8s.io",
12881          "kind": "ClusterRoleBindingList",
12882          "version": "v1"
12883        }
12884      ]
12885    },
12886    "io.k8s.api.rbac.v1.ClusterRoleList": {
12887      "description": "ClusterRoleList is a collection of ClusterRoles",
12888      "properties": {
12889        "apiVersion": {
12890          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
12891          "type": "string"
12892        },
12893        "items": {
12894          "description": "Items is a list of ClusterRoles",
12895          "items": {
12896            "$ref": "#/definitions/io.k8s.api.rbac.v1.ClusterRole"
12897          },
12898          "type": "array"
12899        },
12900        "kind": {
12901          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
12902          "type": "string"
12903        },
12904        "metadata": {
12905          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
12906          "description": "Standard object's metadata."
12907        }
12908      },
12909      "required": [
12910        "items"
12911      ],
12912      "type": "object",
12913      "x-kubernetes-group-version-kind": [
12914        {
12915          "group": "rbac.authorization.k8s.io",
12916          "kind": "ClusterRoleList",
12917          "version": "v1"
12918        }
12919      ]
12920    },
12921    "io.k8s.api.rbac.v1.PolicyRule": {
12922      "description": "PolicyRule holds information that describes a policy rule, but does not contain information about who the rule applies to or which namespace the rule applies to.",
12923      "properties": {
12924        "apiGroups": {
12925          "description": "APIGroups is the name of the APIGroup that contains the resources.  If multiple API groups are specified, any action requested against one of the enumerated resources in any API group will be allowed.",
12926          "items": {
12927            "type": "string"
12928          },
12929          "type": "array"
12930        },
12931        "nonResourceURLs": {
12932          "description": "NonResourceURLs is a set of partial urls that a user should have access to.  *s are allowed, but only as the full, final step in the path Since non-resource URLs are not namespaced, this field is only applicable for ClusterRoles referenced from a ClusterRoleBinding. Rules can either apply to API resources (such as \"pods\" or \"secrets\") or non-resource URL paths (such as \"/api\"),  but not both.",
12933          "items": {
12934            "type": "string"
12935          },
12936          "type": "array"
12937        },
12938        "resourceNames": {
12939          "description": "ResourceNames is an optional white list of names that the rule applies to.  An empty set means that everything is allowed.",
12940          "items": {
12941            "type": "string"
12942          },
12943          "type": "array"
12944        },
12945        "resources": {
12946          "description": "Resources is a list of resources this rule applies to. '*' represents all resources.",
12947          "items": {
12948            "type": "string"
12949          },
12950          "type": "array"
12951        },
12952        "verbs": {
12953          "description": "Verbs is a list of Verbs that apply to ALL the ResourceKinds and AttributeRestrictions contained in this rule. '*' represents all verbs.",
12954          "items": {
12955            "type": "string"
12956          },
12957          "type": "array"
12958        }
12959      },
12960      "required": [
12961        "verbs"
12962      ],
12963      "type": "object"
12964    },
12965    "io.k8s.api.rbac.v1.Role": {
12966      "description": "Role is a namespaced, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding.",
12967      "properties": {
12968        "apiVersion": {
12969          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
12970          "type": "string"
12971        },
12972        "kind": {
12973          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
12974          "type": "string"
12975        },
12976        "metadata": {
12977          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
12978          "description": "Standard object's metadata."
12979        },
12980        "rules": {
12981          "description": "Rules holds all the PolicyRules for this Role",
12982          "items": {
12983            "$ref": "#/definitions/io.k8s.api.rbac.v1.PolicyRule"
12984          },
12985          "type": "array"
12986        }
12987      },
12988      "type": "object",
12989      "x-kubernetes-group-version-kind": [
12990        {
12991          "group": "rbac.authorization.k8s.io",
12992          "kind": "Role",
12993          "version": "v1"
12994        }
12995      ]
12996    },
12997    "io.k8s.api.rbac.v1.RoleBinding": {
12998      "description": "RoleBinding references a role, but does not contain it.  It can reference a Role in the same namespace or a ClusterRole in the global namespace. It adds who information via Subjects and namespace information by which namespace it exists in.  RoleBindings in a given namespace only have effect in that namespace.",
12999      "properties": {
13000        "apiVersion": {
13001          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
13002          "type": "string"
13003        },
13004        "kind": {
13005          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
13006          "type": "string"
13007        },
13008        "metadata": {
13009          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
13010          "description": "Standard object's metadata."
13011        },
13012        "roleRef": {
13013          "$ref": "#/definitions/io.k8s.api.rbac.v1.RoleRef",
13014          "description": "RoleRef can reference a Role in the current namespace or a ClusterRole in the global namespace. If the RoleRef cannot be resolved, the Authorizer must return an error."
13015        },
13016        "subjects": {
13017          "description": "Subjects holds references to the objects the role applies to.",
13018          "items": {
13019            "$ref": "#/definitions/io.k8s.api.rbac.v1.Subject"
13020          },
13021          "type": "array"
13022        }
13023      },
13024      "required": [
13025        "roleRef"
13026      ],
13027      "type": "object",
13028      "x-kubernetes-group-version-kind": [
13029        {
13030          "group": "rbac.authorization.k8s.io",
13031          "kind": "RoleBinding",
13032          "version": "v1"
13033        }
13034      ]
13035    },
13036    "io.k8s.api.rbac.v1.RoleBindingList": {
13037      "description": "RoleBindingList is a collection of RoleBindings",
13038      "properties": {
13039        "apiVersion": {
13040          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
13041          "type": "string"
13042        },
13043        "items": {
13044          "description": "Items is a list of RoleBindings",
13045          "items": {
13046            "$ref": "#/definitions/io.k8s.api.rbac.v1.RoleBinding"
13047          },
13048          "type": "array"
13049        },
13050        "kind": {
13051          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
13052          "type": "string"
13053        },
13054        "metadata": {
13055          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
13056          "description": "Standard object's metadata."
13057        }
13058      },
13059      "required": [
13060        "items"
13061      ],
13062      "type": "object",
13063      "x-kubernetes-group-version-kind": [
13064        {
13065          "group": "rbac.authorization.k8s.io",
13066          "kind": "RoleBindingList",
13067          "version": "v1"
13068        }
13069      ]
13070    },
13071    "io.k8s.api.rbac.v1.RoleList": {
13072      "description": "RoleList is a collection of Roles",
13073      "properties": {
13074        "apiVersion": {
13075          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
13076          "type": "string"
13077        },
13078        "items": {
13079          "description": "Items is a list of Roles",
13080          "items": {
13081            "$ref": "#/definitions/io.k8s.api.rbac.v1.Role"
13082          },
13083          "type": "array"
13084        },
13085        "kind": {
13086          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
13087          "type": "string"
13088        },
13089        "metadata": {
13090          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
13091          "description": "Standard object's metadata."
13092        }
13093      },
13094      "required": [
13095        "items"
13096      ],
13097      "type": "object",
13098      "x-kubernetes-group-version-kind": [
13099        {
13100          "group": "rbac.authorization.k8s.io",
13101          "kind": "RoleList",
13102          "version": "v1"
13103        }
13104      ]
13105    },
13106    "io.k8s.api.rbac.v1.RoleRef": {
13107      "description": "RoleRef contains information that points to the role being used",
13108      "properties": {
13109        "apiGroup": {
13110          "description": "APIGroup is the group for the resource being referenced",
13111          "type": "string"
13112        },
13113        "kind": {
13114          "description": "Kind is the type of resource being referenced",
13115          "type": "string"
13116        },
13117        "name": {
13118          "description": "Name is the name of resource being referenced",
13119          "type": "string"
13120        }
13121      },
13122      "required": [
13123        "apiGroup",
13124        "kind",
13125        "name"
13126      ],
13127      "type": "object",
13128      "x-kubernetes-map-type": "atomic"
13129    },
13130    "io.k8s.api.rbac.v1.Subject": {
13131      "description": "Subject contains a reference to the object or user identities a role binding applies to.  This can either hold a direct API object reference, or a value for non-objects such as user and group names.",
13132      "properties": {
13133        "apiGroup": {
13134          "description": "APIGroup holds the API group of the referenced subject. Defaults to \"\" for ServiceAccount subjects. Defaults to \"rbac.authorization.k8s.io\" for User and Group subjects.",
13135          "type": "string"
13136        },
13137        "kind": {
13138          "description": "Kind of object being referenced. Values defined by this API group are \"User\", \"Group\", and \"ServiceAccount\". If the Authorizer does not recognized the kind value, the Authorizer should report an error.",
13139          "type": "string"
13140        },
13141        "name": {
13142          "description": "Name of the object being referenced.",
13143          "type": "string"
13144        },
13145        "namespace": {
13146          "description": "Namespace of the referenced object.  If the object kind is non-namespace, such as \"User\" or \"Group\", and this value is not empty the Authorizer should report an error.",
13147          "type": "string"
13148        }
13149      },
13150      "required": [
13151        "kind",
13152        "name"
13153      ],
13154      "type": "object",
13155      "x-kubernetes-map-type": "atomic"
13156    },
13157    "io.k8s.api.rbac.v1alpha1.AggregationRule": {
13158      "description": "AggregationRule describes how to locate ClusterRoles to aggregate into the ClusterRole",
13159      "properties": {
13160        "clusterRoleSelectors": {
13161          "description": "ClusterRoleSelectors holds a list of selectors which will be used to find ClusterRoles and create the rules. If any of the selectors match, then the ClusterRole's permissions will be added",
13162          "items": {
13163            "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector"
13164          },
13165          "type": "array"
13166        }
13167      },
13168      "type": "object"
13169    },
13170    "io.k8s.api.rbac.v1alpha1.ClusterRole": {
13171      "description": "ClusterRole is a cluster level, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding or ClusterRoleBinding. Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 ClusterRole, and will no longer be served in v1.22.",
13172      "properties": {
13173        "aggregationRule": {
13174          "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.AggregationRule",
13175          "description": "AggregationRule is an optional field that describes how to build the Rules for this ClusterRole. If AggregationRule is set, then the Rules are controller managed and direct changes to Rules will be stomped by the controller."
13176        },
13177        "apiVersion": {
13178          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
13179          "type": "string"
13180        },
13181        "kind": {
13182          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
13183          "type": "string"
13184        },
13185        "metadata": {
13186          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
13187          "description": "Standard object's metadata."
13188        },
13189        "rules": {
13190          "description": "Rules holds all the PolicyRules for this ClusterRole",
13191          "items": {
13192            "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.PolicyRule"
13193          },
13194          "type": "array"
13195        }
13196      },
13197      "type": "object",
13198      "x-kubernetes-group-version-kind": [
13199        {
13200          "group": "rbac.authorization.k8s.io",
13201          "kind": "ClusterRole",
13202          "version": "v1alpha1"
13203        }
13204      ]
13205    },
13206    "io.k8s.api.rbac.v1alpha1.ClusterRoleBinding": {
13207      "description": "ClusterRoleBinding references a ClusterRole, but not contain it.  It can reference a ClusterRole in the global namespace, and adds who information via Subject. Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 ClusterRoleBinding, and will no longer be served in v1.22.",
13208      "properties": {
13209        "apiVersion": {
13210          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
13211          "type": "string"
13212        },
13213        "kind": {
13214          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
13215          "type": "string"
13216        },
13217        "metadata": {
13218          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
13219          "description": "Standard object's metadata."
13220        },
13221        "roleRef": {
13222          "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.RoleRef",
13223          "description": "RoleRef can only reference a ClusterRole in the global namespace. If the RoleRef cannot be resolved, the Authorizer must return an error."
13224        },
13225        "subjects": {
13226          "description": "Subjects holds references to the objects the role applies to.",
13227          "items": {
13228            "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.Subject"
13229          },
13230          "type": "array"
13231        }
13232      },
13233      "required": [
13234        "roleRef"
13235      ],
13236      "type": "object",
13237      "x-kubernetes-group-version-kind": [
13238        {
13239          "group": "rbac.authorization.k8s.io",
13240          "kind": "ClusterRoleBinding",
13241          "version": "v1alpha1"
13242        }
13243      ]
13244    },
13245    "io.k8s.api.rbac.v1alpha1.ClusterRoleBindingList": {
13246      "description": "ClusterRoleBindingList is a collection of ClusterRoleBindings. Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 ClusterRoleBindings, and will no longer be served in v1.22.",
13247      "properties": {
13248        "apiVersion": {
13249          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
13250          "type": "string"
13251        },
13252        "items": {
13253          "description": "Items is a list of ClusterRoleBindings",
13254          "items": {
13255            "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.ClusterRoleBinding"
13256          },
13257          "type": "array"
13258        },
13259        "kind": {
13260          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
13261          "type": "string"
13262        },
13263        "metadata": {
13264          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
13265          "description": "Standard object's metadata."
13266        }
13267      },
13268      "required": [
13269        "items"
13270      ],
13271      "type": "object",
13272      "x-kubernetes-group-version-kind": [
13273        {
13274          "group": "rbac.authorization.k8s.io",
13275          "kind": "ClusterRoleBindingList",
13276          "version": "v1alpha1"
13277        }
13278      ]
13279    },
13280    "io.k8s.api.rbac.v1alpha1.ClusterRoleList": {
13281      "description": "ClusterRoleList is a collection of ClusterRoles. Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 ClusterRoles, and will no longer be served in v1.22.",
13282      "properties": {
13283        "apiVersion": {
13284          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
13285          "type": "string"
13286        },
13287        "items": {
13288          "description": "Items is a list of ClusterRoles",
13289          "items": {
13290            "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.ClusterRole"
13291          },
13292          "type": "array"
13293        },
13294        "kind": {
13295          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
13296          "type": "string"
13297        },
13298        "metadata": {
13299          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
13300          "description": "Standard object's metadata."
13301        }
13302      },
13303      "required": [
13304        "items"
13305      ],
13306      "type": "object",
13307      "x-kubernetes-group-version-kind": [
13308        {
13309          "group": "rbac.authorization.k8s.io",
13310          "kind": "ClusterRoleList",
13311          "version": "v1alpha1"
13312        }
13313      ]
13314    },
13315    "io.k8s.api.rbac.v1alpha1.PolicyRule": {
13316      "description": "PolicyRule holds information that describes a policy rule, but does not contain information about who the rule applies to or which namespace the rule applies to.",
13317      "properties": {
13318        "apiGroups": {
13319          "description": "APIGroups is the name of the APIGroup that contains the resources.  If multiple API groups are specified, any action requested against one of the enumerated resources in any API group will be allowed.",
13320          "items": {
13321            "type": "string"
13322          },
13323          "type": "array"
13324        },
13325        "nonResourceURLs": {
13326          "description": "NonResourceURLs is a set of partial urls that a user should have access to.  *s are allowed, but only as the full, final step in the path Since non-resource URLs are not namespaced, this field is only applicable for ClusterRoles referenced from a ClusterRoleBinding. Rules can either apply to API resources (such as \"pods\" or \"secrets\") or non-resource URL paths (such as \"/api\"),  but not both.",
13327          "items": {
13328            "type": "string"
13329          },
13330          "type": "array"
13331        },
13332        "resourceNames": {
13333          "description": "ResourceNames is an optional white list of names that the rule applies to.  An empty set means that everything is allowed.",
13334          "items": {
13335            "type": "string"
13336          },
13337          "type": "array"
13338        },
13339        "resources": {
13340          "description": "Resources is a list of resources this rule applies to. '*' represents all resources.",
13341          "items": {
13342            "type": "string"
13343          },
13344          "type": "array"
13345        },
13346        "verbs": {
13347          "description": "Verbs is a list of Verbs that apply to ALL the ResourceKinds and AttributeRestrictions contained in this rule. '*' represents all verbs.",
13348          "items": {
13349            "type": "string"
13350          },
13351          "type": "array"
13352        }
13353      },
13354      "required": [
13355        "verbs"
13356      ],
13357      "type": "object"
13358    },
13359    "io.k8s.api.rbac.v1alpha1.Role": {
13360      "description": "Role is a namespaced, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding. Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 Role, and will no longer be served in v1.22.",
13361      "properties": {
13362        "apiVersion": {
13363          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
13364          "type": "string"
13365        },
13366        "kind": {
13367          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
13368          "type": "string"
13369        },
13370        "metadata": {
13371          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
13372          "description": "Standard object's metadata."
13373        },
13374        "rules": {
13375          "description": "Rules holds all the PolicyRules for this Role",
13376          "items": {
13377            "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.PolicyRule"
13378          },
13379          "type": "array"
13380        }
13381      },
13382      "type": "object",
13383      "x-kubernetes-group-version-kind": [
13384        {
13385          "group": "rbac.authorization.k8s.io",
13386          "kind": "Role",
13387          "version": "v1alpha1"
13388        }
13389      ]
13390    },
13391    "io.k8s.api.rbac.v1alpha1.RoleBinding": {
13392      "description": "RoleBinding references a role, but does not contain it.  It can reference a Role in the same namespace or a ClusterRole in the global namespace. It adds who information via Subjects and namespace information by which namespace it exists in.  RoleBindings in a given namespace only have effect in that namespace. Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 RoleBinding, and will no longer be served in v1.22.",
13393      "properties": {
13394        "apiVersion": {
13395          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
13396          "type": "string"
13397        },
13398        "kind": {
13399          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
13400          "type": "string"
13401        },
13402        "metadata": {
13403          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
13404          "description": "Standard object's metadata."
13405        },
13406        "roleRef": {
13407          "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.RoleRef",
13408          "description": "RoleRef can reference a Role in the current namespace or a ClusterRole in the global namespace. If the RoleRef cannot be resolved, the Authorizer must return an error."
13409        },
13410        "subjects": {
13411          "description": "Subjects holds references to the objects the role applies to.",
13412          "items": {
13413            "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.Subject"
13414          },
13415          "type": "array"
13416        }
13417      },
13418      "required": [
13419        "roleRef"
13420      ],
13421      "type": "object",
13422      "x-kubernetes-group-version-kind": [
13423        {
13424          "group": "rbac.authorization.k8s.io",
13425          "kind": "RoleBinding",
13426          "version": "v1alpha1"
13427        }
13428      ]
13429    },
13430    "io.k8s.api.rbac.v1alpha1.RoleBindingList": {
13431      "description": "RoleBindingList is a collection of RoleBindings Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 RoleBindingList, and will no longer be served in v1.22.",
13432      "properties": {
13433        "apiVersion": {
13434          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
13435          "type": "string"
13436        },
13437        "items": {
13438          "description": "Items is a list of RoleBindings",
13439          "items": {
13440            "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.RoleBinding"
13441          },
13442          "type": "array"
13443        },
13444        "kind": {
13445          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
13446          "type": "string"
13447        },
13448        "metadata": {
13449          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
13450          "description": "Standard object's metadata."
13451        }
13452      },
13453      "required": [
13454        "items"
13455      ],
13456      "type": "object",
13457      "x-kubernetes-group-version-kind": [
13458        {
13459          "group": "rbac.authorization.k8s.io",
13460          "kind": "RoleBindingList",
13461          "version": "v1alpha1"
13462        }
13463      ]
13464    },
13465    "io.k8s.api.rbac.v1alpha1.RoleList": {
13466      "description": "RoleList is a collection of Roles. Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 RoleList, and will no longer be served in v1.22.",
13467      "properties": {
13468        "apiVersion": {
13469          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
13470          "type": "string"
13471        },
13472        "items": {
13473          "description": "Items is a list of Roles",
13474          "items": {
13475            "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.Role"
13476          },
13477          "type": "array"
13478        },
13479        "kind": {
13480          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
13481          "type": "string"
13482        },
13483        "metadata": {
13484          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
13485          "description": "Standard object's metadata."
13486        }
13487      },
13488      "required": [
13489        "items"
13490      ],
13491      "type": "object",
13492      "x-kubernetes-group-version-kind": [
13493        {
13494          "group": "rbac.authorization.k8s.io",
13495          "kind": "RoleList",
13496          "version": "v1alpha1"
13497        }
13498      ]
13499    },
13500    "io.k8s.api.rbac.v1alpha1.RoleRef": {
13501      "description": "RoleRef contains information that points to the role being used",
13502      "properties": {
13503        "apiGroup": {
13504          "description": "APIGroup is the group for the resource being referenced",
13505          "type": "string"
13506        },
13507        "kind": {
13508          "description": "Kind is the type of resource being referenced",
13509          "type": "string"
13510        },
13511        "name": {
13512          "description": "Name is the name of resource being referenced",
13513          "type": "string"
13514        }
13515      },
13516      "required": [
13517        "apiGroup",
13518        "kind",
13519        "name"
13520      ],
13521      "type": "object"
13522    },
13523    "io.k8s.api.rbac.v1alpha1.Subject": {
13524      "description": "Subject contains a reference to the object or user identities a role binding applies to.  This can either hold a direct API object reference, or a value for non-objects such as user and group names.",
13525      "properties": {
13526        "apiVersion": {
13527          "description": "APIVersion holds the API group and version of the referenced subject. Defaults to \"v1\" for ServiceAccount subjects. Defaults to \"rbac.authorization.k8s.io/v1alpha1\" for User and Group subjects.",
13528          "type": "string"
13529        },
13530        "kind": {
13531          "description": "Kind of object being referenced. Values defined by this API group are \"User\", \"Group\", and \"ServiceAccount\". If the Authorizer does not recognized the kind value, the Authorizer should report an error.",
13532          "type": "string"
13533        },
13534        "name": {
13535          "description": "Name of the object being referenced.",
13536          "type": "string"
13537        },
13538        "namespace": {
13539          "description": "Namespace of the referenced object.  If the object kind is non-namespace, such as \"User\" or \"Group\", and this value is not empty the Authorizer should report an error.",
13540          "type": "string"
13541        }
13542      },
13543      "required": [
13544        "kind",
13545        "name"
13546      ],
13547      "type": "object"
13548    },
13549    "io.k8s.api.scheduling.v1.PriorityClass": {
13550      "description": "PriorityClass defines mapping from a priority class name to the priority integer value. The value can be any valid integer.",
13551      "properties": {
13552        "apiVersion": {
13553          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
13554          "type": "string"
13555        },
13556        "description": {
13557          "description": "description is an arbitrary string that usually provides guidelines on when this priority class should be used.",
13558          "type": "string"
13559        },
13560        "globalDefault": {
13561          "description": "globalDefault specifies whether this PriorityClass should be considered as the default priority for pods that do not have any priority class. Only one PriorityClass can be marked as `globalDefault`. However, if more than one PriorityClasses exists with their `globalDefault` field set to true, the smallest value of such global default PriorityClasses will be used as the default priority.",
13562          "type": "boolean"
13563        },
13564        "kind": {
13565          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
13566          "type": "string"
13567        },
13568        "metadata": {
13569          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
13570          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
13571        },
13572        "preemptionPolicy": {
13573          "description": "PreemptionPolicy is the Policy for preempting pods with lower priority. One of Never, PreemptLowerPriority. Defaults to PreemptLowerPriority if unset. This field is beta-level, gated by the NonPreemptingPriority feature-gate.",
13574          "type": "string"
13575        },
13576        "value": {
13577          "description": "The value of this priority class. This is the actual priority that pods receive when they have the name of this class in their pod spec.",
13578          "format": "int32",
13579          "type": "integer"
13580        }
13581      },
13582      "required": [
13583        "value"
13584      ],
13585      "type": "object",
13586      "x-kubernetes-group-version-kind": [
13587        {
13588          "group": "scheduling.k8s.io",
13589          "kind": "PriorityClass",
13590          "version": "v1"
13591        }
13592      ]
13593    },
13594    "io.k8s.api.scheduling.v1.PriorityClassList": {
13595      "description": "PriorityClassList is a collection of priority classes.",
13596      "properties": {
13597        "apiVersion": {
13598          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
13599          "type": "string"
13600        },
13601        "items": {
13602          "description": "items is the list of PriorityClasses",
13603          "items": {
13604            "$ref": "#/definitions/io.k8s.api.scheduling.v1.PriorityClass"
13605          },
13606          "type": "array"
13607        },
13608        "kind": {
13609          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
13610          "type": "string"
13611        },
13612        "metadata": {
13613          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
13614          "description": "Standard list metadata More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
13615        }
13616      },
13617      "required": [
13618        "items"
13619      ],
13620      "type": "object",
13621      "x-kubernetes-group-version-kind": [
13622        {
13623          "group": "scheduling.k8s.io",
13624          "kind": "PriorityClassList",
13625          "version": "v1"
13626        }
13627      ]
13628    },
13629    "io.k8s.api.scheduling.v1alpha1.PriorityClass": {
13630      "description": "DEPRECATED - This group version of PriorityClass is deprecated by scheduling.k8s.io/v1/PriorityClass. PriorityClass defines mapping from a priority class name to the priority integer value. The value can be any valid integer.",
13631      "properties": {
13632        "apiVersion": {
13633          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
13634          "type": "string"
13635        },
13636        "description": {
13637          "description": "description is an arbitrary string that usually provides guidelines on when this priority class should be used.",
13638          "type": "string"
13639        },
13640        "globalDefault": {
13641          "description": "globalDefault specifies whether this PriorityClass should be considered as the default priority for pods that do not have any priority class. Only one PriorityClass can be marked as `globalDefault`. However, if more than one PriorityClasses exists with their `globalDefault` field set to true, the smallest value of such global default PriorityClasses will be used as the default priority.",
13642          "type": "boolean"
13643        },
13644        "kind": {
13645          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
13646          "type": "string"
13647        },
13648        "metadata": {
13649          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
13650          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
13651        },
13652        "preemptionPolicy": {
13653          "description": "PreemptionPolicy is the Policy for preempting pods with lower priority. One of Never, PreemptLowerPriority. Defaults to PreemptLowerPriority if unset. This field is beta-level, gated by the NonPreemptingPriority feature-gate.",
13654          "type": "string"
13655        },
13656        "value": {
13657          "description": "The value of this priority class. This is the actual priority that pods receive when they have the name of this class in their pod spec.",
13658          "format": "int32",
13659          "type": "integer"
13660        }
13661      },
13662      "required": [
13663        "value"
13664      ],
13665      "type": "object",
13666      "x-kubernetes-group-version-kind": [
13667        {
13668          "group": "scheduling.k8s.io",
13669          "kind": "PriorityClass",
13670          "version": "v1alpha1"
13671        }
13672      ]
13673    },
13674    "io.k8s.api.scheduling.v1alpha1.PriorityClassList": {
13675      "description": "PriorityClassList is a collection of priority classes.",
13676      "properties": {
13677        "apiVersion": {
13678          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
13679          "type": "string"
13680        },
13681        "items": {
13682          "description": "items is the list of PriorityClasses",
13683          "items": {
13684            "$ref": "#/definitions/io.k8s.api.scheduling.v1alpha1.PriorityClass"
13685          },
13686          "type": "array"
13687        },
13688        "kind": {
13689          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
13690          "type": "string"
13691        },
13692        "metadata": {
13693          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
13694          "description": "Standard list metadata More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
13695        }
13696      },
13697      "required": [
13698        "items"
13699      ],
13700      "type": "object",
13701      "x-kubernetes-group-version-kind": [
13702        {
13703          "group": "scheduling.k8s.io",
13704          "kind": "PriorityClassList",
13705          "version": "v1alpha1"
13706        }
13707      ]
13708    },
13709    "io.k8s.api.storage.v1.CSIDriver": {
13710      "description": "CSIDriver captures information about a Container Storage Interface (CSI) volume driver deployed on the cluster. Kubernetes attach detach controller uses this object to determine whether attach is required. Kubelet uses this object to determine whether pod information needs to be passed on mount. CSIDriver objects are non-namespaced.",
13711      "properties": {
13712        "apiVersion": {
13713          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
13714          "type": "string"
13715        },
13716        "kind": {
13717          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
13718          "type": "string"
13719        },
13720        "metadata": {
13721          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
13722          "description": "Standard object metadata. metadata.Name indicates the name of the CSI driver that this object refers to; it MUST be the same name returned by the CSI GetPluginName() call for that driver. The driver name must be 63 characters or less, beginning and ending with an alphanumeric character ([a-z0-9A-Z]) with dashes (-), dots (.), and alphanumerics between. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
13723        },
13724        "spec": {
13725          "$ref": "#/definitions/io.k8s.api.storage.v1.CSIDriverSpec",
13726          "description": "Specification of the CSI Driver."
13727        }
13728      },
13729      "required": [
13730        "spec"
13731      ],
13732      "type": "object",
13733      "x-kubernetes-group-version-kind": [
13734        {
13735          "group": "storage.k8s.io",
13736          "kind": "CSIDriver",
13737          "version": "v1"
13738        }
13739      ]
13740    },
13741    "io.k8s.api.storage.v1.CSIDriverList": {
13742      "description": "CSIDriverList is a collection of CSIDriver objects.",
13743      "properties": {
13744        "apiVersion": {
13745          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
13746          "type": "string"
13747        },
13748        "items": {
13749          "description": "items is the list of CSIDriver",
13750          "items": {
13751            "$ref": "#/definitions/io.k8s.api.storage.v1.CSIDriver"
13752          },
13753          "type": "array"
13754        },
13755        "kind": {
13756          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
13757          "type": "string"
13758        },
13759        "metadata": {
13760          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
13761          "description": "Standard list metadata More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
13762        }
13763      },
13764      "required": [
13765        "items"
13766      ],
13767      "type": "object",
13768      "x-kubernetes-group-version-kind": [
13769        {
13770          "group": "storage.k8s.io",
13771          "kind": "CSIDriverList",
13772          "version": "v1"
13773        }
13774      ]
13775    },
13776    "io.k8s.api.storage.v1.CSIDriverSpec": {
13777      "description": "CSIDriverSpec is the specification of a CSIDriver.",
13778      "properties": {
13779        "attachRequired": {
13780          "description": "attachRequired indicates this CSI volume driver requires an attach operation (because it implements the CSI ControllerPublishVolume() method), and that the Kubernetes attach detach controller should call the attach volume interface which checks the volumeattachment status and waits until the volume is attached before proceeding to mounting. The CSI external-attacher coordinates with CSI volume driver and updates the volumeattachment status when the attach operation is complete. If the CSIDriverRegistry feature gate is enabled and the value is specified to false, the attach operation will be skipped. Otherwise the attach operation will be called.\n\nThis field is immutable.",
13781          "type": "boolean"
13782        },
13783        "fsGroupPolicy": {
13784          "description": "Defines if the underlying volume supports changing ownership and permission of the volume before being mounted. Refer to the specific FSGroupPolicy values for additional details. This field is beta, and is only honored by servers that enable the CSIVolumeFSGroupPolicy feature gate.\n\nThis field is immutable.\n\nDefaults to ReadWriteOnceWithFSType, which will examine each volume to determine if Kubernetes should modify ownership and permissions of the volume. With the default policy the defined fsGroup will only be applied if a fstype is defined and the volume's access mode contains ReadWriteOnce.",
13785          "type": "string"
13786        },
13787        "podInfoOnMount": {
13788          "description": "If set to true, podInfoOnMount indicates this CSI volume driver requires additional pod information (like podName, podUID, etc.) during mount operations. If set to false, pod information will not be passed on mount. Default is false. The CSI driver specifies podInfoOnMount as part of driver deployment. If true, Kubelet will pass pod information as VolumeContext in the CSI NodePublishVolume() calls. The CSI driver is responsible for parsing and validating the information passed in as VolumeContext. The following VolumeConext will be passed if podInfoOnMount is set to true. This list might grow, but the prefix will be used. \"csi.storage.k8s.io/pod.name\": pod.Name \"csi.storage.k8s.io/pod.namespace\": pod.Namespace \"csi.storage.k8s.io/pod.uid\": string(pod.UID) \"csi.storage.k8s.io/ephemeral\": \"true\" if the volume is an ephemeral inline volume\n                                defined by a CSIVolumeSource, otherwise \"false\"\n\n\"csi.storage.k8s.io/ephemeral\" is a new feature in Kubernetes 1.16. It is only required for drivers which support both the \"Persistent\" and \"Ephemeral\" VolumeLifecycleMode. Other drivers can leave pod info disabled and/or ignore this field. As Kubernetes 1.15 doesn't support this field, drivers can only support one mode when deployed on such a cluster and the deployment determines which mode that is, for example via a command line parameter of the driver.\n\nThis field is immutable.",
13789          "type": "boolean"
13790        },
13791        "requiresRepublish": {
13792          "description": "RequiresRepublish indicates the CSI driver wants `NodePublishVolume` being periodically called to reflect any possible change in the mounted volume. This field defaults to false.\n\nNote: After a successful initial NodePublishVolume call, subsequent calls to NodePublishVolume should only update the contents of the volume. New mount points will not be seen by a running container.",
13793          "type": "boolean"
13794        },
13795        "storageCapacity": {
13796          "description": "If set to true, storageCapacity indicates that the CSI volume driver wants pod scheduling to consider the storage capacity that the driver deployment will report by creating CSIStorageCapacity objects with capacity information.\n\nThe check can be enabled immediately when deploying a driver. In that case, provisioning new volumes with late binding will pause until the driver deployment has published some suitable CSIStorageCapacity object.\n\nAlternatively, the driver can be deployed with the field unset or false and it can be flipped later when storage capacity information has been published.\n\nThis field is immutable.\n\nThis is a beta field and only available when the CSIStorageCapacity feature is enabled. The default is false.",
13797          "type": "boolean"
13798        },
13799        "tokenRequests": {
13800          "description": "TokenRequests indicates the CSI driver needs pods' service account tokens it is mounting volume for to do necessary authentication. Kubelet will pass the tokens in VolumeContext in the CSI NodePublishVolume calls. The CSI driver should parse and validate the following VolumeContext: \"csi.storage.k8s.io/serviceAccount.tokens\": {\n  \"<audience>\": {\n    \"token\": <token>,\n    \"expirationTimestamp\": <expiration timestamp in RFC3339>,\n  },\n  ...\n}\n\nNote: Audience in each TokenRequest should be different and at most one token is empty string. To receive a new token after expiry, RequiresRepublish can be used to trigger NodePublishVolume periodically.",
13801          "items": {
13802            "$ref": "#/definitions/io.k8s.api.storage.v1.TokenRequest"
13803          },
13804          "type": "array",
13805          "x-kubernetes-list-type": "atomic"
13806        },
13807        "volumeLifecycleModes": {
13808          "description": "volumeLifecycleModes defines what kind of volumes this CSI volume driver supports. The default if the list is empty is \"Persistent\", which is the usage defined by the CSI specification and implemented in Kubernetes via the usual PV/PVC mechanism. The other mode is \"Ephemeral\". In this mode, volumes are defined inline inside the pod spec with CSIVolumeSource and their lifecycle is tied to the lifecycle of that pod. A driver has to be aware of this because it is only going to get a NodePublishVolume call for such a volume. For more information about implementing this mode, see https://kubernetes-csi.github.io/docs/ephemeral-local-volumes.html A driver can support one or more of these modes and more modes may be added in the future. This field is beta.\n\nThis field is immutable.",
13809          "items": {
13810            "type": "string"
13811          },
13812          "type": "array",
13813          "x-kubernetes-list-type": "set"
13814        }
13815      },
13816      "type": "object"
13817    },
13818    "io.k8s.api.storage.v1.CSINode": {
13819      "description": "CSINode holds information about all CSI drivers installed on a node. CSI drivers do not need to create the CSINode object directly. As long as they use the node-driver-registrar sidecar container, the kubelet will automatically populate the CSINode object for the CSI driver as part of kubelet plugin registration. CSINode has the same name as a node. If the object is missing, it means either there are no CSI Drivers available on the node, or the Kubelet version is low enough that it doesn't create this object. CSINode has an OwnerReference that points to the corresponding node object.",
13820      "properties": {
13821        "apiVersion": {
13822          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
13823          "type": "string"
13824        },
13825        "kind": {
13826          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
13827          "type": "string"
13828        },
13829        "metadata": {
13830          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
13831          "description": "metadata.name must be the Kubernetes node name."
13832        },
13833        "spec": {
13834          "$ref": "#/definitions/io.k8s.api.storage.v1.CSINodeSpec",
13835          "description": "spec is the specification of CSINode"
13836        }
13837      },
13838      "required": [
13839        "spec"
13840      ],
13841      "type": "object",
13842      "x-kubernetes-group-version-kind": [
13843        {
13844          "group": "storage.k8s.io",
13845          "kind": "CSINode",
13846          "version": "v1"
13847        }
13848      ]
13849    },
13850    "io.k8s.api.storage.v1.CSINodeDriver": {
13851      "description": "CSINodeDriver holds information about the specification of one CSI driver installed on a node",
13852      "properties": {
13853        "allocatable": {
13854          "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeNodeResources",
13855          "description": "allocatable represents the volume resources of a node that are available for scheduling. This field is beta."
13856        },
13857        "name": {
13858          "description": "This is the name of the CSI driver that this object refers to. This MUST be the same name returned by the CSI GetPluginName() call for that driver.",
13859          "type": "string"
13860        },
13861        "nodeID": {
13862          "description": "nodeID of the node from the driver point of view. This field enables Kubernetes to communicate with storage systems that do not share the same nomenclature for nodes. For example, Kubernetes may refer to a given node as \"node1\", but the storage system may refer to the same node as \"nodeA\". When Kubernetes issues a command to the storage system to attach a volume to a specific node, it can use this field to refer to the node name using the ID that the storage system will understand, e.g. \"nodeA\" instead of \"node1\". This field is required.",
13863          "type": "string"
13864        },
13865        "topologyKeys": {
13866          "description": "topologyKeys is the list of keys supported by the driver. When a driver is initialized on a cluster, it provides a set of topology keys that it understands (e.g. \"company.com/zone\", \"company.com/region\"). When a driver is initialized on a node, it provides the same topology keys along with values. Kubelet will expose these topology keys as labels on its own node object. When Kubernetes does topology aware provisioning, it can use this list to determine which labels it should retrieve from the node object and pass back to the driver. It is possible for different nodes to use different topology keys. This can be empty if driver does not support topology.",
13867          "items": {
13868            "type": "string"
13869          },
13870          "type": "array"
13871        }
13872      },
13873      "required": [
13874        "name",
13875        "nodeID"
13876      ],
13877      "type": "object"
13878    },
13879    "io.k8s.api.storage.v1.CSINodeList": {
13880      "description": "CSINodeList is a collection of CSINode objects.",
13881      "properties": {
13882        "apiVersion": {
13883          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
13884          "type": "string"
13885        },
13886        "items": {
13887          "description": "items is the list of CSINode",
13888          "items": {
13889            "$ref": "#/definitions/io.k8s.api.storage.v1.CSINode"
13890          },
13891          "type": "array"
13892        },
13893        "kind": {
13894          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
13895          "type": "string"
13896        },
13897        "metadata": {
13898          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
13899          "description": "Standard list metadata More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
13900        }
13901      },
13902      "required": [
13903        "items"
13904      ],
13905      "type": "object",
13906      "x-kubernetes-group-version-kind": [
13907        {
13908          "group": "storage.k8s.io",
13909          "kind": "CSINodeList",
13910          "version": "v1"
13911        }
13912      ]
13913    },
13914    "io.k8s.api.storage.v1.CSINodeSpec": {
13915      "description": "CSINodeSpec holds information about the specification of all CSI drivers installed on a node",
13916      "properties": {
13917        "drivers": {
13918          "description": "drivers is a list of information of all CSI Drivers existing on a node. If all drivers in the list are uninstalled, this can become empty.",
13919          "items": {
13920            "$ref": "#/definitions/io.k8s.api.storage.v1.CSINodeDriver"
13921          },
13922          "type": "array",
13923          "x-kubernetes-patch-merge-key": "name",
13924          "x-kubernetes-patch-strategy": "merge"
13925        }
13926      },
13927      "required": [
13928        "drivers"
13929      ],
13930      "type": "object"
13931    },
13932    "io.k8s.api.storage.v1.StorageClass": {
13933      "description": "StorageClass describes the parameters for a class of storage for which PersistentVolumes can be dynamically provisioned.\n\nStorageClasses are non-namespaced; the name of the storage class according to etcd is in ObjectMeta.Name.",
13934      "properties": {
13935        "allowVolumeExpansion": {
13936          "description": "AllowVolumeExpansion shows whether the storage class allow volume expand",
13937          "type": "boolean"
13938        },
13939        "allowedTopologies": {
13940          "description": "Restrict the node topologies where volumes can be dynamically provisioned. Each volume plugin defines its own supported topology specifications. An empty TopologySelectorTerm list means there is no topology restriction. This field is only honored by servers that enable the VolumeScheduling feature.",
13941          "items": {
13942            "$ref": "#/definitions/io.k8s.api.core.v1.TopologySelectorTerm"
13943          },
13944          "type": "array",
13945          "x-kubernetes-list-type": "atomic"
13946        },
13947        "apiVersion": {
13948          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
13949          "type": "string"
13950        },
13951        "kind": {
13952          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
13953          "type": "string"
13954        },
13955        "metadata": {
13956          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
13957          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
13958        },
13959        "mountOptions": {
13960          "description": "Dynamically provisioned PersistentVolumes of this storage class are created with these mountOptions, e.g. [\"ro\", \"soft\"]. Not validated - mount of the PVs will simply fail if one is invalid.",
13961          "items": {
13962            "type": "string"
13963          },
13964          "type": "array"
13965        },
13966        "parameters": {
13967          "additionalProperties": {
13968            "type": "string"
13969          },
13970          "description": "Parameters holds the parameters for the provisioner that should create volumes of this storage class.",
13971          "type": "object"
13972        },
13973        "provisioner": {
13974          "description": "Provisioner indicates the type of the provisioner.",
13975          "type": "string"
13976        },
13977        "reclaimPolicy": {
13978          "description": "Dynamically provisioned PersistentVolumes of this storage class are created with this reclaimPolicy. Defaults to Delete.",
13979          "type": "string"
13980        },
13981        "volumeBindingMode": {
13982          "description": "VolumeBindingMode indicates how PersistentVolumeClaims should be provisioned and bound.  When unset, VolumeBindingImmediate is used. This field is only honored by servers that enable the VolumeScheduling feature.",
13983          "type": "string"
13984        }
13985      },
13986      "required": [
13987        "provisioner"
13988      ],
13989      "type": "object",
13990      "x-kubernetes-group-version-kind": [
13991        {
13992          "group": "storage.k8s.io",
13993          "kind": "StorageClass",
13994          "version": "v1"
13995        }
13996      ]
13997    },
13998    "io.k8s.api.storage.v1.StorageClassList": {
13999      "description": "StorageClassList is a collection of storage classes.",
14000      "properties": {
14001        "apiVersion": {
14002          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
14003          "type": "string"
14004        },
14005        "items": {
14006          "description": "Items is the list of StorageClasses",
14007          "items": {
14008            "$ref": "#/definitions/io.k8s.api.storage.v1.StorageClass"
14009          },
14010          "type": "array"
14011        },
14012        "kind": {
14013          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
14014          "type": "string"
14015        },
14016        "metadata": {
14017          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
14018          "description": "Standard list metadata More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
14019        }
14020      },
14021      "required": [
14022        "items"
14023      ],
14024      "type": "object",
14025      "x-kubernetes-group-version-kind": [
14026        {
14027          "group": "storage.k8s.io",
14028          "kind": "StorageClassList",
14029          "version": "v1"
14030        }
14031      ]
14032    },
14033    "io.k8s.api.storage.v1.TokenRequest": {
14034      "description": "TokenRequest contains parameters of a service account token.",
14035      "properties": {
14036        "audience": {
14037          "description": "Audience is the intended audience of the token in \"TokenRequestSpec\". It will default to the audiences of kube apiserver.",
14038          "type": "string"
14039        },
14040        "expirationSeconds": {
14041          "description": "ExpirationSeconds is the duration of validity of the token in \"TokenRequestSpec\". It has the same default value of \"ExpirationSeconds\" in \"TokenRequestSpec\".",
14042          "format": "int64",
14043          "type": "integer"
14044        }
14045      },
14046      "required": [
14047        "audience"
14048      ],
14049      "type": "object"
14050    },
14051    "io.k8s.api.storage.v1.VolumeAttachment": {
14052      "description": "VolumeAttachment captures the intent to attach or detach the specified volume to/from the specified node.\n\nVolumeAttachment objects are non-namespaced.",
14053      "properties": {
14054        "apiVersion": {
14055          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
14056          "type": "string"
14057        },
14058        "kind": {
14059          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
14060          "type": "string"
14061        },
14062        "metadata": {
14063          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
14064          "description": "Standard object metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
14065        },
14066        "spec": {
14067          "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeAttachmentSpec",
14068          "description": "Specification of the desired attach/detach volume behavior. Populated by the Kubernetes system."
14069        },
14070        "status": {
14071          "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeAttachmentStatus",
14072          "description": "Status of the VolumeAttachment request. Populated by the entity completing the attach or detach operation, i.e. the external-attacher."
14073        }
14074      },
14075      "required": [
14076        "spec"
14077      ],
14078      "type": "object",
14079      "x-kubernetes-group-version-kind": [
14080        {
14081          "group": "storage.k8s.io",
14082          "kind": "VolumeAttachment",
14083          "version": "v1"
14084        }
14085      ]
14086    },
14087    "io.k8s.api.storage.v1.VolumeAttachmentList": {
14088      "description": "VolumeAttachmentList is a collection of VolumeAttachment objects.",
14089      "properties": {
14090        "apiVersion": {
14091          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
14092          "type": "string"
14093        },
14094        "items": {
14095          "description": "Items is the list of VolumeAttachments",
14096          "items": {
14097            "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeAttachment"
14098          },
14099          "type": "array"
14100        },
14101        "kind": {
14102          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
14103          "type": "string"
14104        },
14105        "metadata": {
14106          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
14107          "description": "Standard list metadata More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
14108        }
14109      },
14110      "required": [
14111        "items"
14112      ],
14113      "type": "object",
14114      "x-kubernetes-group-version-kind": [
14115        {
14116          "group": "storage.k8s.io",
14117          "kind": "VolumeAttachmentList",
14118          "version": "v1"
14119        }
14120      ]
14121    },
14122    "io.k8s.api.storage.v1.VolumeAttachmentSource": {
14123      "description": "VolumeAttachmentSource represents a volume that should be attached. Right now only PersistenVolumes can be attached via external attacher, in future we may allow also inline volumes in pods. Exactly one member can be set.",
14124      "properties": {
14125        "inlineVolumeSpec": {
14126          "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeSpec",
14127          "description": "inlineVolumeSpec contains all the information necessary to attach a persistent volume defined by a pod's inline VolumeSource. This field is populated only for the CSIMigration feature. It contains translated fields from a pod's inline VolumeSource to a PersistentVolumeSpec. This field is beta-level and is only honored by servers that enabled the CSIMigration feature."
14128        },
14129        "persistentVolumeName": {
14130          "description": "Name of the persistent volume to attach.",
14131          "type": "string"
14132        }
14133      },
14134      "type": "object"
14135    },
14136    "io.k8s.api.storage.v1.VolumeAttachmentSpec": {
14137      "description": "VolumeAttachmentSpec is the specification of a VolumeAttachment request.",
14138      "properties": {
14139        "attacher": {
14140          "description": "Attacher indicates the name of the volume driver that MUST handle this request. This is the name returned by GetPluginName().",
14141          "type": "string"
14142        },
14143        "nodeName": {
14144          "description": "The node that the volume should be attached to.",
14145          "type": "string"
14146        },
14147        "source": {
14148          "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeAttachmentSource",
14149          "description": "Source represents the volume that should be attached."
14150        }
14151      },
14152      "required": [
14153        "attacher",
14154        "source",
14155        "nodeName"
14156      ],
14157      "type": "object"
14158    },
14159    "io.k8s.api.storage.v1.VolumeAttachmentStatus": {
14160      "description": "VolumeAttachmentStatus is the status of a VolumeAttachment request.",
14161      "properties": {
14162        "attachError": {
14163          "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeError",
14164          "description": "The last error encountered during attach operation, if any. This field must only be set by the entity completing the attach operation, i.e. the external-attacher."
14165        },
14166        "attached": {
14167          "description": "Indicates the volume is successfully attached. This field must only be set by the entity completing the attach operation, i.e. the external-attacher.",
14168          "type": "boolean"
14169        },
14170        "attachmentMetadata": {
14171          "additionalProperties": {
14172            "type": "string"
14173          },
14174          "description": "Upon successful attach, this field is populated with any information returned by the attach operation that must be passed into subsequent WaitForAttach or Mount calls. This field must only be set by the entity completing the attach operation, i.e. the external-attacher.",
14175          "type": "object"
14176        },
14177        "detachError": {
14178          "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeError",
14179          "description": "The last error encountered during detach operation, if any. This field must only be set by the entity completing the detach operation, i.e. the external-attacher."
14180        }
14181      },
14182      "required": [
14183        "attached"
14184      ],
14185      "type": "object"
14186    },
14187    "io.k8s.api.storage.v1.VolumeError": {
14188      "description": "VolumeError captures an error encountered during a volume operation.",
14189      "properties": {
14190        "message": {
14191          "description": "String detailing the error encountered during Attach or Detach operation. This string may be logged, so it should not contain sensitive information.",
14192          "type": "string"
14193        },
14194        "time": {
14195          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
14196          "description": "Time the error was encountered."
14197        }
14198      },
14199      "type": "object"
14200    },
14201    "io.k8s.api.storage.v1.VolumeNodeResources": {
14202      "description": "VolumeNodeResources is a set of resource limits for scheduling of volumes.",
14203      "properties": {
14204        "count": {
14205          "description": "Maximum number of unique volumes managed by the CSI driver that can be used on a node. A volume that is both attached and mounted on a node is considered to be used once, not twice. The same rule applies for a unique volume that is shared among multiple pods on the same node. If this field is not specified, then the supported number of volumes on this node is unbounded.",
14206          "format": "int32",
14207          "type": "integer"
14208        }
14209      },
14210      "type": "object"
14211    },
14212    "io.k8s.api.storage.v1alpha1.CSIStorageCapacity": {
14213      "description": "CSIStorageCapacity stores the result of one CSI GetCapacity call. For a given StorageClass, this describes the available capacity in a particular topology segment.  This can be used when considering where to instantiate new PersistentVolumes.\n\nFor example this can express things like: - StorageClass \"standard\" has \"1234 GiB\" available in \"topology.kubernetes.io/zone=us-east1\" - StorageClass \"localssd\" has \"10 GiB\" available in \"kubernetes.io/hostname=knode-abc123\"\n\nThe following three cases all imply that no capacity is available for a certain combination: - no object exists with suitable topology and storage class name - such an object exists, but the capacity is unset - such an object exists, but the capacity is zero\n\nThe producer of these objects can decide which approach is more suitable.\n\nThey are consumed by the kube-scheduler if the CSIStorageCapacity beta feature gate is enabled there and a CSI driver opts into capacity-aware scheduling with CSIDriver.StorageCapacity.",
14214      "properties": {
14215        "apiVersion": {
14216          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
14217          "type": "string"
14218        },
14219        "capacity": {
14220          "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity",
14221          "description": "Capacity is the value reported by the CSI driver in its GetCapacityResponse for a GetCapacityRequest with topology and parameters that match the previous fields.\n\nThe semantic is currently (CSI spec 1.2) defined as: The available capacity, in bytes, of the storage that can be used to provision volumes. If not set, that information is currently unavailable and treated like zero capacity."
14222        },
14223        "kind": {
14224          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
14225          "type": "string"
14226        },
14227        "maximumVolumeSize": {
14228          "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity",
14229          "description": "MaximumVolumeSize is the value reported by the CSI driver in its GetCapacityResponse for a GetCapacityRequest with topology and parameters that match the previous fields.\n\nThis is defined since CSI spec 1.4.0 as the largest size that may be used in a CreateVolumeRequest.capacity_range.required_bytes field to create a volume with the same parameters as those in GetCapacityRequest. The corresponding value in the Kubernetes API is ResourceRequirements.Requests in a volume claim."
14230        },
14231        "metadata": {
14232          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
14233          "description": "Standard object's metadata. The name has no particular meaning. It must be be a DNS subdomain (dots allowed, 253 characters). To ensure that there are no conflicts with other CSI drivers on the cluster, the recommendation is to use csisc-<uuid>, a generated name, or a reverse-domain name which ends with the unique CSI driver name.\n\nObjects are namespaced.\n\nMore info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
14234        },
14235        "nodeTopology": {
14236          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector",
14237          "description": "NodeTopology defines which nodes have access to the storage for which capacity was reported. If not set, the storage is not accessible from any node in the cluster. If empty, the storage is accessible from all nodes. This field is immutable."
14238        },
14239        "storageClassName": {
14240          "description": "The name of the StorageClass that the reported capacity applies to. It must meet the same requirements as the name of a StorageClass object (non-empty, DNS subdomain). If that object no longer exists, the CSIStorageCapacity object is obsolete and should be removed by its creator. This field is immutable.",
14241          "type": "string"
14242        }
14243      },
14244      "required": [
14245        "storageClassName"
14246      ],
14247      "type": "object",
14248      "x-kubernetes-group-version-kind": [
14249        {
14250          "group": "storage.k8s.io",
14251          "kind": "CSIStorageCapacity",
14252          "version": "v1alpha1"
14253        }
14254      ]
14255    },
14256    "io.k8s.api.storage.v1alpha1.CSIStorageCapacityList": {
14257      "description": "CSIStorageCapacityList is a collection of CSIStorageCapacity objects.",
14258      "properties": {
14259        "apiVersion": {
14260          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
14261          "type": "string"
14262        },
14263        "items": {
14264          "description": "Items is the list of CSIStorageCapacity objects.",
14265          "items": {
14266            "$ref": "#/definitions/io.k8s.api.storage.v1alpha1.CSIStorageCapacity"
14267          },
14268          "type": "array",
14269          "x-kubernetes-list-map-keys": [
14270            "name"
14271          ],
14272          "x-kubernetes-list-type": "map"
14273        },
14274        "kind": {
14275          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
14276          "type": "string"
14277        },
14278        "metadata": {
14279          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
14280          "description": "Standard list metadata More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
14281        }
14282      },
14283      "required": [
14284        "items"
14285      ],
14286      "type": "object",
14287      "x-kubernetes-group-version-kind": [
14288        {
14289          "group": "storage.k8s.io",
14290          "kind": "CSIStorageCapacityList",
14291          "version": "v1alpha1"
14292        }
14293      ]
14294    },
14295    "io.k8s.api.storage.v1alpha1.VolumeAttachment": {
14296      "description": "VolumeAttachment captures the intent to attach or detach the specified volume to/from the specified node.\n\nVolumeAttachment objects are non-namespaced.",
14297      "properties": {
14298        "apiVersion": {
14299          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
14300          "type": "string"
14301        },
14302        "kind": {
14303          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
14304          "type": "string"
14305        },
14306        "metadata": {
14307          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
14308          "description": "Standard object metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
14309        },
14310        "spec": {
14311          "$ref": "#/definitions/io.k8s.api.storage.v1alpha1.VolumeAttachmentSpec",
14312          "description": "Specification of the desired attach/detach volume behavior. Populated by the Kubernetes system."
14313        },
14314        "status": {
14315          "$ref": "#/definitions/io.k8s.api.storage.v1alpha1.VolumeAttachmentStatus",
14316          "description": "Status of the VolumeAttachment request. Populated by the entity completing the attach or detach operation, i.e. the external-attacher."
14317        }
14318      },
14319      "required": [
14320        "spec"
14321      ],
14322      "type": "object",
14323      "x-kubernetes-group-version-kind": [
14324        {
14325          "group": "storage.k8s.io",
14326          "kind": "VolumeAttachment",
14327          "version": "v1alpha1"
14328        }
14329      ]
14330    },
14331    "io.k8s.api.storage.v1alpha1.VolumeAttachmentList": {
14332      "description": "VolumeAttachmentList is a collection of VolumeAttachment objects.",
14333      "properties": {
14334        "apiVersion": {
14335          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
14336          "type": "string"
14337        },
14338        "items": {
14339          "description": "Items is the list of VolumeAttachments",
14340          "items": {
14341            "$ref": "#/definitions/io.k8s.api.storage.v1alpha1.VolumeAttachment"
14342          },
14343          "type": "array"
14344        },
14345        "kind": {
14346          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
14347          "type": "string"
14348        },
14349        "metadata": {
14350          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
14351          "description": "Standard list metadata More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
14352        }
14353      },
14354      "required": [
14355        "items"
14356      ],
14357      "type": "object",
14358      "x-kubernetes-group-version-kind": [
14359        {
14360          "group": "storage.k8s.io",
14361          "kind": "VolumeAttachmentList",
14362          "version": "v1alpha1"
14363        }
14364      ]
14365    },
14366    "io.k8s.api.storage.v1alpha1.VolumeAttachmentSource": {
14367      "description": "VolumeAttachmentSource represents a volume that should be attached. Right now only PersistenVolumes can be attached via external attacher, in future we may allow also inline volumes in pods. Exactly one member can be set.",
14368      "properties": {
14369        "inlineVolumeSpec": {
14370          "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeSpec",
14371          "description": "inlineVolumeSpec contains all the information necessary to attach a persistent volume defined by a pod's inline VolumeSource. This field is populated only for the CSIMigration feature. It contains translated fields from a pod's inline VolumeSource to a PersistentVolumeSpec. This field is alpha-level and is only honored by servers that enabled the CSIMigration feature."
14372        },
14373        "persistentVolumeName": {
14374          "description": "Name of the persistent volume to attach.",
14375          "type": "string"
14376        }
14377      },
14378      "type": "object"
14379    },
14380    "io.k8s.api.storage.v1alpha1.VolumeAttachmentSpec": {
14381      "description": "VolumeAttachmentSpec is the specification of a VolumeAttachment request.",
14382      "properties": {
14383        "attacher": {
14384          "description": "Attacher indicates the name of the volume driver that MUST handle this request. This is the name returned by GetPluginName().",
14385          "type": "string"
14386        },
14387        "nodeName": {
14388          "description": "The node that the volume should be attached to.",
14389          "type": "string"
14390        },
14391        "source": {
14392          "$ref": "#/definitions/io.k8s.api.storage.v1alpha1.VolumeAttachmentSource",
14393          "description": "Source represents the volume that should be attached."
14394        }
14395      },
14396      "required": [
14397        "attacher",
14398        "source",
14399        "nodeName"
14400      ],
14401      "type": "object"
14402    },
14403    "io.k8s.api.storage.v1alpha1.VolumeAttachmentStatus": {
14404      "description": "VolumeAttachmentStatus is the status of a VolumeAttachment request.",
14405      "properties": {
14406        "attachError": {
14407          "$ref": "#/definitions/io.k8s.api.storage.v1alpha1.VolumeError",
14408          "description": "The last error encountered during attach operation, if any. This field must only be set by the entity completing the attach operation, i.e. the external-attacher."
14409        },
14410        "attached": {
14411          "description": "Indicates the volume is successfully attached. This field must only be set by the entity completing the attach operation, i.e. the external-attacher.",
14412          "type": "boolean"
14413        },
14414        "attachmentMetadata": {
14415          "additionalProperties": {
14416            "type": "string"
14417          },
14418          "description": "Upon successful attach, this field is populated with any information returned by the attach operation that must be passed into subsequent WaitForAttach or Mount calls. This field must only be set by the entity completing the attach operation, i.e. the external-attacher.",
14419          "type": "object"
14420        },
14421        "detachError": {
14422          "$ref": "#/definitions/io.k8s.api.storage.v1alpha1.VolumeError",
14423          "description": "The last error encountered during detach operation, if any. This field must only be set by the entity completing the detach operation, i.e. the external-attacher."
14424        }
14425      },
14426      "required": [
14427        "attached"
14428      ],
14429      "type": "object"
14430    },
14431    "io.k8s.api.storage.v1alpha1.VolumeError": {
14432      "description": "VolumeError captures an error encountered during a volume operation.",
14433      "properties": {
14434        "message": {
14435          "description": "String detailing the error encountered during Attach or Detach operation. This string maybe logged, so it should not contain sensitive information.",
14436          "type": "string"
14437        },
14438        "time": {
14439          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
14440          "description": "Time the error was encountered."
14441        }
14442      },
14443      "type": "object"
14444    },
14445    "io.k8s.api.storage.v1beta1.CSIStorageCapacity": {
14446      "description": "CSIStorageCapacity stores the result of one CSI GetCapacity call. For a given StorageClass, this describes the available capacity in a particular topology segment.  This can be used when considering where to instantiate new PersistentVolumes.\n\nFor example this can express things like: - StorageClass \"standard\" has \"1234 GiB\" available in \"topology.kubernetes.io/zone=us-east1\" - StorageClass \"localssd\" has \"10 GiB\" available in \"kubernetes.io/hostname=knode-abc123\"\n\nThe following three cases all imply that no capacity is available for a certain combination: - no object exists with suitable topology and storage class name - such an object exists, but the capacity is unset - such an object exists, but the capacity is zero\n\nThe producer of these objects can decide which approach is more suitable.\n\nThey are consumed by the kube-scheduler if the CSIStorageCapacity beta feature gate is enabled there and a CSI driver opts into capacity-aware scheduling with CSIDriver.StorageCapacity.",
14447      "properties": {
14448        "apiVersion": {
14449          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
14450          "type": "string"
14451        },
14452        "capacity": {
14453          "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity",
14454          "description": "Capacity is the value reported by the CSI driver in its GetCapacityResponse for a GetCapacityRequest with topology and parameters that match the previous fields.\n\nThe semantic is currently (CSI spec 1.2) defined as: The available capacity, in bytes, of the storage that can be used to provision volumes. If not set, that information is currently unavailable and treated like zero capacity."
14455        },
14456        "kind": {
14457          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
14458          "type": "string"
14459        },
14460        "maximumVolumeSize": {
14461          "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity",
14462          "description": "MaximumVolumeSize is the value reported by the CSI driver in its GetCapacityResponse for a GetCapacityRequest with topology and parameters that match the previous fields.\n\nThis is defined since CSI spec 1.4.0 as the largest size that may be used in a CreateVolumeRequest.capacity_range.required_bytes field to create a volume with the same parameters as those in GetCapacityRequest. The corresponding value in the Kubernetes API is ResourceRequirements.Requests in a volume claim."
14463        },
14464        "metadata": {
14465          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
14466          "description": "Standard object's metadata. The name has no particular meaning. It must be be a DNS subdomain (dots allowed, 253 characters). To ensure that there are no conflicts with other CSI drivers on the cluster, the recommendation is to use csisc-<uuid>, a generated name, or a reverse-domain name which ends with the unique CSI driver name.\n\nObjects are namespaced.\n\nMore info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
14467        },
14468        "nodeTopology": {
14469          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector",
14470          "description": "NodeTopology defines which nodes have access to the storage for which capacity was reported. If not set, the storage is not accessible from any node in the cluster. If empty, the storage is accessible from all nodes. This field is immutable."
14471        },
14472        "storageClassName": {
14473          "description": "The name of the StorageClass that the reported capacity applies to. It must meet the same requirements as the name of a StorageClass object (non-empty, DNS subdomain). If that object no longer exists, the CSIStorageCapacity object is obsolete and should be removed by its creator. This field is immutable.",
14474          "type": "string"
14475        }
14476      },
14477      "required": [
14478        "storageClassName"
14479      ],
14480      "type": "object",
14481      "x-kubernetes-group-version-kind": [
14482        {
14483          "group": "storage.k8s.io",
14484          "kind": "CSIStorageCapacity",
14485          "version": "v1beta1"
14486        }
14487      ]
14488    },
14489    "io.k8s.api.storage.v1beta1.CSIStorageCapacityList": {
14490      "description": "CSIStorageCapacityList is a collection of CSIStorageCapacity objects.",
14491      "properties": {
14492        "apiVersion": {
14493          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
14494          "type": "string"
14495        },
14496        "items": {
14497          "description": "Items is the list of CSIStorageCapacity objects.",
14498          "items": {
14499            "$ref": "#/definitions/io.k8s.api.storage.v1beta1.CSIStorageCapacity"
14500          },
14501          "type": "array",
14502          "x-kubernetes-list-map-keys": [
14503            "name"
14504          ],
14505          "x-kubernetes-list-type": "map"
14506        },
14507        "kind": {
14508          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
14509          "type": "string"
14510        },
14511        "metadata": {
14512          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
14513          "description": "Standard list metadata More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
14514        }
14515      },
14516      "required": [
14517        "items"
14518      ],
14519      "type": "object",
14520      "x-kubernetes-group-version-kind": [
14521        {
14522          "group": "storage.k8s.io",
14523          "kind": "CSIStorageCapacityList",
14524          "version": "v1beta1"
14525        }
14526      ]
14527    },
14528    "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceColumnDefinition": {
14529      "description": "CustomResourceColumnDefinition specifies a column for server side printing.",
14530      "properties": {
14531        "description": {
14532          "description": "description is a human readable description of this column.",
14533          "type": "string"
14534        },
14535        "format": {
14536          "description": "format is an optional OpenAPI type definition for this column. The 'name' format is applied to the primary identifier column to assist in clients identifying column is the resource name. See https://github.com/OAI/OpenAPI-Specification/blob/master/versions/2.0.md#data-types for details.",
14537          "type": "string"
14538        },
14539        "jsonPath": {
14540          "description": "jsonPath is a simple JSON path (i.e. with array notation) which is evaluated against each custom resource to produce the value for this column.",
14541          "type": "string"
14542        },
14543        "name": {
14544          "description": "name is a human readable name for the column.",
14545          "type": "string"
14546        },
14547        "priority": {
14548          "description": "priority is an integer defining the relative importance of this column compared to others. Lower numbers are considered higher priority. Columns that may be omitted in limited space scenarios should be given a priority greater than 0.",
14549          "format": "int32",
14550          "type": "integer"
14551        },
14552        "type": {
14553          "description": "type is an OpenAPI type definition for this column. See https://github.com/OAI/OpenAPI-Specification/blob/master/versions/2.0.md#data-types for details.",
14554          "type": "string"
14555        }
14556      },
14557      "required": [
14558        "name",
14559        "type",
14560        "jsonPath"
14561      ],
14562      "type": "object"
14563    },
14564    "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceConversion": {
14565      "description": "CustomResourceConversion describes how to convert different versions of a CR.",
14566      "properties": {
14567        "strategy": {
14568          "description": "strategy specifies how custom resources are converted between versions. Allowed values are: - `None`: The converter only change the apiVersion and would not touch any other field in the custom resource. - `Webhook`: API Server will call to an external webhook to do the conversion. Additional information\n  is needed for this option. This requires spec.preserveUnknownFields to be false, and spec.conversion.webhook to be set.",
14569          "type": "string"
14570        },
14571        "webhook": {
14572          "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.WebhookConversion",
14573          "description": "webhook describes how to call the conversion webhook. Required when `strategy` is set to `Webhook`."
14574        }
14575      },
14576      "required": [
14577        "strategy"
14578      ],
14579      "type": "object"
14580    },
14581    "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinition": {
14582      "description": "CustomResourceDefinition represents a resource that should be exposed on the API server.  Its name MUST be in the format <.spec.name>.<.spec.group>.",
14583      "properties": {
14584        "apiVersion": {
14585          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
14586          "type": "string"
14587        },
14588        "kind": {
14589          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
14590          "type": "string"
14591        },
14592        "metadata": {
14593          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
14594          "description": "Standard object's metadata More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
14595        },
14596        "spec": {
14597          "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinitionSpec",
14598          "description": "spec describes how the user wants the resources to appear"
14599        },
14600        "status": {
14601          "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinitionStatus",
14602          "description": "status indicates the actual state of the CustomResourceDefinition"
14603        }
14604      },
14605      "required": [
14606        "spec"
14607      ],
14608      "type": "object",
14609      "x-kubernetes-group-version-kind": [
14610        {
14611          "group": "apiextensions.k8s.io",
14612          "kind": "CustomResourceDefinition",
14613          "version": "v1"
14614        }
14615      ]
14616    },
14617    "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinitionCondition": {
14618      "description": "CustomResourceDefinitionCondition contains details for the current condition of this pod.",
14619      "properties": {
14620        "lastTransitionTime": {
14621          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
14622          "description": "lastTransitionTime last time the condition transitioned from one status to another."
14623        },
14624        "message": {
14625          "description": "message is a human-readable message indicating details about last transition.",
14626          "type": "string"
14627        },
14628        "reason": {
14629          "description": "reason is a unique, one-word, CamelCase reason for the condition's last transition.",
14630          "type": "string"
14631        },
14632        "status": {
14633          "description": "status is the status of the condition. Can be True, False, Unknown.",
14634          "type": "string"
14635        },
14636        "type": {
14637          "description": "type is the type of the condition. Types include Established, NamesAccepted and Terminating.",
14638          "type": "string"
14639        }
14640      },
14641      "required": [
14642        "type",
14643        "status"
14644      ],
14645      "type": "object"
14646    },
14647    "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinitionList": {
14648      "description": "CustomResourceDefinitionList is a list of CustomResourceDefinition objects.",
14649      "properties": {
14650        "apiVersion": {
14651          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
14652          "type": "string"
14653        },
14654        "items": {
14655          "description": "items list individual CustomResourceDefinition objects",
14656          "items": {
14657            "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinition"
14658          },
14659          "type": "array"
14660        },
14661        "kind": {
14662          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
14663          "type": "string"
14664        },
14665        "metadata": {
14666          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
14667          "description": "Standard object's metadata More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
14668        }
14669      },
14670      "required": [
14671        "items"
14672      ],
14673      "type": "object",
14674      "x-kubernetes-group-version-kind": [
14675        {
14676          "group": "apiextensions.k8s.io",
14677          "kind": "CustomResourceDefinitionList",
14678          "version": "v1"
14679        }
14680      ]
14681    },
14682    "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinitionNames": {
14683      "description": "CustomResourceDefinitionNames indicates the names to serve this CustomResourceDefinition",
14684      "properties": {
14685        "categories": {
14686          "description": "categories is a list of grouped resources this custom resource belongs to (e.g. 'all'). This is published in API discovery documents, and used by clients to support invocations like `kubectl get all`.",
14687          "items": {
14688            "type": "string"
14689          },
14690          "type": "array"
14691        },
14692        "kind": {
14693          "description": "kind is the serialized kind of the resource. It is normally CamelCase and singular. Custom resource instances will use this value as the `kind` attribute in API calls.",
14694          "type": "string"
14695        },
14696        "listKind": {
14697          "description": "listKind is the serialized kind of the list for this resource. Defaults to \"`kind`List\".",
14698          "type": "string"
14699        },
14700        "plural": {
14701          "description": "plural is the plural name of the resource to serve. The custom resources are served under `/apis/<group>/<version>/.../<plural>`. Must match the name of the CustomResourceDefinition (in the form `<names.plural>.<group>`). Must be all lowercase.",
14702          "type": "string"
14703        },
14704        "shortNames": {
14705          "description": "shortNames are short names for the resource, exposed in API discovery documents, and used by clients to support invocations like `kubectl get <shortname>`. It must be all lowercase.",
14706          "items": {
14707            "type": "string"
14708          },
14709          "type": "array"
14710        },
14711        "singular": {
14712          "description": "singular is the singular name of the resource. It must be all lowercase. Defaults to lowercased `kind`.",
14713          "type": "string"
14714        }
14715      },
14716      "required": [
14717        "plural",
14718        "kind"
14719      ],
14720      "type": "object"
14721    },
14722    "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinitionSpec": {
14723      "description": "CustomResourceDefinitionSpec describes how a user wants their resource to appear",
14724      "properties": {
14725        "conversion": {
14726          "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceConversion",
14727          "description": "conversion defines conversion settings for the CRD."
14728        },
14729        "group": {
14730          "description": "group is the API group of the defined custom resource. The custom resources are served under `/apis/<group>/...`. Must match the name of the CustomResourceDefinition (in the form `<names.plural>.<group>`).",
14731          "type": "string"
14732        },
14733        "names": {
14734          "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinitionNames",
14735          "description": "names specify the resource and kind names for the custom resource."
14736        },
14737        "preserveUnknownFields": {
14738          "description": "preserveUnknownFields indicates that object fields which are not specified in the OpenAPI schema should be preserved when persisting to storage. apiVersion, kind, metadata and known fields inside metadata are always preserved. This field is deprecated in favor of setting `x-preserve-unknown-fields` to true in `spec.versions[*].schema.openAPIV3Schema`. See https://kubernetes.io/docs/tasks/access-kubernetes-api/custom-resources/custom-resource-definitions/#pruning-versus-preserving-unknown-fields for details.",
14739          "type": "boolean"
14740        },
14741        "scope": {
14742          "description": "scope indicates whether the defined custom resource is cluster- or namespace-scoped. Allowed values are `Cluster` and `Namespaced`.",
14743          "type": "string"
14744        },
14745        "versions": {
14746          "description": "versions is the list of all API versions of the defined custom resource. Version names are used to compute the order in which served versions are listed in API discovery. If the version string is \"kube-like\", it will sort above non \"kube-like\" version strings, which are ordered lexicographically. \"Kube-like\" versions start with a \"v\", then are followed by a number (the major version), then optionally the string \"alpha\" or \"beta\" and another number (the minor version). These are sorted first by GA > beta > alpha (where GA is a version with no suffix such as beta or alpha), and then by comparing major version, then minor version. An example sorted list of versions: v10, v2, v1, v11beta2, v10beta3, v3beta1, v12alpha1, v11alpha2, foo1, foo10.",
14747          "items": {
14748            "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinitionVersion"
14749          },
14750          "type": "array"
14751        }
14752      },
14753      "required": [
14754        "group",
14755        "names",
14756        "scope",
14757        "versions"
14758      ],
14759      "type": "object"
14760    },
14761    "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinitionStatus": {
14762      "description": "CustomResourceDefinitionStatus indicates the state of the CustomResourceDefinition",
14763      "properties": {
14764        "acceptedNames": {
14765          "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinitionNames",
14766          "description": "acceptedNames are the names that are actually being used to serve discovery. They may be different than the names in spec."
14767        },
14768        "conditions": {
14769          "description": "conditions indicate state for particular aspects of a CustomResourceDefinition",
14770          "items": {
14771            "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinitionCondition"
14772          },
14773          "type": "array",
14774          "x-kubernetes-list-map-keys": [
14775            "type"
14776          ],
14777          "x-kubernetes-list-type": "map"
14778        },
14779        "storedVersions": {
14780          "description": "storedVersions lists all versions of CustomResources that were ever persisted. Tracking these versions allows a migration path for stored versions in etcd. The field is mutable so a migration controller can finish a migration to another version (ensuring no old objects are left in storage), and then remove the rest of the versions from this list. Versions may not be removed from `spec.versions` while they exist in this list.",
14781          "items": {
14782            "type": "string"
14783          },
14784          "type": "array"
14785        }
14786      },
14787      "type": "object"
14788    },
14789    "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinitionVersion": {
14790      "description": "CustomResourceDefinitionVersion describes a version for CRD.",
14791      "properties": {
14792        "additionalPrinterColumns": {
14793          "description": "additionalPrinterColumns specifies additional columns returned in Table output. See https://kubernetes.io/docs/reference/using-api/api-concepts/#receiving-resources-as-tables for details. If no columns are specified, a single column displaying the age of the custom resource is used.",
14794          "items": {
14795            "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceColumnDefinition"
14796          },
14797          "type": "array"
14798        },
14799        "deprecated": {
14800          "description": "deprecated indicates this version of the custom resource API is deprecated. When set to true, API requests to this version receive a warning header in the server response. Defaults to false.",
14801          "type": "boolean"
14802        },
14803        "deprecationWarning": {
14804          "description": "deprecationWarning overrides the default warning returned to API clients. May only be set when `deprecated` is true. The default warning indicates this version is deprecated and recommends use of the newest served version of equal or greater stability, if one exists.",
14805          "type": "string"
14806        },
14807        "name": {
14808          "description": "name is the version name, e.g. “v1”, “v2beta1”, etc. The custom resources are served under this version at `/apis/<group>/<version>/...` if `served` is true.",
14809          "type": "string"
14810        },
14811        "schema": {
14812          "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceValidation",
14813          "description": "schema describes the schema used for validation, pruning, and defaulting of this version of the custom resource."
14814        },
14815        "served": {
14816          "description": "served is a flag enabling/disabling this version from being served via REST APIs",
14817          "type": "boolean"
14818        },
14819        "storage": {
14820          "description": "storage indicates this version should be used when persisting custom resources to storage. There must be exactly one version with storage=true.",
14821          "type": "boolean"
14822        },
14823        "subresources": {
14824          "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceSubresources",
14825          "description": "subresources specify what subresources this version of the defined custom resource have."
14826        }
14827      },
14828      "required": [
14829        "name",
14830        "served",
14831        "storage"
14832      ],
14833      "type": "object"
14834    },
14835    "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceSubresourceScale": {
14836      "description": "CustomResourceSubresourceScale defines how to serve the scale subresource for CustomResources.",
14837      "properties": {
14838        "labelSelectorPath": {
14839          "description": "labelSelectorPath defines the JSON path inside of a custom resource that corresponds to Scale `status.selector`. Only JSON paths without the array notation are allowed. Must be a JSON Path under `.status` or `.spec`. Must be set to work with HorizontalPodAutoscaler. The field pointed by this JSON path must be a string field (not a complex selector struct) which contains a serialized label selector in string form. More info: https://kubernetes.io/docs/tasks/access-kubernetes-api/custom-resources/custom-resource-definitions#scale-subresource If there is no value under the given path in the custom resource, the `status.selector` value in the `/scale` subresource will default to the empty string.",
14840          "type": "string"
14841        },
14842        "specReplicasPath": {
14843          "description": "specReplicasPath defines the JSON path inside of a custom resource that corresponds to Scale `spec.replicas`. Only JSON paths without the array notation are allowed. Must be a JSON Path under `.spec`. If there is no value under the given path in the custom resource, the `/scale` subresource will return an error on GET.",
14844          "type": "string"
14845        },
14846        "statusReplicasPath": {
14847          "description": "statusReplicasPath defines the JSON path inside of a custom resource that corresponds to Scale `status.replicas`. Only JSON paths without the array notation are allowed. Must be a JSON Path under `.status`. If there is no value under the given path in the custom resource, the `status.replicas` value in the `/scale` subresource will default to 0.",
14848          "type": "string"
14849        }
14850      },
14851      "required": [
14852        "specReplicasPath",
14853        "statusReplicasPath"
14854      ],
14855      "type": "object"
14856    },
14857    "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceSubresourceStatus": {
14858      "description": "CustomResourceSubresourceStatus defines how to serve the status subresource for CustomResources. Status is represented by the `.status` JSON path inside of a CustomResource. When set, * exposes a /status subresource for the custom resource * PUT requests to the /status subresource take a custom resource object, and ignore changes to anything except the status stanza * PUT/POST/PATCH requests to the custom resource ignore changes to the status stanza",
14859      "type": "object"
14860    },
14861    "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceSubresources": {
14862      "description": "CustomResourceSubresources defines the status and scale subresources for CustomResources.",
14863      "properties": {
14864        "scale": {
14865          "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceSubresourceScale",
14866          "description": "scale indicates the custom resource should serve a `/scale` subresource that returns an `autoscaling/v1` Scale object."
14867        },
14868        "status": {
14869          "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceSubresourceStatus",
14870          "description": "status indicates the custom resource should serve a `/status` subresource. When enabled: 1. requests to the custom resource primary endpoint ignore changes to the `status` stanza of the object. 2. requests to the custom resource `/status` subresource ignore changes to anything other than the `status` stanza of the object."
14871        }
14872      },
14873      "type": "object"
14874    },
14875    "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceValidation": {
14876      "description": "CustomResourceValidation is a list of validation methods for CustomResources.",
14877      "properties": {
14878        "openAPIV3Schema": {
14879          "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaProps",
14880          "description": "openAPIV3Schema is the OpenAPI v3 schema to use for validation and pruning."
14881        }
14882      },
14883      "type": "object"
14884    },
14885    "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.ExternalDocumentation": {
14886      "description": "ExternalDocumentation allows referencing an external resource for extended documentation.",
14887      "properties": {
14888        "description": {
14889          "type": "string"
14890        },
14891        "url": {
14892          "type": "string"
14893        }
14894      },
14895      "type": "object"
14896    },
14897    "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSON": {
14898      "description": "JSON represents any valid JSON value. These types are supported: bool, int64, float64, string, []interface{}, map[string]interface{} and nil."
14899    },
14900    "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaProps": {
14901      "description": "JSONSchemaProps is a JSON-Schema following Specification Draft 4 (http://json-schema.org/).",
14902      "properties": {
14903        "$ref": {
14904          "type": "string"
14905        },
14906        "$schema": {
14907          "type": "string"
14908        },
14909        "additionalItems": {
14910          "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaPropsOrBool"
14911        },
14912        "additionalProperties": {
14913          "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaPropsOrBool"
14914        },
14915        "allOf": {
14916          "items": {
14917            "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaProps"
14918          },
14919          "type": "array"
14920        },
14921        "anyOf": {
14922          "items": {
14923            "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaProps"
14924          },
14925          "type": "array"
14926        },
14927        "default": {
14928          "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSON",
14929          "description": "default is a default value for undefined object fields. Defaulting is a beta feature under the CustomResourceDefaulting feature gate. Defaulting requires spec.preserveUnknownFields to be false."
14930        },
14931        "definitions": {
14932          "additionalProperties": {
14933            "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaProps"
14934          },
14935          "type": "object"
14936        },
14937        "dependencies": {
14938          "additionalProperties": {
14939            "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaPropsOrStringArray"
14940          },
14941          "type": "object"
14942        },
14943        "description": {
14944          "type": "string"
14945        },
14946        "enum": {
14947          "items": {
14948            "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSON"
14949          },
14950          "type": "array"
14951        },
14952        "example": {
14953          "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSON"
14954        },
14955        "exclusiveMaximum": {
14956          "type": "boolean"
14957        },
14958        "exclusiveMinimum": {
14959          "type": "boolean"
14960        },
14961        "externalDocs": {
14962          "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.ExternalDocumentation"
14963        },
14964        "format": {
14965          "description": "format is an OpenAPI v3 format string. Unknown formats are ignored. The following formats are validated:\n\n- bsonobjectid: a bson object ID, i.e. a 24 characters hex string - uri: an URI as parsed by Golang net/url.ParseRequestURI - email: an email address as parsed by Golang net/mail.ParseAddress - hostname: a valid representation for an Internet host name, as defined by RFC 1034, section 3.1 [RFC1034]. - ipv4: an IPv4 IP as parsed by Golang net.ParseIP - ipv6: an IPv6 IP as parsed by Golang net.ParseIP - cidr: a CIDR as parsed by Golang net.ParseCIDR - mac: a MAC address as parsed by Golang net.ParseMAC - uuid: an UUID that allows uppercase defined by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{12}$ - uuid3: an UUID3 that allows uppercase defined by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?3[0-9a-f]{3}-?[0-9a-f]{4}-?[0-9a-f]{12}$ - uuid4: an UUID4 that allows uppercase defined by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?4[0-9a-f]{3}-?[89ab][0-9a-f]{3}-?[0-9a-f]{12}$ - uuid5: an UUID5 that allows uppercase defined by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?5[0-9a-f]{3}-?[89ab][0-9a-f]{3}-?[0-9a-f]{12}$ - isbn: an ISBN10 or ISBN13 number string like \"0321751043\" or \"978-0321751041\" - isbn10: an ISBN10 number string like \"0321751043\" - isbn13: an ISBN13 number string like \"978-0321751041\" - creditcard: a credit card number defined by the regex ^(?:4[0-9]{12}(?:[0-9]{3})?|5[1-5][0-9]{14}|6(?:011|5[0-9][0-9])[0-9]{12}|3[47][0-9]{13}|3(?:0[0-5]|[68][0-9])[0-9]{11}|(?:2131|1800|35\\d{3})\\d{11})$ with any non digit characters mixed in - ssn: a U.S. social security number following the regex ^\\d{3}[- ]?\\d{2}[- ]?\\d{4}$ - hexcolor: an hexadecimal color code like \"#FFFFFF: following the regex ^#?([0-9a-fA-F]{3}|[0-9a-fA-F]{6})$ - rgbcolor: an RGB color code like rgb like \"rgb(255,255,2559\" - byte: base64 encoded binary data - password: any kind of string - date: a date string like \"2006-01-02\" as defined by full-date in RFC3339 - duration: a duration string like \"22 ns\" as parsed by Golang time.ParseDuration or compatible with Scala duration format - datetime: a date time string like \"2014-12-15T19:30:20.000Z\" as defined by date-time in RFC3339.",
14966          "type": "string"
14967        },
14968        "id": {
14969          "type": "string"
14970        },
14971        "items": {
14972          "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaPropsOrArray"
14973        },
14974        "maxItems": {
14975          "format": "int64",
14976          "type": "integer"
14977        },
14978        "maxLength": {
14979          "format": "int64",
14980          "type": "integer"
14981        },
14982        "maxProperties": {
14983          "format": "int64",
14984          "type": "integer"
14985        },
14986        "maximum": {
14987          "format": "double",
14988          "type": "number"
14989        },
14990        "minItems": {
14991          "format": "int64",
14992          "type": "integer"
14993        },
14994        "minLength": {
14995          "format": "int64",
14996          "type": "integer"
14997        },
14998        "minProperties": {
14999          "format": "int64",
15000          "type": "integer"
15001        },
15002        "minimum": {
15003          "format": "double",
15004          "type": "number"
15005        },
15006        "multipleOf": {
15007          "format": "double",
15008          "type": "number"
15009        },
15010        "not": {
15011          "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaProps"
15012        },
15013        "nullable": {
15014          "type": "boolean"
15015        },
15016        "oneOf": {
15017          "items": {
15018            "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaProps"
15019          },
15020          "type": "array"
15021        },
15022        "pattern": {
15023          "type": "string"
15024        },
15025        "patternProperties": {
15026          "additionalProperties": {
15027            "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaProps"
15028          },
15029          "type": "object"
15030        },
15031        "properties": {
15032          "additionalProperties": {
15033            "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaProps"
15034          },
15035          "type": "object"
15036        },
15037        "required": {
15038          "items": {
15039            "type": "string"
15040          },
15041          "type": "array"
15042        },
15043        "title": {
15044          "type": "string"
15045        },
15046        "type": {
15047          "type": "string"
15048        },
15049        "uniqueItems": {
15050          "type": "boolean"
15051        },
15052        "x-kubernetes-embedded-resource": {
15053          "description": "x-kubernetes-embedded-resource defines that the value is an embedded Kubernetes runtime.Object, with TypeMeta and ObjectMeta. The type must be object. It is allowed to further restrict the embedded object. kind, apiVersion and metadata are validated automatically. x-kubernetes-preserve-unknown-fields is allowed to be true, but does not have to be if the object is fully specified (up to kind, apiVersion, metadata).",
15054          "type": "boolean"
15055        },
15056        "x-kubernetes-int-or-string": {
15057          "description": "x-kubernetes-int-or-string specifies that this value is either an integer or a string. If this is true, an empty type is allowed and type as child of anyOf is permitted if following one of the following patterns:\n\n1) anyOf:\n   - type: integer\n   - type: string\n2) allOf:\n   - anyOf:\n     - type: integer\n     - type: string\n   - ... zero or more",
15058          "type": "boolean"
15059        },
15060        "x-kubernetes-list-map-keys": {
15061          "description": "x-kubernetes-list-map-keys annotates an array with the x-kubernetes-list-type `map` by specifying the keys used as the index of the map.\n\nThis tag MUST only be used on lists that have the \"x-kubernetes-list-type\" extension set to \"map\". Also, the values specified for this attribute must be a scalar typed field of the child structure (no nesting is supported).\n\nThe properties specified must either be required or have a default value, to ensure those properties are present for all list items.",
15062          "items": {
15063            "type": "string"
15064          },
15065          "type": "array"
15066        },
15067        "x-kubernetes-list-type": {
15068          "description": "x-kubernetes-list-type annotates an array to further describe its topology. This extension must only be used on lists and may have 3 possible values:\n\n1) `atomic`: the list is treated as a single entity, like a scalar.\n     Atomic lists will be entirely replaced when updated. This extension\n     may be used on any type of list (struct, scalar, ...).\n2) `set`:\n     Sets are lists that must not have multiple items with the same value. Each\n     value must be a scalar, an object with x-kubernetes-map-type `atomic` or an\n     array with x-kubernetes-list-type `atomic`.\n3) `map`:\n     These lists are like maps in that their elements have a non-index key\n     used to identify them. Order is preserved upon merge. The map tag\n     must only be used on a list with elements of type object.\nDefaults to atomic for arrays.",
15069          "type": "string"
15070        },
15071        "x-kubernetes-map-type": {
15072          "description": "x-kubernetes-map-type annotates an object to further describe its topology. This extension must only be used when type is object and may have 2 possible values:\n\n1) `granular`:\n     These maps are actual maps (key-value pairs) and each fields are independent\n     from each other (they can each be manipulated by separate actors). This is\n     the default behaviour for all maps.\n2) `atomic`: the list is treated as a single entity, like a scalar.\n     Atomic maps will be entirely replaced when updated.",
15073          "type": "string"
15074        },
15075        "x-kubernetes-preserve-unknown-fields": {
15076          "description": "x-kubernetes-preserve-unknown-fields stops the API server decoding step from pruning fields which are not specified in the validation schema. This affects fields recursively, but switches back to normal pruning behaviour if nested properties or additionalProperties are specified in the schema. This can either be true or undefined. False is forbidden.",
15077          "type": "boolean"
15078        }
15079      },
15080      "type": "object"
15081    },
15082    "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaPropsOrArray": {
15083      "description": "JSONSchemaPropsOrArray represents a value that can either be a JSONSchemaProps or an array of JSONSchemaProps. Mainly here for serialization purposes."
15084    },
15085    "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaPropsOrBool": {
15086      "description": "JSONSchemaPropsOrBool represents JSONSchemaProps or a boolean value. Defaults to true for the boolean property."
15087    },
15088    "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaPropsOrStringArray": {
15089      "description": "JSONSchemaPropsOrStringArray represents a JSONSchemaProps or a string array."
15090    },
15091    "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.ServiceReference": {
15092      "description": "ServiceReference holds a reference to Service.legacy.k8s.io",
15093      "properties": {
15094        "name": {
15095          "description": "name is the name of the service. Required",
15096          "type": "string"
15097        },
15098        "namespace": {
15099          "description": "namespace is the namespace of the service. Required",
15100          "type": "string"
15101        },
15102        "path": {
15103          "description": "path is an optional URL path at which the webhook will be contacted.",
15104          "type": "string"
15105        },
15106        "port": {
15107          "description": "port is an optional service port at which the webhook will be contacted. `port` should be a valid port number (1-65535, inclusive). Defaults to 443 for backward compatibility.",
15108          "format": "int32",
15109          "type": "integer"
15110        }
15111      },
15112      "required": [
15113        "namespace",
15114        "name"
15115      ],
15116      "type": "object"
15117    },
15118    "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.WebhookClientConfig": {
15119      "description": "WebhookClientConfig contains the information to make a TLS connection with the webhook.",
15120      "properties": {
15121        "caBundle": {
15122          "description": "caBundle is a PEM encoded CA bundle which will be used to validate the webhook's server certificate. If unspecified, system trust roots on the apiserver are used.",
15123          "format": "byte",
15124          "type": "string"
15125        },
15126        "service": {
15127          "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.ServiceReference",
15128          "description": "service is a reference to the service for this webhook. Either service or url must be specified.\n\nIf the webhook is running within the cluster, then you should use `service`."
15129        },
15130        "url": {
15131          "description": "url gives the location of the webhook, in standard URL form (`scheme://host:port/path`). Exactly one of `url` or `service` must be specified.\n\nThe `host` should not refer to a service running in the cluster; use the `service` field instead. The host might be resolved via external DNS in some apiservers (e.g., `kube-apiserver` cannot resolve in-cluster DNS as that would be a layering violation). `host` may also be an IP address.\n\nPlease note that using `localhost` or `127.0.0.1` as a `host` is risky unless you take great care to run this webhook on all hosts which run an apiserver which might need to make calls to this webhook. Such installs are likely to be non-portable, i.e., not easy to turn up in a new cluster.\n\nThe scheme must be \"https\"; the URL must begin with \"https://\".\n\nA path is optional, and if present may be any string permissible in a URL. You may use the path to pass an arbitrary string to the webhook, for example, a cluster identifier.\n\nAttempting to use a user or basic auth e.g. \"user:password@\" is not allowed. Fragments (\"#...\") and query parameters (\"?...\") are not allowed, either.",
15132          "type": "string"
15133        }
15134      },
15135      "type": "object"
15136    },
15137    "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.WebhookConversion": {
15138      "description": "WebhookConversion describes how to call a conversion webhook",
15139      "properties": {
15140        "clientConfig": {
15141          "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.WebhookClientConfig",
15142          "description": "clientConfig is the instructions for how to call the webhook if strategy is `Webhook`."
15143        },
15144        "conversionReviewVersions": {
15145          "description": "conversionReviewVersions is an ordered list of preferred `ConversionReview` versions the Webhook expects. The API server will use the first version in the list which it supports. If none of the versions specified in this list are supported by API server, conversion will fail for the custom resource. If a persisted Webhook configuration specifies allowed versions and does not include any versions known to the API Server, calls to the webhook will fail.",
15146          "items": {
15147            "type": "string"
15148          },
15149          "type": "array"
15150        }
15151      },
15152      "required": [
15153        "conversionReviewVersions"
15154      ],
15155      "type": "object"
15156    },
15157    "io.k8s.apimachinery.pkg.api.resource.Quantity": {
15158      "description": "Quantity is a fixed-point representation of a number. It provides convenient marshaling/unmarshaling in JSON and YAML, in addition to String() and AsInt64() accessors.\n\nThe serialization format is:\n\n<quantity>        ::= <signedNumber><suffix>\n  (Note that <suffix> may be empty, from the \"\" case in <decimalSI>.)\n<digit>           ::= 0 | 1 | ... | 9 <digits>          ::= <digit> | <digit><digits> <number>          ::= <digits> | <digits>.<digits> | <digits>. | .<digits> <sign>            ::= \"+\" | \"-\" <signedNumber>    ::= <number> | <sign><number> <suffix>          ::= <binarySI> | <decimalExponent> | <decimalSI> <binarySI>        ::= Ki | Mi | Gi | Ti | Pi | Ei\n  (International System of units; See: http://physics.nist.gov/cuu/Units/binary.html)\n<decimalSI>       ::= m | \"\" | k | M | G | T | P | E\n  (Note that 1024 = 1Ki but 1000 = 1k; I didn't choose the capitalization.)\n<decimalExponent> ::= \"e\" <signedNumber> | \"E\" <signedNumber>\n\nNo matter which of the three exponent forms is used, no quantity may represent a number greater than 2^63-1 in magnitude, nor may it have more than 3 decimal places. Numbers larger or more precise will be capped or rounded up. (E.g.: 0.1m will rounded up to 1m.) This may be extended in the future if we require larger or smaller quantities.\n\nWhen a Quantity is parsed from a string, it will remember the type of suffix it had, and will use the same type again when it is serialized.\n\nBefore serializing, Quantity will be put in \"canonical form\". This means that Exponent/suffix will be adjusted up or down (with a corresponding increase or decrease in Mantissa) such that:\n  a. No precision is lost\n  b. No fractional digits will be emitted\n  c. The exponent (or suffix) is as large as possible.\nThe sign will be omitted unless the number is negative.\n\nExamples:\n  1.5 will be serialized as \"1500m\"\n  1.5Gi will be serialized as \"1536Mi\"\n\nNote that the quantity will NEVER be internally represented by a floating point number. That is the whole point of this exercise.\n\nNon-canonical values will still parse as long as they are well formed, but will be re-emitted in their canonical form. (So always use canonical form, or don't diff.)\n\nThis format is intended to make it difficult to use these numbers without writing some sort of special handling code in the hopes that that will cause implementors to also use a fixed point implementation.",
15159      "type": "string"
15160    },
15161    "io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup": {
15162      "description": "APIGroup contains the name, the supported versions, and the preferred version of a group.",
15163      "properties": {
15164        "apiVersion": {
15165          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
15166          "type": "string"
15167        },
15168        "kind": {
15169          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
15170          "type": "string"
15171        },
15172        "name": {
15173          "description": "name is the name of the group.",
15174          "type": "string"
15175        },
15176        "preferredVersion": {
15177          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.GroupVersionForDiscovery",
15178          "description": "preferredVersion is the version preferred by the API server, which probably is the storage version."
15179        },
15180        "serverAddressByClientCIDRs": {
15181          "description": "a map of client CIDR to server address that is serving this group. This is to help clients reach servers in the most network-efficient way possible. Clients can use the appropriate server address as per the CIDR that they match. In case of multiple matches, clients should use the longest matching CIDR. The server returns only those CIDRs that it thinks that the client can match. For example: the master will return an internal IP CIDR only, if the client reaches the server using an internal IP. Server looks at X-Forwarded-For header or X-Real-Ip header or request.RemoteAddr (in that order) to get the client IP.",
15182          "items": {
15183            "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ServerAddressByClientCIDR"
15184          },
15185          "type": "array"
15186        },
15187        "versions": {
15188          "description": "versions are the versions supported in this group.",
15189          "items": {
15190            "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.GroupVersionForDiscovery"
15191          },
15192          "type": "array"
15193        }
15194      },
15195      "required": [
15196        "name",
15197        "versions"
15198      ],
15199      "type": "object",
15200      "x-kubernetes-group-version-kind": [
15201        {
15202          "group": "",
15203          "kind": "APIGroup",
15204          "version": "v1"
15205        }
15206      ]
15207    },
15208    "io.k8s.apimachinery.pkg.apis.meta.v1.APIGroupList": {
15209      "description": "APIGroupList is a list of APIGroup, to allow clients to discover the API at /apis.",
15210      "properties": {
15211        "apiVersion": {
15212          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
15213          "type": "string"
15214        },
15215        "groups": {
15216          "description": "groups is a list of APIGroup.",
15217          "items": {
15218            "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup"
15219          },
15220          "type": "array"
15221        },
15222        "kind": {
15223          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
15224          "type": "string"
15225        }
15226      },
15227      "required": [
15228        "groups"
15229      ],
15230      "type": "object",
15231      "x-kubernetes-group-version-kind": [
15232        {
15233          "group": "",
15234          "kind": "APIGroupList",
15235          "version": "v1"
15236        }
15237      ]
15238    },
15239    "io.k8s.apimachinery.pkg.apis.meta.v1.APIResource": {
15240      "description": "APIResource specifies the name of a resource and whether it is namespaced.",
15241      "properties": {
15242        "categories": {
15243          "description": "categories is a list of the grouped resources this resource belongs to (e.g. 'all')",
15244          "items": {
15245            "type": "string"
15246          },
15247          "type": "array"
15248        },
15249        "group": {
15250          "description": "group is the preferred group of the resource.  Empty implies the group of the containing resource list. For subresources, this may have a different value, for example: Scale\".",
15251          "type": "string"
15252        },
15253        "kind": {
15254          "description": "kind is the kind for the resource (e.g. 'Foo' is the kind for a resource 'foo')",
15255          "type": "string"
15256        },
15257        "name": {
15258          "description": "name is the plural name of the resource.",
15259          "type": "string"
15260        },
15261        "namespaced": {
15262          "description": "namespaced indicates if a resource is namespaced or not.",
15263          "type": "boolean"
15264        },
15265        "shortNames": {
15266          "description": "shortNames is a list of suggested short names of the resource.",
15267          "items": {
15268            "type": "string"
15269          },
15270          "type": "array"
15271        },
15272        "singularName": {
15273          "description": "singularName is the singular name of the resource.  This allows clients to handle plural and singular opaquely. The singularName is more correct for reporting status on a single item and both singular and plural are allowed from the kubectl CLI interface.",
15274          "type": "string"
15275        },
15276        "storageVersionHash": {
15277          "description": "The hash value of the storage version, the version this resource is converted to when written to the data store. Value must be treated as opaque by clients. Only equality comparison on the value is valid. This is an alpha feature and may change or be removed in the future. The field is populated by the apiserver only if the StorageVersionHash feature gate is enabled. This field will remain optional even if it graduates.",
15278          "type": "string"
15279        },
15280        "verbs": {
15281          "description": "verbs is a list of supported kube verbs (this includes get, list, watch, create, update, patch, delete, deletecollection, and proxy)",
15282          "items": {
15283            "type": "string"
15284          },
15285          "type": "array"
15286        },
15287        "version": {
15288          "description": "version is the preferred version of the resource.  Empty implies the version of the containing resource list For subresources, this may have a different value, for example: v1 (while inside a v1beta1 version of the core resource's group)\".",
15289          "type": "string"
15290        }
15291      },
15292      "required": [
15293        "name",
15294        "singularName",
15295        "namespaced",
15296        "kind",
15297        "verbs"
15298      ],
15299      "type": "object"
15300    },
15301    "io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList": {
15302      "description": "APIResourceList is a list of APIResource, it is used to expose the name of the resources supported in a specific group and version, and if the resource is namespaced.",
15303      "properties": {
15304        "apiVersion": {
15305          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
15306          "type": "string"
15307        },
15308        "groupVersion": {
15309          "description": "groupVersion is the group and version this APIResourceList is for.",
15310          "type": "string"
15311        },
15312        "kind": {
15313          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
15314          "type": "string"
15315        },
15316        "resources": {
15317          "description": "resources contains the name of the resources and if they are namespaced.",
15318          "items": {
15319            "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResource"
15320          },
15321          "type": "array"
15322        }
15323      },
15324      "required": [
15325        "groupVersion",
15326        "resources"
15327      ],
15328      "type": "object",
15329      "x-kubernetes-group-version-kind": [
15330        {
15331          "group": "",
15332          "kind": "APIResourceList",
15333          "version": "v1"
15334        }
15335      ]
15336    },
15337    "io.k8s.apimachinery.pkg.apis.meta.v1.APIVersions": {
15338      "description": "APIVersions lists the versions that are available, to allow clients to discover the API at /api, which is the root path of the legacy v1 API.",
15339      "properties": {
15340        "apiVersion": {
15341          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
15342          "type": "string"
15343        },
15344        "kind": {
15345          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
15346          "type": "string"
15347        },
15348        "serverAddressByClientCIDRs": {
15349          "description": "a map of client CIDR to server address that is serving this group. This is to help clients reach servers in the most network-efficient way possible. Clients can use the appropriate server address as per the CIDR that they match. In case of multiple matches, clients should use the longest matching CIDR. The server returns only those CIDRs that it thinks that the client can match. For example: the master will return an internal IP CIDR only, if the client reaches the server using an internal IP. Server looks at X-Forwarded-For header or X-Real-Ip header or request.RemoteAddr (in that order) to get the client IP.",
15350          "items": {
15351            "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ServerAddressByClientCIDR"
15352          },
15353          "type": "array"
15354        },
15355        "versions": {
15356          "description": "versions are the api versions that are available.",
15357          "items": {
15358            "type": "string"
15359          },
15360          "type": "array"
15361        }
15362      },
15363      "required": [
15364        "versions",
15365        "serverAddressByClientCIDRs"
15366      ],
15367      "type": "object",
15368      "x-kubernetes-group-version-kind": [
15369        {
15370          "group": "",
15371          "kind": "APIVersions",
15372          "version": "v1"
15373        }
15374      ]
15375    },
15376    "io.k8s.apimachinery.pkg.apis.meta.v1.Condition": {
15377      "description": "Condition contains details for one aspect of the current state of this API Resource.",
15378      "properties": {
15379        "lastTransitionTime": {
15380          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
15381          "description": "lastTransitionTime is the last time the condition transitioned from one status to another. This should be when the underlying condition changed.  If that is not known, then using the time when the API field changed is acceptable."
15382        },
15383        "message": {
15384          "description": "message is a human readable message indicating details about the transition. This may be an empty string.",
15385          "type": "string"
15386        },
15387        "observedGeneration": {
15388          "description": "observedGeneration represents the .metadata.generation that the condition was set based upon. For instance, if .metadata.generation is currently 12, but the .status.conditions[x].observedGeneration is 9, the condition is out of date with respect to the current state of the instance.",
15389          "format": "int64",
15390          "type": "integer"
15391        },
15392        "reason": {
15393          "description": "reason contains a programmatic identifier indicating the reason for the condition's last transition. Producers of specific condition types may define expected values and meanings for this field, and whether the values are considered a guaranteed API. The value should be a CamelCase string. This field may not be empty.",
15394          "type": "string"
15395        },
15396        "status": {
15397          "description": "status of the condition, one of True, False, Unknown.",
15398          "type": "string"
15399        },
15400        "type": {
15401          "description": "type of condition in CamelCase or in foo.example.com/CamelCase.",
15402          "type": "string"
15403        }
15404      },
15405      "required": [
15406        "type",
15407        "status",
15408        "lastTransitionTime",
15409        "reason",
15410        "message"
15411      ],
15412      "type": "object"
15413    },
15414    "io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions": {
15415      "description": "DeleteOptions may be provided when deleting an API object.",
15416      "properties": {
15417        "apiVersion": {
15418          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
15419          "type": "string"
15420        },
15421        "dryRun": {
15422          "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
15423          "items": {
15424            "type": "string"
15425          },
15426          "type": "array"
15427        },
15428        "gracePeriodSeconds": {
15429          "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
15430          "format": "int64",
15431          "type": "integer"
15432        },
15433        "kind": {
15434          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
15435          "type": "string"
15436        },
15437        "orphanDependents": {
15438          "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
15439          "type": "boolean"
15440        },
15441        "preconditions": {
15442          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Preconditions",
15443          "description": "Must be fulfilled before a deletion is carried out. If not possible, a 409 Conflict status will be returned."
15444        },
15445        "propagationPolicy": {
15446          "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
15447          "type": "string"
15448        }
15449      },
15450      "type": "object",
15451      "x-kubernetes-group-version-kind": [
15452        {
15453          "group": "",
15454          "kind": "DeleteOptions",
15455          "version": "v1"
15456        },
15457        {
15458          "group": "admission.k8s.io",
15459          "kind": "DeleteOptions",
15460          "version": "v1"
15461        },
15462        {
15463          "group": "admission.k8s.io",
15464          "kind": "DeleteOptions",
15465          "version": "v1beta1"
15466        },
15467        {
15468          "group": "admissionregistration.k8s.io",
15469          "kind": "DeleteOptions",
15470          "version": "v1"
15471        },
15472        {
15473          "group": "admissionregistration.k8s.io",
15474          "kind": "DeleteOptions",
15475          "version": "v1beta1"
15476        },
15477        {
15478          "group": "apiextensions.k8s.io",
15479          "kind": "DeleteOptions",
15480          "version": "v1"
15481        },
15482        {
15483          "group": "apiextensions.k8s.io",
15484          "kind": "DeleteOptions",
15485          "version": "v1beta1"
15486        },
15487        {
15488          "group": "apiregistration.k8s.io",
15489          "kind": "DeleteOptions",
15490          "version": "v1"
15491        },
15492        {
15493          "group": "apiregistration.k8s.io",
15494          "kind": "DeleteOptions",
15495          "version": "v1beta1"
15496        },
15497        {
15498          "group": "apps",
15499          "kind": "DeleteOptions",
15500          "version": "v1"
15501        },
15502        {
15503          "group": "apps",
15504          "kind": "DeleteOptions",
15505          "version": "v1beta1"
15506        },
15507        {
15508          "group": "apps",
15509          "kind": "DeleteOptions",
15510          "version": "v1beta2"
15511        },
15512        {
15513          "group": "authentication.k8s.io",
15514          "kind": "DeleteOptions",
15515          "version": "v1"
15516        },
15517        {
15518          "group": "authentication.k8s.io",
15519          "kind": "DeleteOptions",
15520          "version": "v1beta1"
15521        },
15522        {
15523          "group": "authorization.k8s.io",
15524          "kind": "DeleteOptions",
15525          "version": "v1"
15526        },
15527        {
15528          "group": "authorization.k8s.io",
15529          "kind": "DeleteOptions",
15530          "version": "v1beta1"
15531        },
15532        {
15533          "group": "autoscaling",
15534          "kind": "DeleteOptions",
15535          "version": "v1"
15536        },
15537        {
15538          "group": "autoscaling",
15539          "kind": "DeleteOptions",
15540          "version": "v2beta1"
15541        },
15542        {
15543          "group": "autoscaling",
15544          "kind": "DeleteOptions",
15545          "version": "v2beta2"
15546        },
15547        {
15548          "group": "batch",
15549          "kind": "DeleteOptions",
15550          "version": "v1"
15551        },
15552        {
15553          "group": "batch",
15554          "kind": "DeleteOptions",
15555          "version": "v1beta1"
15556        },
15557        {
15558          "group": "certificates.k8s.io",
15559          "kind": "DeleteOptions",
15560          "version": "v1"
15561        },
15562        {
15563          "group": "certificates.k8s.io",
15564          "kind": "DeleteOptions",
15565          "version": "v1beta1"
15566        },
15567        {
15568          "group": "coordination.k8s.io",
15569          "kind": "DeleteOptions",
15570          "version": "v1"
15571        },
15572        {
15573          "group": "coordination.k8s.io",
15574          "kind": "DeleteOptions",
15575          "version": "v1beta1"
15576        },
15577        {
15578          "group": "discovery.k8s.io",
15579          "kind": "DeleteOptions",
15580          "version": "v1"
15581        },
15582        {
15583          "group": "discovery.k8s.io",
15584          "kind": "DeleteOptions",
15585          "version": "v1beta1"
15586        },
15587        {
15588          "group": "events.k8s.io",
15589          "kind": "DeleteOptions",
15590          "version": "v1"
15591        },
15592        {
15593          "group": "events.k8s.io",
15594          "kind": "DeleteOptions",
15595          "version": "v1beta1"
15596        },
15597        {
15598          "group": "extensions",
15599          "kind": "DeleteOptions",
15600          "version": "v1beta1"
15601        },
15602        {
15603          "group": "flowcontrol.apiserver.k8s.io",
15604          "kind": "DeleteOptions",
15605          "version": "v1alpha1"
15606        },
15607        {
15608          "group": "flowcontrol.apiserver.k8s.io",
15609          "kind": "DeleteOptions",
15610          "version": "v1beta1"
15611        },
15612        {
15613          "group": "imagepolicy.k8s.io",
15614          "kind": "DeleteOptions",
15615          "version": "v1alpha1"
15616        },
15617        {
15618          "group": "internal.apiserver.k8s.io",
15619          "kind": "DeleteOptions",
15620          "version": "v1alpha1"
15621        },
15622        {
15623          "group": "networking.k8s.io",
15624          "kind": "DeleteOptions",
15625          "version": "v1"
15626        },
15627        {
15628          "group": "networking.k8s.io",
15629          "kind": "DeleteOptions",
15630          "version": "v1beta1"
15631        },
15632        {
15633          "group": "node.k8s.io",
15634          "kind": "DeleteOptions",
15635          "version": "v1"
15636        },
15637        {
15638          "group": "node.k8s.io",
15639          "kind": "DeleteOptions",
15640          "version": "v1alpha1"
15641        },
15642        {
15643          "group": "node.k8s.io",
15644          "kind": "DeleteOptions",
15645          "version": "v1beta1"
15646        },
15647        {
15648          "group": "policy",
15649          "kind": "DeleteOptions",
15650          "version": "v1"
15651        },
15652        {
15653          "group": "policy",
15654          "kind": "DeleteOptions",
15655          "version": "v1beta1"
15656        },
15657        {
15658          "group": "rbac.authorization.k8s.io",
15659          "kind": "DeleteOptions",
15660          "version": "v1"
15661        },
15662        {
15663          "group": "rbac.authorization.k8s.io",
15664          "kind": "DeleteOptions",
15665          "version": "v1alpha1"
15666        },
15667        {
15668          "group": "rbac.authorization.k8s.io",
15669          "kind": "DeleteOptions",
15670          "version": "v1beta1"
15671        },
15672        {
15673          "group": "scheduling.k8s.io",
15674          "kind": "DeleteOptions",
15675          "version": "v1"
15676        },
15677        {
15678          "group": "scheduling.k8s.io",
15679          "kind": "DeleteOptions",
15680          "version": "v1alpha1"
15681        },
15682        {
15683          "group": "scheduling.k8s.io",
15684          "kind": "DeleteOptions",
15685          "version": "v1beta1"
15686        },
15687        {
15688          "group": "storage.k8s.io",
15689          "kind": "DeleteOptions",
15690          "version": "v1"
15691        },
15692        {
15693          "group": "storage.k8s.io",
15694          "kind": "DeleteOptions",
15695          "version": "v1alpha1"
15696        },
15697        {
15698          "group": "storage.k8s.io",
15699          "kind": "DeleteOptions",
15700          "version": "v1beta1"
15701        }
15702      ]
15703    },
15704    "io.k8s.apimachinery.pkg.apis.meta.v1.FieldsV1": {
15705      "description": "FieldsV1 stores a set of fields in a data structure like a Trie, in JSON format.\n\nEach key is either a '.' representing the field itself, and will always map to an empty set, or a string representing a sub-field or item. The string will follow one of these four formats: 'f:<name>', where <name> is the name of a field in a struct, or key in a map 'v:<value>', where <value> is the exact json formatted value of a list item 'i:<index>', where <index> is position of a item in a list 'k:<keys>', where <keys> is a map of  a list item's key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the set.\n\nThe exact format is defined in sigs.k8s.io/structured-merge-diff",
15706      "type": "object"
15707    },
15708    "io.k8s.apimachinery.pkg.apis.meta.v1.GroupVersionForDiscovery": {
15709      "description": "GroupVersion contains the \"group/version\" and \"version\" string of a version. It is made a struct to keep extensibility.",
15710      "properties": {
15711        "groupVersion": {
15712          "description": "groupVersion specifies the API group and version in the form \"group/version\"",
15713          "type": "string"
15714        },
15715        "version": {
15716          "description": "version specifies the version in the form of \"version\". This is to save the clients the trouble of splitting the GroupVersion.",
15717          "type": "string"
15718        }
15719      },
15720      "required": [
15721        "groupVersion",
15722        "version"
15723      ],
15724      "type": "object"
15725    },
15726    "io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector": {
15727      "description": "A label selector is a label query over a set of resources. The result of matchLabels and matchExpressions are ANDed. An empty label selector matches all objects. A null label selector matches no objects.",
15728      "properties": {
15729        "matchExpressions": {
15730          "description": "matchExpressions is a list of label selector requirements. The requirements are ANDed.",
15731          "items": {
15732            "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelectorRequirement"
15733          },
15734          "type": "array"
15735        },
15736        "matchLabels": {
15737          "additionalProperties": {
15738            "type": "string"
15739          },
15740          "description": "matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \"key\", the operator is \"In\", and the values array contains only \"value\". The requirements are ANDed.",
15741          "type": "object"
15742        }
15743      },
15744      "type": "object",
15745      "x-kubernetes-map-type": "atomic"
15746    },
15747    "io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelectorRequirement": {
15748      "description": "A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.",
15749      "properties": {
15750        "key": {
15751          "description": "key is the label key that the selector applies to.",
15752          "type": "string",
15753          "x-kubernetes-patch-merge-key": "key",
15754          "x-kubernetes-patch-strategy": "merge"
15755        },
15756        "operator": {
15757          "description": "operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.",
15758          "type": "string"
15759        },
15760        "values": {
15761          "description": "values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.",
15762          "items": {
15763            "type": "string"
15764          },
15765          "type": "array"
15766        }
15767      },
15768      "required": [
15769        "key",
15770        "operator"
15771      ],
15772      "type": "object"
15773    },
15774    "io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta": {
15775      "description": "ListMeta describes metadata that synthetic resources must have, including lists and various status objects. A resource may have only one of {ObjectMeta, ListMeta}.",
15776      "properties": {
15777        "continue": {
15778          "description": "continue may be set if the user set a limit on the number of items returned, and indicates that the server has more data available. The value is opaque and may be used to issue another request to the endpoint that served this list to retrieve the next set of available objects. Continuing a consistent list may not be possible if the server configuration has changed or more than a few minutes have passed. The resourceVersion field returned when using this continue value will be identical to the value in the first response, unless you have received this token from an error message.",
15779          "type": "string"
15780        },
15781        "remainingItemCount": {
15782          "description": "remainingItemCount is the number of subsequent items in the list which are not included in this list response. If the list request contained label or field selectors, then the number of remaining items is unknown and the field will be left unset and omitted during serialization. If the list is complete (either because it is not chunking or because this is the last chunk), then there are no more remaining items and this field will be left unset and omitted during serialization. Servers older than v1.15 do not set this field. The intended use of the remainingItemCount is *estimating* the size of a collection. Clients should not rely on the remainingItemCount to be set or to be exact.",
15783          "format": "int64",
15784          "type": "integer"
15785        },
15786        "resourceVersion": {
15787          "description": "String that identifies the server's internal version of this object that can be used by clients to determine when objects have changed. Value must be treated as opaque by clients and passed unmodified back to the server. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency",
15788          "type": "string"
15789        },
15790        "selfLink": {
15791          "description": "selfLink is a URL representing this object. Populated by the system. Read-only.\n\nDEPRECATED Kubernetes will stop propagating this field in 1.20 release and the field is planned to be removed in 1.21 release.",
15792          "type": "string"
15793        }
15794      },
15795      "type": "object"
15796    },
15797    "io.k8s.apimachinery.pkg.apis.meta.v1.ManagedFieldsEntry": {
15798      "description": "ManagedFieldsEntry is a workflow-id, a FieldSet and the group version of the resource that the fieldset applies to.",
15799      "properties": {
15800        "apiVersion": {
15801          "description": "APIVersion defines the version of this resource that this field set applies to. The format is \"group/version\" just like the top-level APIVersion field. It is necessary to track the version of a field set because it cannot be automatically converted.",
15802          "type": "string"
15803        },
15804        "fieldsType": {
15805          "description": "FieldsType is the discriminator for the different fields format and version. There is currently only one possible value: \"FieldsV1\"",
15806          "type": "string"
15807        },
15808        "fieldsV1": {
15809          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.FieldsV1",
15810          "description": "FieldsV1 holds the first JSON version format as described in the \"FieldsV1\" type."
15811        },
15812        "manager": {
15813          "description": "Manager is an identifier of the workflow managing these fields.",
15814          "type": "string"
15815        },
15816        "operation": {
15817          "description": "Operation is the type of operation which lead to this ManagedFieldsEntry being created. The only valid values for this field are 'Apply' and 'Update'.",
15818          "type": "string"
15819        },
15820        "subresource": {
15821          "description": "Subresource is the name of the subresource used to update that object, or empty string if the object was updated through the main resource. The value of this field is used to distinguish between managers, even if they share the same name. For example, a status update will be distinct from a regular update using the same manager name. Note that the APIVersion field is not related to the Subresource field and it always corresponds to the version of the main resource.",
15822          "type": "string"
15823        },
15824        "time": {
15825          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
15826          "description": "Time is timestamp of when these fields were set. It should always be empty if Operation is 'Apply'"
15827        }
15828      },
15829      "type": "object"
15830    },
15831    "io.k8s.apimachinery.pkg.apis.meta.v1.MicroTime": {
15832      "description": "MicroTime is version of Time with microsecond level precision.",
15833      "format": "date-time",
15834      "type": "string"
15835    },
15836    "io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta": {
15837      "description": "ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create.",
15838      "properties": {
15839        "annotations": {
15840          "additionalProperties": {
15841            "type": "string"
15842          },
15843          "description": "Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations",
15844          "type": "object"
15845        },
15846        "clusterName": {
15847          "description": "The name of the cluster which the object belongs to. This is used to distinguish resources with same name and namespace in different clusters. This field is not set anywhere right now and apiserver is going to ignore it if set in create or update request.",
15848          "type": "string"
15849        },
15850        "creationTimestamp": {
15851          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
15852          "description": "CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC.\n\nPopulated by the system. Read-only. Null for lists. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
15853        },
15854        "deletionGracePeriodSeconds": {
15855          "description": "Number of seconds allowed for this object to gracefully terminate before it will be removed from the system. Only set when deletionTimestamp is also set. May only be shortened. Read-only.",
15856          "format": "int64",
15857          "type": "integer"
15858        },
15859        "deletionTimestamp": {
15860          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
15861          "description": "DeletionTimestamp is RFC 3339 date and time at which this resource will be deleted. This field is set by the server when a graceful deletion is requested by the user, and is not directly settable by a client. The resource is expected to be deleted (no longer visible from resource lists, and not reachable by name) after the time in this field, once the finalizers list is empty. As long as the finalizers list contains items, deletion is blocked. Once the deletionTimestamp is set, this value may not be unset or be set further into the future, although it may be shortened or the resource may be deleted prior to this time. For example, a user may request that a pod is deleted in 30 seconds. The Kubelet will react by sending a graceful termination signal to the containers in the pod. After that 30 seconds, the Kubelet will send a hard termination signal (SIGKILL) to the container and after cleanup, remove the pod from the API. In the presence of network partitions, this object may still exist after this timestamp, until an administrator or automated process can determine the resource is fully terminated. If not set, graceful deletion of the object has not been requested.\n\nPopulated by the system when a graceful deletion is requested. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
15862        },
15863        "finalizers": {
15864          "description": "Must be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed. Finalizers may be processed and removed in any order.  Order is NOT enforced because it introduces significant risk of stuck finalizers. finalizers is a shared field, any actor with permission can reorder it. If the finalizer list is processed in order, then this can lead to a situation in which the component responsible for the first finalizer in the list is waiting for a signal (field value, external system, or other) produced by a component responsible for a finalizer later in the list, resulting in a deadlock. Without enforced ordering finalizers are free to order amongst themselves and are not vulnerable to ordering changes in the list.",
15865          "items": {
15866            "type": "string"
15867          },
15868          "type": "array",
15869          "x-kubernetes-patch-strategy": "merge"
15870        },
15871        "generateName": {
15872          "description": "GenerateName is an optional prefix, used by the server, to generate a unique name ONLY IF the Name field has not been provided. If this field is used, the name returned to the client will be different than the name passed. This value will also be combined with a unique suffix. The provided value has the same validation rules as the Name field, and may be truncated by the length of the suffix required to make the value unique on the server.\n\nIf this field is specified and the generated name exists, the server will NOT return a 409 - instead, it will either return 201 Created or 500 with Reason ServerTimeout indicating a unique name could not be found in the time allotted, and the client should retry (optionally after the time indicated in the Retry-After header).\n\nApplied only if Name is not specified. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#idempotency",
15873          "type": "string"
15874        },
15875        "generation": {
15876          "description": "A sequence number representing a specific generation of the desired state. Populated by the system. Read-only.",
15877          "format": "int64",
15878          "type": "integer"
15879        },
15880        "labels": {
15881          "additionalProperties": {
15882            "type": "string"
15883          },
15884          "description": "Map of string keys and values that can be used to organize and categorize (scope and select) objects. May match selectors of replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels",
15885          "type": "object"
15886        },
15887        "managedFields": {
15888          "description": "ManagedFields maps workflow-id and version to the set of fields that are managed by that workflow. This is mostly for internal housekeeping, and users typically shouldn't need to set or understand this field. A workflow can be the user's name, a controller's name, or the name of a specific apply path like \"ci-cd\". The set of fields is always in the version that the workflow used when modifying the object.",
15889          "items": {
15890            "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ManagedFieldsEntry"
15891          },
15892          "type": "array"
15893        },
15894        "name": {
15895          "description": "Name must be unique within a namespace. Is required when creating resources, although some resources may allow a client to request the generation of an appropriate name automatically. Name is primarily intended for creation idempotence and configuration definition. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names",
15896          "type": "string"
15897        },
15898        "namespace": {
15899          "description": "Namespace defines the space within which each name must be unique. An empty namespace is equivalent to the \"default\" namespace, but \"default\" is the canonical representation. Not all objects are required to be scoped to a namespace - the value of this field for those objects will be empty.\n\nMust be a DNS_LABEL. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/namespaces",
15900          "type": "string"
15901        },
15902        "ownerReferences": {
15903          "description": "List of objects depended by this object. If ALL objects in the list have been deleted, this object will be garbage collected. If this object is managed by a controller, then an entry in this list will point to this controller, with the controller field set to true. There cannot be more than one managing controller.",
15904          "items": {
15905            "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.OwnerReference"
15906          },
15907          "type": "array",
15908          "x-kubernetes-patch-merge-key": "uid",
15909          "x-kubernetes-patch-strategy": "merge"
15910        },
15911        "resourceVersion": {
15912          "description": "An opaque value that represents the internal version of this object that can be used by clients to determine when objects have changed. May be used for optimistic concurrency, change detection, and the watch operation on a resource or set of resources. Clients must treat these values as opaque and passed unmodified back to the server. They may only be valid for a particular resource or set of resources.\n\nPopulated by the system. Read-only. Value must be treated as opaque by clients and . More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency",
15913          "type": "string"
15914        },
15915        "selfLink": {
15916          "description": "SelfLink is a URL representing this object. Populated by the system. Read-only.\n\nDEPRECATED Kubernetes will stop propagating this field in 1.20 release and the field is planned to be removed in 1.21 release.",
15917          "type": "string"
15918        },
15919        "uid": {
15920          "description": "UID is the unique in time and space value for this object. It is typically generated by the server on successful creation of a resource and is not allowed to change on PUT operations.\n\nPopulated by the system. Read-only. More info: http://kubernetes.io/docs/user-guide/identifiers#uids",
15921          "type": "string"
15922        }
15923      },
15924      "type": "object"
15925    },
15926    "io.k8s.apimachinery.pkg.apis.meta.v1.OwnerReference": {
15927      "description": "OwnerReference contains enough information to let you identify an owning object. An owning object must be in the same namespace as the dependent, or be cluster-scoped, so there is no namespace field.",
15928      "properties": {
15929        "apiVersion": {
15930          "description": "API version of the referent.",
15931          "type": "string"
15932        },
15933        "blockOwnerDeletion": {
15934          "description": "If true, AND if the owner has the \"foregroundDeletion\" finalizer, then the owner cannot be deleted from the key-value store until this reference is removed. Defaults to false. To set this field, a user needs \"delete\" permission of the owner, otherwise 422 (Unprocessable Entity) will be returned.",
15935          "type": "boolean"
15936        },
15937        "controller": {
15938          "description": "If true, this reference points to the managing controller.",
15939          "type": "boolean"
15940        },
15941        "kind": {
15942          "description": "Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
15943          "type": "string"
15944        },
15945        "name": {
15946          "description": "Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names",
15947          "type": "string"
15948        },
15949        "uid": {
15950          "description": "UID of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#uids",
15951          "type": "string"
15952        }
15953      },
15954      "required": [
15955        "apiVersion",
15956        "kind",
15957        "name",
15958        "uid"
15959      ],
15960      "type": "object",
15961      "x-kubernetes-map-type": "atomic"
15962    },
15963    "io.k8s.apimachinery.pkg.apis.meta.v1.Patch": {
15964      "description": "Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.",
15965      "type": "object"
15966    },
15967    "io.k8s.apimachinery.pkg.apis.meta.v1.Preconditions": {
15968      "description": "Preconditions must be fulfilled before an operation (update, delete, etc.) is carried out.",
15969      "properties": {
15970        "resourceVersion": {
15971          "description": "Specifies the target ResourceVersion",
15972          "type": "string"
15973        },
15974        "uid": {
15975          "description": "Specifies the target UID.",
15976          "type": "string"
15977        }
15978      },
15979      "type": "object"
15980    },
15981    "io.k8s.apimachinery.pkg.apis.meta.v1.ServerAddressByClientCIDR": {
15982      "description": "ServerAddressByClientCIDR helps the client to determine the server address that they should use, depending on the clientCIDR that they match.",
15983      "properties": {
15984        "clientCIDR": {
15985          "description": "The CIDR with which clients can match their IP to figure out the server address that they should use.",
15986          "type": "string"
15987        },
15988        "serverAddress": {
15989          "description": "Address of this server, suitable for a client that matches the above CIDR. This can be a hostname, hostname:port, IP or IP:port.",
15990          "type": "string"
15991        }
15992      },
15993      "required": [
15994        "clientCIDR",
15995        "serverAddress"
15996      ],
15997      "type": "object"
15998    },
15999    "io.k8s.apimachinery.pkg.apis.meta.v1.Status": {
16000      "description": "Status is a return value for calls that don't return other objects.",
16001      "properties": {
16002        "apiVersion": {
16003          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
16004          "type": "string"
16005        },
16006        "code": {
16007          "description": "Suggested HTTP return code for this status, 0 if not set.",
16008          "format": "int32",
16009          "type": "integer"
16010        },
16011        "details": {
16012          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.StatusDetails",
16013          "description": "Extended data associated with the reason.  Each reason may define its own extended details. This field is optional and the data returned is not guaranteed to conform to any schema except that defined by the reason type."
16014        },
16015        "kind": {
16016          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
16017          "type": "string"
16018        },
16019        "message": {
16020          "description": "A human-readable description of the status of this operation.",
16021          "type": "string"
16022        },
16023        "metadata": {
16024          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
16025          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds"
16026        },
16027        "reason": {
16028          "description": "A machine-readable description of why this operation is in the \"Failure\" status. If this value is empty there is no information available. A Reason clarifies an HTTP status code but does not override it.",
16029          "type": "string"
16030        },
16031        "status": {
16032          "description": "Status of the operation. One of: \"Success\" or \"Failure\". More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status",
16033          "type": "string"
16034        }
16035      },
16036      "type": "object",
16037      "x-kubernetes-group-version-kind": [
16038        {
16039          "group": "",
16040          "kind": "Status",
16041          "version": "v1"
16042        }
16043      ]
16044    },
16045    "io.k8s.apimachinery.pkg.apis.meta.v1.StatusCause": {
16046      "description": "StatusCause provides more information about an api.Status failure, including cases when multiple errors are encountered.",
16047      "properties": {
16048        "field": {
16049          "description": "The field of the resource that has caused this error, as named by its JSON serialization. May include dot and postfix notation for nested attributes. Arrays are zero-indexed.  Fields may appear more than once in an array of causes due to fields having multiple errors. Optional.\n\nExamples:\n  \"name\" - the field \"name\" on the current resource\n  \"items[0].name\" - the field \"name\" on the first array entry in \"items\"",
16050          "type": "string"
16051        },
16052        "message": {
16053          "description": "A human-readable description of the cause of the error.  This field may be presented as-is to a reader.",
16054          "type": "string"
16055        },
16056        "reason": {
16057          "description": "A machine-readable description of the cause of the error. If this value is empty there is no information available.",
16058          "type": "string"
16059        }
16060      },
16061      "type": "object"
16062    },
16063    "io.k8s.apimachinery.pkg.apis.meta.v1.StatusDetails": {
16064      "description": "StatusDetails is a set of additional properties that MAY be set by the server to provide additional information about a response. The Reason field of a Status object defines what attributes will be set. Clients must ignore fields that do not match the defined type of each attribute, and should assume that any attribute may be empty, invalid, or under defined.",
16065      "properties": {
16066        "causes": {
16067          "description": "The Causes array includes more details associated with the StatusReason failure. Not all StatusReasons may provide detailed causes.",
16068          "items": {
16069            "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.StatusCause"
16070          },
16071          "type": "array"
16072        },
16073        "group": {
16074          "description": "The group attribute of the resource associated with the status StatusReason.",
16075          "type": "string"
16076        },
16077        "kind": {
16078          "description": "The kind attribute of the resource associated with the status StatusReason. On some operations may differ from the requested resource Kind. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
16079          "type": "string"
16080        },
16081        "name": {
16082          "description": "The name attribute of the resource associated with the status StatusReason (when there is a single name which can be described).",
16083          "type": "string"
16084        },
16085        "retryAfterSeconds": {
16086          "description": "If specified, the time in seconds before the operation should be retried. Some errors may indicate the client must take an alternate action - for those errors this field may indicate how long to wait before taking the alternate action.",
16087          "format": "int32",
16088          "type": "integer"
16089        },
16090        "uid": {
16091          "description": "UID of the resource. (when there is a single resource which can be described). More info: http://kubernetes.io/docs/user-guide/identifiers#uids",
16092          "type": "string"
16093        }
16094      },
16095      "type": "object"
16096    },
16097    "io.k8s.apimachinery.pkg.apis.meta.v1.Time": {
16098      "description": "Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON.  Wrappers are provided for many of the factory methods that the time package offers.",
16099      "format": "date-time",
16100      "type": "string"
16101    },
16102    "io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent": {
16103      "description": "Event represents a single event to a watched resource.",
16104      "properties": {
16105        "object": {
16106          "$ref": "#/definitions/io.k8s.apimachinery.pkg.runtime.RawExtension",
16107          "description": "Object is:\n * If Type is Added or Modified: the new state of the object.\n * If Type is Deleted: the state of the object immediately before deletion.\n * If Type is Error: *Status is recommended; other types may make sense\n   depending on context."
16108        },
16109        "type": {
16110          "type": "string"
16111        }
16112      },
16113      "required": [
16114        "type",
16115        "object"
16116      ],
16117      "type": "object",
16118      "x-kubernetes-group-version-kind": [
16119        {
16120          "group": "",
16121          "kind": "WatchEvent",
16122          "version": "v1"
16123        },
16124        {
16125          "group": "admission.k8s.io",
16126          "kind": "WatchEvent",
16127          "version": "v1"
16128        },
16129        {
16130          "group": "admission.k8s.io",
16131          "kind": "WatchEvent",
16132          "version": "v1beta1"
16133        },
16134        {
16135          "group": "admissionregistration.k8s.io",
16136          "kind": "WatchEvent",
16137          "version": "v1"
16138        },
16139        {
16140          "group": "admissionregistration.k8s.io",
16141          "kind": "WatchEvent",
16142          "version": "v1beta1"
16143        },
16144        {
16145          "group": "apiextensions.k8s.io",
16146          "kind": "WatchEvent",
16147          "version": "v1"
16148        },
16149        {
16150          "group": "apiextensions.k8s.io",
16151          "kind": "WatchEvent",
16152          "version": "v1beta1"
16153        },
16154        {
16155          "group": "apiregistration.k8s.io",
16156          "kind": "WatchEvent",
16157          "version": "v1"
16158        },
16159        {
16160          "group": "apiregistration.k8s.io",
16161          "kind": "WatchEvent",
16162          "version": "v1beta1"
16163        },
16164        {
16165          "group": "apps",
16166          "kind": "WatchEvent",
16167          "version": "v1"
16168        },
16169        {
16170          "group": "apps",
16171          "kind": "WatchEvent",
16172          "version": "v1beta1"
16173        },
16174        {
16175          "group": "apps",
16176          "kind": "WatchEvent",
16177          "version": "v1beta2"
16178        },
16179        {
16180          "group": "authentication.k8s.io",
16181          "kind": "WatchEvent",
16182          "version": "v1"
16183        },
16184        {
16185          "group": "authentication.k8s.io",
16186          "kind": "WatchEvent",
16187          "version": "v1beta1"
16188        },
16189        {
16190          "group": "authorization.k8s.io",
16191          "kind": "WatchEvent",
16192          "version": "v1"
16193        },
16194        {
16195          "group": "authorization.k8s.io",
16196          "kind": "WatchEvent",
16197          "version": "v1beta1"
16198        },
16199        {
16200          "group": "autoscaling",
16201          "kind": "WatchEvent",
16202          "version": "v1"
16203        },
16204        {
16205          "group": "autoscaling",
16206          "kind": "WatchEvent",
16207          "version": "v2beta1"
16208        },
16209        {
16210          "group": "autoscaling",
16211          "kind": "WatchEvent",
16212          "version": "v2beta2"
16213        },
16214        {
16215          "group": "batch",
16216          "kind": "WatchEvent",
16217          "version": "v1"
16218        },
16219        {
16220          "group": "batch",
16221          "kind": "WatchEvent",
16222          "version": "v1beta1"
16223        },
16224        {
16225          "group": "certificates.k8s.io",
16226          "kind": "WatchEvent",
16227          "version": "v1"
16228        },
16229        {
16230          "group": "certificates.k8s.io",
16231          "kind": "WatchEvent",
16232          "version": "v1beta1"
16233        },
16234        {
16235          "group": "coordination.k8s.io",
16236          "kind": "WatchEvent",
16237          "version": "v1"
16238        },
16239        {
16240          "group": "coordination.k8s.io",
16241          "kind": "WatchEvent",
16242          "version": "v1beta1"
16243        },
16244        {
16245          "group": "discovery.k8s.io",
16246          "kind": "WatchEvent",
16247          "version": "v1"
16248        },
16249        {
16250          "group": "discovery.k8s.io",
16251          "kind": "WatchEvent",
16252          "version": "v1beta1"
16253        },
16254        {
16255          "group": "events.k8s.io",
16256          "kind": "WatchEvent",
16257          "version": "v1"
16258        },
16259        {
16260          "group": "events.k8s.io",
16261          "kind": "WatchEvent",
16262          "version": "v1beta1"
16263        },
16264        {
16265          "group": "extensions",
16266          "kind": "WatchEvent",
16267          "version": "v1beta1"
16268        },
16269        {
16270          "group": "flowcontrol.apiserver.k8s.io",
16271          "kind": "WatchEvent",
16272          "version": "v1alpha1"
16273        },
16274        {
16275          "group": "flowcontrol.apiserver.k8s.io",
16276          "kind": "WatchEvent",
16277          "version": "v1beta1"
16278        },
16279        {
16280          "group": "imagepolicy.k8s.io",
16281          "kind": "WatchEvent",
16282          "version": "v1alpha1"
16283        },
16284        {
16285          "group": "internal.apiserver.k8s.io",
16286          "kind": "WatchEvent",
16287          "version": "v1alpha1"
16288        },
16289        {
16290          "group": "networking.k8s.io",
16291          "kind": "WatchEvent",
16292          "version": "v1"
16293        },
16294        {
16295          "group": "networking.k8s.io",
16296          "kind": "WatchEvent",
16297          "version": "v1beta1"
16298        },
16299        {
16300          "group": "node.k8s.io",
16301          "kind": "WatchEvent",
16302          "version": "v1"
16303        },
16304        {
16305          "group": "node.k8s.io",
16306          "kind": "WatchEvent",
16307          "version": "v1alpha1"
16308        },
16309        {
16310          "group": "node.k8s.io",
16311          "kind": "WatchEvent",
16312          "version": "v1beta1"
16313        },
16314        {
16315          "group": "policy",
16316          "kind": "WatchEvent",
16317          "version": "v1"
16318        },
16319        {
16320          "group": "policy",
16321          "kind": "WatchEvent",
16322          "version": "v1beta1"
16323        },
16324        {
16325          "group": "rbac.authorization.k8s.io",
16326          "kind": "WatchEvent",
16327          "version": "v1"
16328        },
16329        {
16330          "group": "rbac.authorization.k8s.io",
16331          "kind": "WatchEvent",
16332          "version": "v1alpha1"
16333        },
16334        {
16335          "group": "rbac.authorization.k8s.io",
16336          "kind": "WatchEvent",
16337          "version": "v1beta1"
16338        },
16339        {
16340          "group": "scheduling.k8s.io",
16341          "kind": "WatchEvent",
16342          "version": "v1"
16343        },
16344        {
16345          "group": "scheduling.k8s.io",
16346          "kind": "WatchEvent",
16347          "version": "v1alpha1"
16348        },
16349        {
16350          "group": "scheduling.k8s.io",
16351          "kind": "WatchEvent",
16352          "version": "v1beta1"
16353        },
16354        {
16355          "group": "storage.k8s.io",
16356          "kind": "WatchEvent",
16357          "version": "v1"
16358        },
16359        {
16360          "group": "storage.k8s.io",
16361          "kind": "WatchEvent",
16362          "version": "v1alpha1"
16363        },
16364        {
16365          "group": "storage.k8s.io",
16366          "kind": "WatchEvent",
16367          "version": "v1beta1"
16368        }
16369      ]
16370    },
16371    "io.k8s.apimachinery.pkg.runtime.RawExtension": {
16372      "description": "RawExtension is used to hold extensions in external versions.\n\nTo use this, make a field which has RawExtension as its type in your external, versioned struct, and Object in your internal struct. You also need to register your various plugin types.\n\n// Internal package: type MyAPIObject struct {\n\truntime.TypeMeta `json:\",inline\"`\n\tMyPlugin runtime.Object `json:\"myPlugin\"`\n} type PluginA struct {\n\tAOption string `json:\"aOption\"`\n}\n\n// External package: type MyAPIObject struct {\n\truntime.TypeMeta `json:\",inline\"`\n\tMyPlugin runtime.RawExtension `json:\"myPlugin\"`\n} type PluginA struct {\n\tAOption string `json:\"aOption\"`\n}\n\n// On the wire, the JSON will look something like this: {\n\t\"kind\":\"MyAPIObject\",\n\t\"apiVersion\":\"v1\",\n\t\"myPlugin\": {\n\t\t\"kind\":\"PluginA\",\n\t\t\"aOption\":\"foo\",\n\t},\n}\n\nSo what happens? Decode first uses json or yaml to unmarshal the serialized data into your external MyAPIObject. That causes the raw JSON to be stored, but not unpacked. The next step is to copy (using pkg/conversion) into the internal struct. The runtime package's DefaultScheme has conversion functions installed which will unpack the JSON stored in RawExtension, turning it into the correct object type, and storing it in the Object. (TODO: In the case where the object is of an unknown type, a runtime.Unknown object will be created and stored.)",
16373      "type": "object"
16374    },
16375    "io.k8s.apimachinery.pkg.util.intstr.IntOrString": {
16376      "description": "IntOrString is a type that can hold an int32 or a string.  When used in JSON or YAML marshalling and unmarshalling, it produces or consumes the inner type.  This allows you to have, for example, a JSON field that can accept a name or number.",
16377      "format": "int-or-string",
16378      "type": "string"
16379    },
16380    "io.k8s.apimachinery.pkg.version.Info": {
16381      "description": "Info contains versioning information. how we'll want to distribute that information.",
16382      "properties": {
16383        "buildDate": {
16384          "type": "string"
16385        },
16386        "compiler": {
16387          "type": "string"
16388        },
16389        "gitCommit": {
16390          "type": "string"
16391        },
16392        "gitTreeState": {
16393          "type": "string"
16394        },
16395        "gitVersion": {
16396          "type": "string"
16397        },
16398        "goVersion": {
16399          "type": "string"
16400        },
16401        "major": {
16402          "type": "string"
16403        },
16404        "minor": {
16405          "type": "string"
16406        },
16407        "platform": {
16408          "type": "string"
16409        }
16410      },
16411      "required": [
16412        "major",
16413        "minor",
16414        "gitVersion",
16415        "gitCommit",
16416        "gitTreeState",
16417        "buildDate",
16418        "goVersion",
16419        "compiler",
16420        "platform"
16421      ],
16422      "type": "object"
16423    },
16424    "io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService": {
16425      "description": "APIService represents a server for a particular GroupVersion. Name must be \"version.group\".",
16426      "properties": {
16427        "apiVersion": {
16428          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
16429          "type": "string"
16430        },
16431        "kind": {
16432          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
16433          "type": "string"
16434        },
16435        "metadata": {
16436          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
16437          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
16438        },
16439        "spec": {
16440          "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIServiceSpec",
16441          "description": "Spec contains information for locating and communicating with a server"
16442        },
16443        "status": {
16444          "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIServiceStatus",
16445          "description": "Status contains derived information about an API server"
16446        }
16447      },
16448      "type": "object",
16449      "x-kubernetes-group-version-kind": [
16450        {
16451          "group": "apiregistration.k8s.io",
16452          "kind": "APIService",
16453          "version": "v1"
16454        }
16455      ]
16456    },
16457    "io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIServiceCondition": {
16458      "description": "APIServiceCondition describes the state of an APIService at a particular point",
16459      "properties": {
16460        "lastTransitionTime": {
16461          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
16462          "description": "Last time the condition transitioned from one status to another."
16463        },
16464        "message": {
16465          "description": "Human-readable message indicating details about last transition.",
16466          "type": "string"
16467        },
16468        "reason": {
16469          "description": "Unique, one-word, CamelCase reason for the condition's last transition.",
16470          "type": "string"
16471        },
16472        "status": {
16473          "description": "Status is the status of the condition. Can be True, False, Unknown.",
16474          "type": "string"
16475        },
16476        "type": {
16477          "description": "Type is the type of the condition.",
16478          "type": "string"
16479        }
16480      },
16481      "required": [
16482        "type",
16483        "status"
16484      ],
16485      "type": "object"
16486    },
16487    "io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIServiceList": {
16488      "description": "APIServiceList is a list of APIService objects.",
16489      "properties": {
16490        "apiVersion": {
16491          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
16492          "type": "string"
16493        },
16494        "items": {
16495          "description": "Items is the list of APIService",
16496          "items": {
16497            "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService"
16498          },
16499          "type": "array"
16500        },
16501        "kind": {
16502          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
16503          "type": "string"
16504        },
16505        "metadata": {
16506          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
16507          "description": "Standard list metadata More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
16508        }
16509      },
16510      "required": [
16511        "items"
16512      ],
16513      "type": "object",
16514      "x-kubernetes-group-version-kind": [
16515        {
16516          "group": "apiregistration.k8s.io",
16517          "kind": "APIServiceList",
16518          "version": "v1"
16519        }
16520      ]
16521    },
16522    "io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIServiceSpec": {
16523      "description": "APIServiceSpec contains information for locating and communicating with a server. Only https is supported, though you are able to disable certificate verification.",
16524      "properties": {
16525        "caBundle": {
16526          "description": "CABundle is a PEM encoded CA bundle which will be used to validate an API server's serving certificate. If unspecified, system trust roots on the apiserver are used.",
16527          "format": "byte",
16528          "type": "string",
16529          "x-kubernetes-list-type": "atomic"
16530        },
16531        "group": {
16532          "description": "Group is the API group name this server hosts",
16533          "type": "string"
16534        },
16535        "groupPriorityMinimum": {
16536          "description": "GroupPriorityMininum is the priority this group should have at least. Higher priority means that the group is preferred by clients over lower priority ones. Note that other versions of this group might specify even higher GroupPriorityMininum values such that the whole group gets a higher priority. The primary sort is based on GroupPriorityMinimum, ordered highest number to lowest (20 before 10). The secondary sort is based on the alphabetical comparison of the name of the object.  (v1.bar before v1.foo) We'd recommend something like: *.k8s.io (except extensions) at 18000 and PaaSes (OpenShift, Deis) are recommended to be in the 2000s",
16537          "format": "int32",
16538          "type": "integer"
16539        },
16540        "insecureSkipTLSVerify": {
16541          "description": "InsecureSkipTLSVerify disables TLS certificate verification when communicating with this server. This is strongly discouraged.  You should use the CABundle instead.",
16542          "type": "boolean"
16543        },
16544        "service": {
16545          "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.ServiceReference",
16546          "description": "Service is a reference to the service for this API server.  It must communicate on port 443. If the Service is nil, that means the handling for the API groupversion is handled locally on this server. The call will simply delegate to the normal handler chain to be fulfilled."
16547        },
16548        "version": {
16549          "description": "Version is the API version this server hosts.  For example, \"v1\"",
16550          "type": "string"
16551        },
16552        "versionPriority": {
16553          "description": "VersionPriority controls the ordering of this API version inside of its group.  Must be greater than zero. The primary sort is based on VersionPriority, ordered highest to lowest (20 before 10). Since it's inside of a group, the number can be small, probably in the 10s. In case of equal version priorities, the version string will be used to compute the order inside a group. If the version string is \"kube-like\", it will sort above non \"kube-like\" version strings, which are ordered lexicographically. \"Kube-like\" versions start with a \"v\", then are followed by a number (the major version), then optionally the string \"alpha\" or \"beta\" and another number (the minor version). These are sorted first by GA > beta > alpha (where GA is a version with no suffix such as beta or alpha), and then by comparing major version, then minor version. An example sorted list of versions: v10, v2, v1, v11beta2, v10beta3, v3beta1, v12alpha1, v11alpha2, foo1, foo10.",
16554          "format": "int32",
16555          "type": "integer"
16556        }
16557      },
16558      "required": [
16559        "groupPriorityMinimum",
16560        "versionPriority"
16561      ],
16562      "type": "object"
16563    },
16564    "io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIServiceStatus": {
16565      "description": "APIServiceStatus contains derived information about an API server",
16566      "properties": {
16567        "conditions": {
16568          "description": "Current service state of apiService.",
16569          "items": {
16570            "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIServiceCondition"
16571          },
16572          "type": "array",
16573          "x-kubernetes-list-map-keys": [
16574            "type"
16575          ],
16576          "x-kubernetes-list-type": "map",
16577          "x-kubernetes-patch-merge-key": "type",
16578          "x-kubernetes-patch-strategy": "merge"
16579        }
16580      },
16581      "type": "object"
16582    },
16583    "io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.ServiceReference": {
16584      "description": "ServiceReference holds a reference to Service.legacy.k8s.io",
16585      "properties": {
16586        "name": {
16587          "description": "Name is the name of the service",
16588          "type": "string"
16589        },
16590        "namespace": {
16591          "description": "Namespace is the namespace of the service",
16592          "type": "string"
16593        },
16594        "port": {
16595          "description": "If specified, the port on the service that hosting webhook. Default to 443 for backward compatibility. `port` should be a valid port number (1-65535, inclusive).",
16596          "format": "int32",
16597          "type": "integer"
16598        }
16599      },
16600      "type": "object"
16601    }
16602  },
16603  "info": {
16604    "title": "Kubernetes",
16605    "version": "unversioned"
16606  },
16607  "paths": {
16608    "/.well-known/openid-configuration/": {
16609      "get": {
16610        "description": "get service account issuer OpenID configuration, also known as the 'OIDC discovery doc'",
16611        "operationId": "getServiceAccountIssuerOpenIDConfiguration",
16612        "produces": [
16613          "application/json"
16614        ],
16615        "responses": {
16616          "200": {
16617            "description": "OK",
16618            "schema": {
16619              "type": "string"
16620            }
16621          },
16622          "401": {
16623            "description": "Unauthorized"
16624          }
16625        },
16626        "schemes": [
16627          "https"
16628        ],
16629        "tags": [
16630          "WellKnown"
16631        ]
16632      }
16633    },
16634    "/api/": {
16635      "get": {
16636        "consumes": [
16637          "application/json",
16638          "application/yaml",
16639          "application/vnd.kubernetes.protobuf"
16640        ],
16641        "description": "get available API versions",
16642        "operationId": "getCoreAPIVersions",
16643        "produces": [
16644          "application/json",
16645          "application/yaml",
16646          "application/vnd.kubernetes.protobuf"
16647        ],
16648        "responses": {
16649          "200": {
16650            "description": "OK",
16651            "schema": {
16652              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIVersions"
16653            }
16654          },
16655          "401": {
16656            "description": "Unauthorized"
16657          }
16658        },
16659        "schemes": [
16660          "https"
16661        ],
16662        "tags": [
16663          "core"
16664        ]
16665      }
16666    },
16667    "/api/v1/": {
16668      "get": {
16669        "consumes": [
16670          "application/json",
16671          "application/yaml",
16672          "application/vnd.kubernetes.protobuf"
16673        ],
16674        "description": "get available resources",
16675        "operationId": "getCoreV1APIResources",
16676        "produces": [
16677          "application/json",
16678          "application/yaml",
16679          "application/vnd.kubernetes.protobuf"
16680        ],
16681        "responses": {
16682          "200": {
16683            "description": "OK",
16684            "schema": {
16685              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
16686            }
16687          },
16688          "401": {
16689            "description": "Unauthorized"
16690          }
16691        },
16692        "schemes": [
16693          "https"
16694        ],
16695        "tags": [
16696          "core_v1"
16697        ]
16698      }
16699    },
16700    "/api/v1/componentstatuses": {
16701      "get": {
16702        "consumes": [
16703          "*/*"
16704        ],
16705        "description": "list objects of kind ComponentStatus",
16706        "operationId": "listCoreV1ComponentStatus",
16707        "produces": [
16708          "application/json",
16709          "application/yaml",
16710          "application/vnd.kubernetes.protobuf",
16711          "application/json;stream=watch",
16712          "application/vnd.kubernetes.protobuf;stream=watch"
16713        ],
16714        "responses": {
16715          "200": {
16716            "description": "OK",
16717            "schema": {
16718              "$ref": "#/definitions/io.k8s.api.core.v1.ComponentStatusList"
16719            }
16720          },
16721          "401": {
16722            "description": "Unauthorized"
16723          }
16724        },
16725        "schemes": [
16726          "https"
16727        ],
16728        "tags": [
16729          "core_v1"
16730        ],
16731        "x-kubernetes-action": "list",
16732        "x-kubernetes-group-version-kind": {
16733          "group": "",
16734          "kind": "ComponentStatus",
16735          "version": "v1"
16736        }
16737      },
16738      "parameters": [
16739        {
16740          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
16741          "in": "query",
16742          "name": "allowWatchBookmarks",
16743          "type": "boolean",
16744          "uniqueItems": true
16745        },
16746        {
16747          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
16748          "in": "query",
16749          "name": "continue",
16750          "type": "string",
16751          "uniqueItems": true
16752        },
16753        {
16754          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
16755          "in": "query",
16756          "name": "fieldSelector",
16757          "type": "string",
16758          "uniqueItems": true
16759        },
16760        {
16761          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
16762          "in": "query",
16763          "name": "labelSelector",
16764          "type": "string",
16765          "uniqueItems": true
16766        },
16767        {
16768          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
16769          "in": "query",
16770          "name": "limit",
16771          "type": "integer",
16772          "uniqueItems": true
16773        },
16774        {
16775          "description": "If 'true', then the output is pretty printed.",
16776          "in": "query",
16777          "name": "pretty",
16778          "type": "string",
16779          "uniqueItems": true
16780        },
16781        {
16782          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
16783          "in": "query",
16784          "name": "resourceVersion",
16785          "type": "string",
16786          "uniqueItems": true
16787        },
16788        {
16789          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
16790          "in": "query",
16791          "name": "resourceVersionMatch",
16792          "type": "string",
16793          "uniqueItems": true
16794        },
16795        {
16796          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
16797          "in": "query",
16798          "name": "timeoutSeconds",
16799          "type": "integer",
16800          "uniqueItems": true
16801        },
16802        {
16803          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
16804          "in": "query",
16805          "name": "watch",
16806          "type": "boolean",
16807          "uniqueItems": true
16808        }
16809      ]
16810    },
16811    "/api/v1/componentstatuses/{name}": {
16812      "get": {
16813        "consumes": [
16814          "*/*"
16815        ],
16816        "description": "read the specified ComponentStatus",
16817        "operationId": "readCoreV1ComponentStatus",
16818        "produces": [
16819          "application/json",
16820          "application/yaml",
16821          "application/vnd.kubernetes.protobuf"
16822        ],
16823        "responses": {
16824          "200": {
16825            "description": "OK",
16826            "schema": {
16827              "$ref": "#/definitions/io.k8s.api.core.v1.ComponentStatus"
16828            }
16829          },
16830          "401": {
16831            "description": "Unauthorized"
16832          }
16833        },
16834        "schemes": [
16835          "https"
16836        ],
16837        "tags": [
16838          "core_v1"
16839        ],
16840        "x-kubernetes-action": "get",
16841        "x-kubernetes-group-version-kind": {
16842          "group": "",
16843          "kind": "ComponentStatus",
16844          "version": "v1"
16845        }
16846      },
16847      "parameters": [
16848        {
16849          "description": "name of the ComponentStatus",
16850          "in": "path",
16851          "name": "name",
16852          "required": true,
16853          "type": "string",
16854          "uniqueItems": true
16855        },
16856        {
16857          "description": "If 'true', then the output is pretty printed.",
16858          "in": "query",
16859          "name": "pretty",
16860          "type": "string",
16861          "uniqueItems": true
16862        }
16863      ]
16864    },
16865    "/api/v1/configmaps": {
16866      "get": {
16867        "consumes": [
16868          "*/*"
16869        ],
16870        "description": "list or watch objects of kind ConfigMap",
16871        "operationId": "listCoreV1ConfigMapForAllNamespaces",
16872        "produces": [
16873          "application/json",
16874          "application/yaml",
16875          "application/vnd.kubernetes.protobuf",
16876          "application/json;stream=watch",
16877          "application/vnd.kubernetes.protobuf;stream=watch"
16878        ],
16879        "responses": {
16880          "200": {
16881            "description": "OK",
16882            "schema": {
16883              "$ref": "#/definitions/io.k8s.api.core.v1.ConfigMapList"
16884            }
16885          },
16886          "401": {
16887            "description": "Unauthorized"
16888          }
16889        },
16890        "schemes": [
16891          "https"
16892        ],
16893        "tags": [
16894          "core_v1"
16895        ],
16896        "x-kubernetes-action": "list",
16897        "x-kubernetes-group-version-kind": {
16898          "group": "",
16899          "kind": "ConfigMap",
16900          "version": "v1"
16901        }
16902      },
16903      "parameters": [
16904        {
16905          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
16906          "in": "query",
16907          "name": "allowWatchBookmarks",
16908          "type": "boolean",
16909          "uniqueItems": true
16910        },
16911        {
16912          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
16913          "in": "query",
16914          "name": "continue",
16915          "type": "string",
16916          "uniqueItems": true
16917        },
16918        {
16919          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
16920          "in": "query",
16921          "name": "fieldSelector",
16922          "type": "string",
16923          "uniqueItems": true
16924        },
16925        {
16926          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
16927          "in": "query",
16928          "name": "labelSelector",
16929          "type": "string",
16930          "uniqueItems": true
16931        },
16932        {
16933          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
16934          "in": "query",
16935          "name": "limit",
16936          "type": "integer",
16937          "uniqueItems": true
16938        },
16939        {
16940          "description": "If 'true', then the output is pretty printed.",
16941          "in": "query",
16942          "name": "pretty",
16943          "type": "string",
16944          "uniqueItems": true
16945        },
16946        {
16947          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
16948          "in": "query",
16949          "name": "resourceVersion",
16950          "type": "string",
16951          "uniqueItems": true
16952        },
16953        {
16954          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
16955          "in": "query",
16956          "name": "resourceVersionMatch",
16957          "type": "string",
16958          "uniqueItems": true
16959        },
16960        {
16961          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
16962          "in": "query",
16963          "name": "timeoutSeconds",
16964          "type": "integer",
16965          "uniqueItems": true
16966        },
16967        {
16968          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
16969          "in": "query",
16970          "name": "watch",
16971          "type": "boolean",
16972          "uniqueItems": true
16973        }
16974      ]
16975    },
16976    "/api/v1/endpoints": {
16977      "get": {
16978        "consumes": [
16979          "*/*"
16980        ],
16981        "description": "list or watch objects of kind Endpoints",
16982        "operationId": "listCoreV1EndpointsForAllNamespaces",
16983        "produces": [
16984          "application/json",
16985          "application/yaml",
16986          "application/vnd.kubernetes.protobuf",
16987          "application/json;stream=watch",
16988          "application/vnd.kubernetes.protobuf;stream=watch"
16989        ],
16990        "responses": {
16991          "200": {
16992            "description": "OK",
16993            "schema": {
16994              "$ref": "#/definitions/io.k8s.api.core.v1.EndpointsList"
16995            }
16996          },
16997          "401": {
16998            "description": "Unauthorized"
16999          }
17000        },
17001        "schemes": [
17002          "https"
17003        ],
17004        "tags": [
17005          "core_v1"
17006        ],
17007        "x-kubernetes-action": "list",
17008        "x-kubernetes-group-version-kind": {
17009          "group": "",
17010          "kind": "Endpoints",
17011          "version": "v1"
17012        }
17013      },
17014      "parameters": [
17015        {
17016          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
17017          "in": "query",
17018          "name": "allowWatchBookmarks",
17019          "type": "boolean",
17020          "uniqueItems": true
17021        },
17022        {
17023          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
17024          "in": "query",
17025          "name": "continue",
17026          "type": "string",
17027          "uniqueItems": true
17028        },
17029        {
17030          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
17031          "in": "query",
17032          "name": "fieldSelector",
17033          "type": "string",
17034          "uniqueItems": true
17035        },
17036        {
17037          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
17038          "in": "query",
17039          "name": "labelSelector",
17040          "type": "string",
17041          "uniqueItems": true
17042        },
17043        {
17044          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
17045          "in": "query",
17046          "name": "limit",
17047          "type": "integer",
17048          "uniqueItems": true
17049        },
17050        {
17051          "description": "If 'true', then the output is pretty printed.",
17052          "in": "query",
17053          "name": "pretty",
17054          "type": "string",
17055          "uniqueItems": true
17056        },
17057        {
17058          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
17059          "in": "query",
17060          "name": "resourceVersion",
17061          "type": "string",
17062          "uniqueItems": true
17063        },
17064        {
17065          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
17066          "in": "query",
17067          "name": "resourceVersionMatch",
17068          "type": "string",
17069          "uniqueItems": true
17070        },
17071        {
17072          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
17073          "in": "query",
17074          "name": "timeoutSeconds",
17075          "type": "integer",
17076          "uniqueItems": true
17077        },
17078        {
17079          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
17080          "in": "query",
17081          "name": "watch",
17082          "type": "boolean",
17083          "uniqueItems": true
17084        }
17085      ]
17086    },
17087    "/api/v1/events": {
17088      "get": {
17089        "consumes": [
17090          "*/*"
17091        ],
17092        "description": "list or watch objects of kind Event",
17093        "operationId": "listCoreV1EventForAllNamespaces",
17094        "produces": [
17095          "application/json",
17096          "application/yaml",
17097          "application/vnd.kubernetes.protobuf",
17098          "application/json;stream=watch",
17099          "application/vnd.kubernetes.protobuf;stream=watch"
17100        ],
17101        "responses": {
17102          "200": {
17103            "description": "OK",
17104            "schema": {
17105              "$ref": "#/definitions/io.k8s.api.core.v1.EventList"
17106            }
17107          },
17108          "401": {
17109            "description": "Unauthorized"
17110          }
17111        },
17112        "schemes": [
17113          "https"
17114        ],
17115        "tags": [
17116          "core_v1"
17117        ],
17118        "x-kubernetes-action": "list",
17119        "x-kubernetes-group-version-kind": {
17120          "group": "",
17121          "kind": "Event",
17122          "version": "v1"
17123        }
17124      },
17125      "parameters": [
17126        {
17127          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
17128          "in": "query",
17129          "name": "allowWatchBookmarks",
17130          "type": "boolean",
17131          "uniqueItems": true
17132        },
17133        {
17134          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
17135          "in": "query",
17136          "name": "continue",
17137          "type": "string",
17138          "uniqueItems": true
17139        },
17140        {
17141          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
17142          "in": "query",
17143          "name": "fieldSelector",
17144          "type": "string",
17145          "uniqueItems": true
17146        },
17147        {
17148          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
17149          "in": "query",
17150          "name": "labelSelector",
17151          "type": "string",
17152          "uniqueItems": true
17153        },
17154        {
17155          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
17156          "in": "query",
17157          "name": "limit",
17158          "type": "integer",
17159          "uniqueItems": true
17160        },
17161        {
17162          "description": "If 'true', then the output is pretty printed.",
17163          "in": "query",
17164          "name": "pretty",
17165          "type": "string",
17166          "uniqueItems": true
17167        },
17168        {
17169          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
17170          "in": "query",
17171          "name": "resourceVersion",
17172          "type": "string",
17173          "uniqueItems": true
17174        },
17175        {
17176          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
17177          "in": "query",
17178          "name": "resourceVersionMatch",
17179          "type": "string",
17180          "uniqueItems": true
17181        },
17182        {
17183          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
17184          "in": "query",
17185          "name": "timeoutSeconds",
17186          "type": "integer",
17187          "uniqueItems": true
17188        },
17189        {
17190          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
17191          "in": "query",
17192          "name": "watch",
17193          "type": "boolean",
17194          "uniqueItems": true
17195        }
17196      ]
17197    },
17198    "/api/v1/limitranges": {
17199      "get": {
17200        "consumes": [
17201          "*/*"
17202        ],
17203        "description": "list or watch objects of kind LimitRange",
17204        "operationId": "listCoreV1LimitRangeForAllNamespaces",
17205        "produces": [
17206          "application/json",
17207          "application/yaml",
17208          "application/vnd.kubernetes.protobuf",
17209          "application/json;stream=watch",
17210          "application/vnd.kubernetes.protobuf;stream=watch"
17211        ],
17212        "responses": {
17213          "200": {
17214            "description": "OK",
17215            "schema": {
17216              "$ref": "#/definitions/io.k8s.api.core.v1.LimitRangeList"
17217            }
17218          },
17219          "401": {
17220            "description": "Unauthorized"
17221          }
17222        },
17223        "schemes": [
17224          "https"
17225        ],
17226        "tags": [
17227          "core_v1"
17228        ],
17229        "x-kubernetes-action": "list",
17230        "x-kubernetes-group-version-kind": {
17231          "group": "",
17232          "kind": "LimitRange",
17233          "version": "v1"
17234        }
17235      },
17236      "parameters": [
17237        {
17238          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
17239          "in": "query",
17240          "name": "allowWatchBookmarks",
17241          "type": "boolean",
17242          "uniqueItems": true
17243        },
17244        {
17245          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
17246          "in": "query",
17247          "name": "continue",
17248          "type": "string",
17249          "uniqueItems": true
17250        },
17251        {
17252          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
17253          "in": "query",
17254          "name": "fieldSelector",
17255          "type": "string",
17256          "uniqueItems": true
17257        },
17258        {
17259          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
17260          "in": "query",
17261          "name": "labelSelector",
17262          "type": "string",
17263          "uniqueItems": true
17264        },
17265        {
17266          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
17267          "in": "query",
17268          "name": "limit",
17269          "type": "integer",
17270          "uniqueItems": true
17271        },
17272        {
17273          "description": "If 'true', then the output is pretty printed.",
17274          "in": "query",
17275          "name": "pretty",
17276          "type": "string",
17277          "uniqueItems": true
17278        },
17279        {
17280          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
17281          "in": "query",
17282          "name": "resourceVersion",
17283          "type": "string",
17284          "uniqueItems": true
17285        },
17286        {
17287          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
17288          "in": "query",
17289          "name": "resourceVersionMatch",
17290          "type": "string",
17291          "uniqueItems": true
17292        },
17293        {
17294          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
17295          "in": "query",
17296          "name": "timeoutSeconds",
17297          "type": "integer",
17298          "uniqueItems": true
17299        },
17300        {
17301          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
17302          "in": "query",
17303          "name": "watch",
17304          "type": "boolean",
17305          "uniqueItems": true
17306        }
17307      ]
17308    },
17309    "/api/v1/namespaces": {
17310      "get": {
17311        "consumes": [
17312          "*/*"
17313        ],
17314        "description": "list or watch objects of kind Namespace",
17315        "operationId": "listCoreV1Namespace",
17316        "parameters": [
17317          {
17318            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
17319            "in": "query",
17320            "name": "allowWatchBookmarks",
17321            "type": "boolean",
17322            "uniqueItems": true
17323          },
17324          {
17325            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
17326            "in": "query",
17327            "name": "continue",
17328            "type": "string",
17329            "uniqueItems": true
17330          },
17331          {
17332            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
17333            "in": "query",
17334            "name": "fieldSelector",
17335            "type": "string",
17336            "uniqueItems": true
17337          },
17338          {
17339            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
17340            "in": "query",
17341            "name": "labelSelector",
17342            "type": "string",
17343            "uniqueItems": true
17344          },
17345          {
17346            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
17347            "in": "query",
17348            "name": "limit",
17349            "type": "integer",
17350            "uniqueItems": true
17351          },
17352          {
17353            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
17354            "in": "query",
17355            "name": "resourceVersion",
17356            "type": "string",
17357            "uniqueItems": true
17358          },
17359          {
17360            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
17361            "in": "query",
17362            "name": "resourceVersionMatch",
17363            "type": "string",
17364            "uniqueItems": true
17365          },
17366          {
17367            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
17368            "in": "query",
17369            "name": "timeoutSeconds",
17370            "type": "integer",
17371            "uniqueItems": true
17372          },
17373          {
17374            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
17375            "in": "query",
17376            "name": "watch",
17377            "type": "boolean",
17378            "uniqueItems": true
17379          }
17380        ],
17381        "produces": [
17382          "application/json",
17383          "application/yaml",
17384          "application/vnd.kubernetes.protobuf",
17385          "application/json;stream=watch",
17386          "application/vnd.kubernetes.protobuf;stream=watch"
17387        ],
17388        "responses": {
17389          "200": {
17390            "description": "OK",
17391            "schema": {
17392              "$ref": "#/definitions/io.k8s.api.core.v1.NamespaceList"
17393            }
17394          },
17395          "401": {
17396            "description": "Unauthorized"
17397          }
17398        },
17399        "schemes": [
17400          "https"
17401        ],
17402        "tags": [
17403          "core_v1"
17404        ],
17405        "x-kubernetes-action": "list",
17406        "x-kubernetes-group-version-kind": {
17407          "group": "",
17408          "kind": "Namespace",
17409          "version": "v1"
17410        }
17411      },
17412      "parameters": [
17413        {
17414          "description": "If 'true', then the output is pretty printed.",
17415          "in": "query",
17416          "name": "pretty",
17417          "type": "string",
17418          "uniqueItems": true
17419        }
17420      ],
17421      "post": {
17422        "consumes": [
17423          "*/*"
17424        ],
17425        "description": "create a Namespace",
17426        "operationId": "createCoreV1Namespace",
17427        "parameters": [
17428          {
17429            "in": "body",
17430            "name": "body",
17431            "required": true,
17432            "schema": {
17433              "$ref": "#/definitions/io.k8s.api.core.v1.Namespace"
17434            }
17435          },
17436          {
17437            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
17438            "in": "query",
17439            "name": "dryRun",
17440            "type": "string",
17441            "uniqueItems": true
17442          },
17443          {
17444            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
17445            "in": "query",
17446            "name": "fieldManager",
17447            "type": "string",
17448            "uniqueItems": true
17449          }
17450        ],
17451        "produces": [
17452          "application/json",
17453          "application/yaml",
17454          "application/vnd.kubernetes.protobuf"
17455        ],
17456        "responses": {
17457          "200": {
17458            "description": "OK",
17459            "schema": {
17460              "$ref": "#/definitions/io.k8s.api.core.v1.Namespace"
17461            }
17462          },
17463          "201": {
17464            "description": "Created",
17465            "schema": {
17466              "$ref": "#/definitions/io.k8s.api.core.v1.Namespace"
17467            }
17468          },
17469          "202": {
17470            "description": "Accepted",
17471            "schema": {
17472              "$ref": "#/definitions/io.k8s.api.core.v1.Namespace"
17473            }
17474          },
17475          "401": {
17476            "description": "Unauthorized"
17477          }
17478        },
17479        "schemes": [
17480          "https"
17481        ],
17482        "tags": [
17483          "core_v1"
17484        ],
17485        "x-kubernetes-action": "post",
17486        "x-kubernetes-group-version-kind": {
17487          "group": "",
17488          "kind": "Namespace",
17489          "version": "v1"
17490        }
17491      }
17492    },
17493    "/api/v1/namespaces/{namespace}/bindings": {
17494      "parameters": [
17495        {
17496          "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
17497          "in": "query",
17498          "name": "dryRun",
17499          "type": "string",
17500          "uniqueItems": true
17501        },
17502        {
17503          "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
17504          "in": "query",
17505          "name": "fieldManager",
17506          "type": "string",
17507          "uniqueItems": true
17508        },
17509        {
17510          "description": "object name and auth scope, such as for teams and projects",
17511          "in": "path",
17512          "name": "namespace",
17513          "required": true,
17514          "type": "string",
17515          "uniqueItems": true
17516        },
17517        {
17518          "description": "If 'true', then the output is pretty printed.",
17519          "in": "query",
17520          "name": "pretty",
17521          "type": "string",
17522          "uniqueItems": true
17523        }
17524      ],
17525      "post": {
17526        "consumes": [
17527          "*/*"
17528        ],
17529        "description": "create a Binding",
17530        "operationId": "createCoreV1NamespacedBinding",
17531        "parameters": [
17532          {
17533            "in": "body",
17534            "name": "body",
17535            "required": true,
17536            "schema": {
17537              "$ref": "#/definitions/io.k8s.api.core.v1.Binding"
17538            }
17539          }
17540        ],
17541        "produces": [
17542          "application/json",
17543          "application/yaml",
17544          "application/vnd.kubernetes.protobuf"
17545        ],
17546        "responses": {
17547          "200": {
17548            "description": "OK",
17549            "schema": {
17550              "$ref": "#/definitions/io.k8s.api.core.v1.Binding"
17551            }
17552          },
17553          "201": {
17554            "description": "Created",
17555            "schema": {
17556              "$ref": "#/definitions/io.k8s.api.core.v1.Binding"
17557            }
17558          },
17559          "202": {
17560            "description": "Accepted",
17561            "schema": {
17562              "$ref": "#/definitions/io.k8s.api.core.v1.Binding"
17563            }
17564          },
17565          "401": {
17566            "description": "Unauthorized"
17567          }
17568        },
17569        "schemes": [
17570          "https"
17571        ],
17572        "tags": [
17573          "core_v1"
17574        ],
17575        "x-kubernetes-action": "post",
17576        "x-kubernetes-group-version-kind": {
17577          "group": "",
17578          "kind": "Binding",
17579          "version": "v1"
17580        }
17581      }
17582    },
17583    "/api/v1/namespaces/{namespace}/configmaps": {
17584      "delete": {
17585        "consumes": [
17586          "*/*"
17587        ],
17588        "description": "delete collection of ConfigMap",
17589        "operationId": "deleteCoreV1CollectionNamespacedConfigMap",
17590        "parameters": [
17591          {
17592            "in": "body",
17593            "name": "body",
17594            "schema": {
17595              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
17596            }
17597          },
17598          {
17599            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
17600            "in": "query",
17601            "name": "continue",
17602            "type": "string",
17603            "uniqueItems": true
17604          },
17605          {
17606            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
17607            "in": "query",
17608            "name": "dryRun",
17609            "type": "string",
17610            "uniqueItems": true
17611          },
17612          {
17613            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
17614            "in": "query",
17615            "name": "fieldSelector",
17616            "type": "string",
17617            "uniqueItems": true
17618          },
17619          {
17620            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
17621            "in": "query",
17622            "name": "gracePeriodSeconds",
17623            "type": "integer",
17624            "uniqueItems": true
17625          },
17626          {
17627            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
17628            "in": "query",
17629            "name": "labelSelector",
17630            "type": "string",
17631            "uniqueItems": true
17632          },
17633          {
17634            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
17635            "in": "query",
17636            "name": "limit",
17637            "type": "integer",
17638            "uniqueItems": true
17639          },
17640          {
17641            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
17642            "in": "query",
17643            "name": "orphanDependents",
17644            "type": "boolean",
17645            "uniqueItems": true
17646          },
17647          {
17648            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
17649            "in": "query",
17650            "name": "propagationPolicy",
17651            "type": "string",
17652            "uniqueItems": true
17653          },
17654          {
17655            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
17656            "in": "query",
17657            "name": "resourceVersion",
17658            "type": "string",
17659            "uniqueItems": true
17660          },
17661          {
17662            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
17663            "in": "query",
17664            "name": "resourceVersionMatch",
17665            "type": "string",
17666            "uniqueItems": true
17667          },
17668          {
17669            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
17670            "in": "query",
17671            "name": "timeoutSeconds",
17672            "type": "integer",
17673            "uniqueItems": true
17674          }
17675        ],
17676        "produces": [
17677          "application/json",
17678          "application/yaml",
17679          "application/vnd.kubernetes.protobuf"
17680        ],
17681        "responses": {
17682          "200": {
17683            "description": "OK",
17684            "schema": {
17685              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
17686            }
17687          },
17688          "401": {
17689            "description": "Unauthorized"
17690          }
17691        },
17692        "schemes": [
17693          "https"
17694        ],
17695        "tags": [
17696          "core_v1"
17697        ],
17698        "x-kubernetes-action": "deletecollection",
17699        "x-kubernetes-group-version-kind": {
17700          "group": "",
17701          "kind": "ConfigMap",
17702          "version": "v1"
17703        }
17704      },
17705      "get": {
17706        "consumes": [
17707          "*/*"
17708        ],
17709        "description": "list or watch objects of kind ConfigMap",
17710        "operationId": "listCoreV1NamespacedConfigMap",
17711        "parameters": [
17712          {
17713            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
17714            "in": "query",
17715            "name": "allowWatchBookmarks",
17716            "type": "boolean",
17717            "uniqueItems": true
17718          },
17719          {
17720            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
17721            "in": "query",
17722            "name": "continue",
17723            "type": "string",
17724            "uniqueItems": true
17725          },
17726          {
17727            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
17728            "in": "query",
17729            "name": "fieldSelector",
17730            "type": "string",
17731            "uniqueItems": true
17732          },
17733          {
17734            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
17735            "in": "query",
17736            "name": "labelSelector",
17737            "type": "string",
17738            "uniqueItems": true
17739          },
17740          {
17741            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
17742            "in": "query",
17743            "name": "limit",
17744            "type": "integer",
17745            "uniqueItems": true
17746          },
17747          {
17748            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
17749            "in": "query",
17750            "name": "resourceVersion",
17751            "type": "string",
17752            "uniqueItems": true
17753          },
17754          {
17755            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
17756            "in": "query",
17757            "name": "resourceVersionMatch",
17758            "type": "string",
17759            "uniqueItems": true
17760          },
17761          {
17762            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
17763            "in": "query",
17764            "name": "timeoutSeconds",
17765            "type": "integer",
17766            "uniqueItems": true
17767          },
17768          {
17769            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
17770            "in": "query",
17771            "name": "watch",
17772            "type": "boolean",
17773            "uniqueItems": true
17774          }
17775        ],
17776        "produces": [
17777          "application/json",
17778          "application/yaml",
17779          "application/vnd.kubernetes.protobuf",
17780          "application/json;stream=watch",
17781          "application/vnd.kubernetes.protobuf;stream=watch"
17782        ],
17783        "responses": {
17784          "200": {
17785            "description": "OK",
17786            "schema": {
17787              "$ref": "#/definitions/io.k8s.api.core.v1.ConfigMapList"
17788            }
17789          },
17790          "401": {
17791            "description": "Unauthorized"
17792          }
17793        },
17794        "schemes": [
17795          "https"
17796        ],
17797        "tags": [
17798          "core_v1"
17799        ],
17800        "x-kubernetes-action": "list",
17801        "x-kubernetes-group-version-kind": {
17802          "group": "",
17803          "kind": "ConfigMap",
17804          "version": "v1"
17805        }
17806      },
17807      "parameters": [
17808        {
17809          "description": "object name and auth scope, such as for teams and projects",
17810          "in": "path",
17811          "name": "namespace",
17812          "required": true,
17813          "type": "string",
17814          "uniqueItems": true
17815        },
17816        {
17817          "description": "If 'true', then the output is pretty printed.",
17818          "in": "query",
17819          "name": "pretty",
17820          "type": "string",
17821          "uniqueItems": true
17822        }
17823      ],
17824      "post": {
17825        "consumes": [
17826          "*/*"
17827        ],
17828        "description": "create a ConfigMap",
17829        "operationId": "createCoreV1NamespacedConfigMap",
17830        "parameters": [
17831          {
17832            "in": "body",
17833            "name": "body",
17834            "required": true,
17835            "schema": {
17836              "$ref": "#/definitions/io.k8s.api.core.v1.ConfigMap"
17837            }
17838          },
17839          {
17840            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
17841            "in": "query",
17842            "name": "dryRun",
17843            "type": "string",
17844            "uniqueItems": true
17845          },
17846          {
17847            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
17848            "in": "query",
17849            "name": "fieldManager",
17850            "type": "string",
17851            "uniqueItems": true
17852          }
17853        ],
17854        "produces": [
17855          "application/json",
17856          "application/yaml",
17857          "application/vnd.kubernetes.protobuf"
17858        ],
17859        "responses": {
17860          "200": {
17861            "description": "OK",
17862            "schema": {
17863              "$ref": "#/definitions/io.k8s.api.core.v1.ConfigMap"
17864            }
17865          },
17866          "201": {
17867            "description": "Created",
17868            "schema": {
17869              "$ref": "#/definitions/io.k8s.api.core.v1.ConfigMap"
17870            }
17871          },
17872          "202": {
17873            "description": "Accepted",
17874            "schema": {
17875              "$ref": "#/definitions/io.k8s.api.core.v1.ConfigMap"
17876            }
17877          },
17878          "401": {
17879            "description": "Unauthorized"
17880          }
17881        },
17882        "schemes": [
17883          "https"
17884        ],
17885        "tags": [
17886          "core_v1"
17887        ],
17888        "x-kubernetes-action": "post",
17889        "x-kubernetes-group-version-kind": {
17890          "group": "",
17891          "kind": "ConfigMap",
17892          "version": "v1"
17893        }
17894      }
17895    },
17896    "/api/v1/namespaces/{namespace}/configmaps/{name}": {
17897      "delete": {
17898        "consumes": [
17899          "*/*"
17900        ],
17901        "description": "delete a ConfigMap",
17902        "operationId": "deleteCoreV1NamespacedConfigMap",
17903        "parameters": [
17904          {
17905            "in": "body",
17906            "name": "body",
17907            "schema": {
17908              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
17909            }
17910          },
17911          {
17912            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
17913            "in": "query",
17914            "name": "dryRun",
17915            "type": "string",
17916            "uniqueItems": true
17917          },
17918          {
17919            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
17920            "in": "query",
17921            "name": "gracePeriodSeconds",
17922            "type": "integer",
17923            "uniqueItems": true
17924          },
17925          {
17926            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
17927            "in": "query",
17928            "name": "orphanDependents",
17929            "type": "boolean",
17930            "uniqueItems": true
17931          },
17932          {
17933            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
17934            "in": "query",
17935            "name": "propagationPolicy",
17936            "type": "string",
17937            "uniqueItems": true
17938          }
17939        ],
17940        "produces": [
17941          "application/json",
17942          "application/yaml",
17943          "application/vnd.kubernetes.protobuf"
17944        ],
17945        "responses": {
17946          "200": {
17947            "description": "OK",
17948            "schema": {
17949              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
17950            }
17951          },
17952          "202": {
17953            "description": "Accepted",
17954            "schema": {
17955              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
17956            }
17957          },
17958          "401": {
17959            "description": "Unauthorized"
17960          }
17961        },
17962        "schemes": [
17963          "https"
17964        ],
17965        "tags": [
17966          "core_v1"
17967        ],
17968        "x-kubernetes-action": "delete",
17969        "x-kubernetes-group-version-kind": {
17970          "group": "",
17971          "kind": "ConfigMap",
17972          "version": "v1"
17973        }
17974      },
17975      "get": {
17976        "consumes": [
17977          "*/*"
17978        ],
17979        "description": "read the specified ConfigMap",
17980        "operationId": "readCoreV1NamespacedConfigMap",
17981        "produces": [
17982          "application/json",
17983          "application/yaml",
17984          "application/vnd.kubernetes.protobuf"
17985        ],
17986        "responses": {
17987          "200": {
17988            "description": "OK",
17989            "schema": {
17990              "$ref": "#/definitions/io.k8s.api.core.v1.ConfigMap"
17991            }
17992          },
17993          "401": {
17994            "description": "Unauthorized"
17995          }
17996        },
17997        "schemes": [
17998          "https"
17999        ],
18000        "tags": [
18001          "core_v1"
18002        ],
18003        "x-kubernetes-action": "get",
18004        "x-kubernetes-group-version-kind": {
18005          "group": "",
18006          "kind": "ConfigMap",
18007          "version": "v1"
18008        }
18009      },
18010      "parameters": [
18011        {
18012          "description": "name of the ConfigMap",
18013          "in": "path",
18014          "name": "name",
18015          "required": true,
18016          "type": "string",
18017          "uniqueItems": true
18018        },
18019        {
18020          "description": "object name and auth scope, such as for teams and projects",
18021          "in": "path",
18022          "name": "namespace",
18023          "required": true,
18024          "type": "string",
18025          "uniqueItems": true
18026        },
18027        {
18028          "description": "If 'true', then the output is pretty printed.",
18029          "in": "query",
18030          "name": "pretty",
18031          "type": "string",
18032          "uniqueItems": true
18033        }
18034      ],
18035      "patch": {
18036        "consumes": [
18037          "application/json-patch+json",
18038          "application/merge-patch+json",
18039          "application/strategic-merge-patch+json",
18040          "application/apply-patch+yaml"
18041        ],
18042        "description": "partially update the specified ConfigMap",
18043        "operationId": "patchCoreV1NamespacedConfigMap",
18044        "parameters": [
18045          {
18046            "in": "body",
18047            "name": "body",
18048            "required": true,
18049            "schema": {
18050              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
18051            }
18052          },
18053          {
18054            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
18055            "in": "query",
18056            "name": "dryRun",
18057            "type": "string",
18058            "uniqueItems": true
18059          },
18060          {
18061            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
18062            "in": "query",
18063            "name": "fieldManager",
18064            "type": "string",
18065            "uniqueItems": true
18066          },
18067          {
18068            "description": "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.",
18069            "in": "query",
18070            "name": "force",
18071            "type": "boolean",
18072            "uniqueItems": true
18073          }
18074        ],
18075        "produces": [
18076          "application/json",
18077          "application/yaml",
18078          "application/vnd.kubernetes.protobuf"
18079        ],
18080        "responses": {
18081          "200": {
18082            "description": "OK",
18083            "schema": {
18084              "$ref": "#/definitions/io.k8s.api.core.v1.ConfigMap"
18085            }
18086          },
18087          "201": {
18088            "description": "Created",
18089            "schema": {
18090              "$ref": "#/definitions/io.k8s.api.core.v1.ConfigMap"
18091            }
18092          },
18093          "401": {
18094            "description": "Unauthorized"
18095          }
18096        },
18097        "schemes": [
18098          "https"
18099        ],
18100        "tags": [
18101          "core_v1"
18102        ],
18103        "x-kubernetes-action": "patch",
18104        "x-kubernetes-group-version-kind": {
18105          "group": "",
18106          "kind": "ConfigMap",
18107          "version": "v1"
18108        }
18109      },
18110      "put": {
18111        "consumes": [
18112          "*/*"
18113        ],
18114        "description": "replace the specified ConfigMap",
18115        "operationId": "replaceCoreV1NamespacedConfigMap",
18116        "parameters": [
18117          {
18118            "in": "body",
18119            "name": "body",
18120            "required": true,
18121            "schema": {
18122              "$ref": "#/definitions/io.k8s.api.core.v1.ConfigMap"
18123            }
18124          },
18125          {
18126            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
18127            "in": "query",
18128            "name": "dryRun",
18129            "type": "string",
18130            "uniqueItems": true
18131          },
18132          {
18133            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
18134            "in": "query",
18135            "name": "fieldManager",
18136            "type": "string",
18137            "uniqueItems": true
18138          }
18139        ],
18140        "produces": [
18141          "application/json",
18142          "application/yaml",
18143          "application/vnd.kubernetes.protobuf"
18144        ],
18145        "responses": {
18146          "200": {
18147            "description": "OK",
18148            "schema": {
18149              "$ref": "#/definitions/io.k8s.api.core.v1.ConfigMap"
18150            }
18151          },
18152          "201": {
18153            "description": "Created",
18154            "schema": {
18155              "$ref": "#/definitions/io.k8s.api.core.v1.ConfigMap"
18156            }
18157          },
18158          "401": {
18159            "description": "Unauthorized"
18160          }
18161        },
18162        "schemes": [
18163          "https"
18164        ],
18165        "tags": [
18166          "core_v1"
18167        ],
18168        "x-kubernetes-action": "put",
18169        "x-kubernetes-group-version-kind": {
18170          "group": "",
18171          "kind": "ConfigMap",
18172          "version": "v1"
18173        }
18174      }
18175    },
18176    "/api/v1/namespaces/{namespace}/endpoints": {
18177      "delete": {
18178        "consumes": [
18179          "*/*"
18180        ],
18181        "description": "delete collection of Endpoints",
18182        "operationId": "deleteCoreV1CollectionNamespacedEndpoints",
18183        "parameters": [
18184          {
18185            "in": "body",
18186            "name": "body",
18187            "schema": {
18188              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
18189            }
18190          },
18191          {
18192            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
18193            "in": "query",
18194            "name": "continue",
18195            "type": "string",
18196            "uniqueItems": true
18197          },
18198          {
18199            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
18200            "in": "query",
18201            "name": "dryRun",
18202            "type": "string",
18203            "uniqueItems": true
18204          },
18205          {
18206            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
18207            "in": "query",
18208            "name": "fieldSelector",
18209            "type": "string",
18210            "uniqueItems": true
18211          },
18212          {
18213            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
18214            "in": "query",
18215            "name": "gracePeriodSeconds",
18216            "type": "integer",
18217            "uniqueItems": true
18218          },
18219          {
18220            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
18221            "in": "query",
18222            "name": "labelSelector",
18223            "type": "string",
18224            "uniqueItems": true
18225          },
18226          {
18227            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
18228            "in": "query",
18229            "name": "limit",
18230            "type": "integer",
18231            "uniqueItems": true
18232          },
18233          {
18234            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
18235            "in": "query",
18236            "name": "orphanDependents",
18237            "type": "boolean",
18238            "uniqueItems": true
18239          },
18240          {
18241            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
18242            "in": "query",
18243            "name": "propagationPolicy",
18244            "type": "string",
18245            "uniqueItems": true
18246          },
18247          {
18248            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
18249            "in": "query",
18250            "name": "resourceVersion",
18251            "type": "string",
18252            "uniqueItems": true
18253          },
18254          {
18255            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
18256            "in": "query",
18257            "name": "resourceVersionMatch",
18258            "type": "string",
18259            "uniqueItems": true
18260          },
18261          {
18262            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
18263            "in": "query",
18264            "name": "timeoutSeconds",
18265            "type": "integer",
18266            "uniqueItems": true
18267          }
18268        ],
18269        "produces": [
18270          "application/json",
18271          "application/yaml",
18272          "application/vnd.kubernetes.protobuf"
18273        ],
18274        "responses": {
18275          "200": {
18276            "description": "OK",
18277            "schema": {
18278              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
18279            }
18280          },
18281          "401": {
18282            "description": "Unauthorized"
18283          }
18284        },
18285        "schemes": [
18286          "https"
18287        ],
18288        "tags": [
18289          "core_v1"
18290        ],
18291        "x-kubernetes-action": "deletecollection",
18292        "x-kubernetes-group-version-kind": {
18293          "group": "",
18294          "kind": "Endpoints",
18295          "version": "v1"
18296        }
18297      },
18298      "get": {
18299        "consumes": [
18300          "*/*"
18301        ],
18302        "description": "list or watch objects of kind Endpoints",
18303        "operationId": "listCoreV1NamespacedEndpoints",
18304        "parameters": [
18305          {
18306            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
18307            "in": "query",
18308            "name": "allowWatchBookmarks",
18309            "type": "boolean",
18310            "uniqueItems": true
18311          },
18312          {
18313            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
18314            "in": "query",
18315            "name": "continue",
18316            "type": "string",
18317            "uniqueItems": true
18318          },
18319          {
18320            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
18321            "in": "query",
18322            "name": "fieldSelector",
18323            "type": "string",
18324            "uniqueItems": true
18325          },
18326          {
18327            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
18328            "in": "query",
18329            "name": "labelSelector",
18330            "type": "string",
18331            "uniqueItems": true
18332          },
18333          {
18334            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
18335            "in": "query",
18336            "name": "limit",
18337            "type": "integer",
18338            "uniqueItems": true
18339          },
18340          {
18341            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
18342            "in": "query",
18343            "name": "resourceVersion",
18344            "type": "string",
18345            "uniqueItems": true
18346          },
18347          {
18348            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
18349            "in": "query",
18350            "name": "resourceVersionMatch",
18351            "type": "string",
18352            "uniqueItems": true
18353          },
18354          {
18355            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
18356            "in": "query",
18357            "name": "timeoutSeconds",
18358            "type": "integer",
18359            "uniqueItems": true
18360          },
18361          {
18362            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
18363            "in": "query",
18364            "name": "watch",
18365            "type": "boolean",
18366            "uniqueItems": true
18367          }
18368        ],
18369        "produces": [
18370          "application/json",
18371          "application/yaml",
18372          "application/vnd.kubernetes.protobuf",
18373          "application/json;stream=watch",
18374          "application/vnd.kubernetes.protobuf;stream=watch"
18375        ],
18376        "responses": {
18377          "200": {
18378            "description": "OK",
18379            "schema": {
18380              "$ref": "#/definitions/io.k8s.api.core.v1.EndpointsList"
18381            }
18382          },
18383          "401": {
18384            "description": "Unauthorized"
18385          }
18386        },
18387        "schemes": [
18388          "https"
18389        ],
18390        "tags": [
18391          "core_v1"
18392        ],
18393        "x-kubernetes-action": "list",
18394        "x-kubernetes-group-version-kind": {
18395          "group": "",
18396          "kind": "Endpoints",
18397          "version": "v1"
18398        }
18399      },
18400      "parameters": [
18401        {
18402          "description": "object name and auth scope, such as for teams and projects",
18403          "in": "path",
18404          "name": "namespace",
18405          "required": true,
18406          "type": "string",
18407          "uniqueItems": true
18408        },
18409        {
18410          "description": "If 'true', then the output is pretty printed.",
18411          "in": "query",
18412          "name": "pretty",
18413          "type": "string",
18414          "uniqueItems": true
18415        }
18416      ],
18417      "post": {
18418        "consumes": [
18419          "*/*"
18420        ],
18421        "description": "create Endpoints",
18422        "operationId": "createCoreV1NamespacedEndpoints",
18423        "parameters": [
18424          {
18425            "in": "body",
18426            "name": "body",
18427            "required": true,
18428            "schema": {
18429              "$ref": "#/definitions/io.k8s.api.core.v1.Endpoints"
18430            }
18431          },
18432          {
18433            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
18434            "in": "query",
18435            "name": "dryRun",
18436            "type": "string",
18437            "uniqueItems": true
18438          },
18439          {
18440            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
18441            "in": "query",
18442            "name": "fieldManager",
18443            "type": "string",
18444            "uniqueItems": true
18445          }
18446        ],
18447        "produces": [
18448          "application/json",
18449          "application/yaml",
18450          "application/vnd.kubernetes.protobuf"
18451        ],
18452        "responses": {
18453          "200": {
18454            "description": "OK",
18455            "schema": {
18456              "$ref": "#/definitions/io.k8s.api.core.v1.Endpoints"
18457            }
18458          },
18459          "201": {
18460            "description": "Created",
18461            "schema": {
18462              "$ref": "#/definitions/io.k8s.api.core.v1.Endpoints"
18463            }
18464          },
18465          "202": {
18466            "description": "Accepted",
18467            "schema": {
18468              "$ref": "#/definitions/io.k8s.api.core.v1.Endpoints"
18469            }
18470          },
18471          "401": {
18472            "description": "Unauthorized"
18473          }
18474        },
18475        "schemes": [
18476          "https"
18477        ],
18478        "tags": [
18479          "core_v1"
18480        ],
18481        "x-kubernetes-action": "post",
18482        "x-kubernetes-group-version-kind": {
18483          "group": "",
18484          "kind": "Endpoints",
18485          "version": "v1"
18486        }
18487      }
18488    },
18489    "/api/v1/namespaces/{namespace}/endpoints/{name}": {
18490      "delete": {
18491        "consumes": [
18492          "*/*"
18493        ],
18494        "description": "delete Endpoints",
18495        "operationId": "deleteCoreV1NamespacedEndpoints",
18496        "parameters": [
18497          {
18498            "in": "body",
18499            "name": "body",
18500            "schema": {
18501              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
18502            }
18503          },
18504          {
18505            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
18506            "in": "query",
18507            "name": "dryRun",
18508            "type": "string",
18509            "uniqueItems": true
18510          },
18511          {
18512            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
18513            "in": "query",
18514            "name": "gracePeriodSeconds",
18515            "type": "integer",
18516            "uniqueItems": true
18517          },
18518          {
18519            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
18520            "in": "query",
18521            "name": "orphanDependents",
18522            "type": "boolean",
18523            "uniqueItems": true
18524          },
18525          {
18526            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
18527            "in": "query",
18528            "name": "propagationPolicy",
18529            "type": "string",
18530            "uniqueItems": true
18531          }
18532        ],
18533        "produces": [
18534          "application/json",
18535          "application/yaml",
18536          "application/vnd.kubernetes.protobuf"
18537        ],
18538        "responses": {
18539          "200": {
18540            "description": "OK",
18541            "schema": {
18542              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
18543            }
18544          },
18545          "202": {
18546            "description": "Accepted",
18547            "schema": {
18548              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
18549            }
18550          },
18551          "401": {
18552            "description": "Unauthorized"
18553          }
18554        },
18555        "schemes": [
18556          "https"
18557        ],
18558        "tags": [
18559          "core_v1"
18560        ],
18561        "x-kubernetes-action": "delete",
18562        "x-kubernetes-group-version-kind": {
18563          "group": "",
18564          "kind": "Endpoints",
18565          "version": "v1"
18566        }
18567      },
18568      "get": {
18569        "consumes": [
18570          "*/*"
18571        ],
18572        "description": "read the specified Endpoints",
18573        "operationId": "readCoreV1NamespacedEndpoints",
18574        "produces": [
18575          "application/json",
18576          "application/yaml",
18577          "application/vnd.kubernetes.protobuf"
18578        ],
18579        "responses": {
18580          "200": {
18581            "description": "OK",
18582            "schema": {
18583              "$ref": "#/definitions/io.k8s.api.core.v1.Endpoints"
18584            }
18585          },
18586          "401": {
18587            "description": "Unauthorized"
18588          }
18589        },
18590        "schemes": [
18591          "https"
18592        ],
18593        "tags": [
18594          "core_v1"
18595        ],
18596        "x-kubernetes-action": "get",
18597        "x-kubernetes-group-version-kind": {
18598          "group": "",
18599          "kind": "Endpoints",
18600          "version": "v1"
18601        }
18602      },
18603      "parameters": [
18604        {
18605          "description": "name of the Endpoints",
18606          "in": "path",
18607          "name": "name",
18608          "required": true,
18609          "type": "string",
18610          "uniqueItems": true
18611        },
18612        {
18613          "description": "object name and auth scope, such as for teams and projects",
18614          "in": "path",
18615          "name": "namespace",
18616          "required": true,
18617          "type": "string",
18618          "uniqueItems": true
18619        },
18620        {
18621          "description": "If 'true', then the output is pretty printed.",
18622          "in": "query",
18623          "name": "pretty",
18624          "type": "string",
18625          "uniqueItems": true
18626        }
18627      ],
18628      "patch": {
18629        "consumes": [
18630          "application/json-patch+json",
18631          "application/merge-patch+json",
18632          "application/strategic-merge-patch+json",
18633          "application/apply-patch+yaml"
18634        ],
18635        "description": "partially update the specified Endpoints",
18636        "operationId": "patchCoreV1NamespacedEndpoints",
18637        "parameters": [
18638          {
18639            "in": "body",
18640            "name": "body",
18641            "required": true,
18642            "schema": {
18643              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
18644            }
18645          },
18646          {
18647            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
18648            "in": "query",
18649            "name": "dryRun",
18650            "type": "string",
18651            "uniqueItems": true
18652          },
18653          {
18654            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
18655            "in": "query",
18656            "name": "fieldManager",
18657            "type": "string",
18658            "uniqueItems": true
18659          },
18660          {
18661            "description": "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.",
18662            "in": "query",
18663            "name": "force",
18664            "type": "boolean",
18665            "uniqueItems": true
18666          }
18667        ],
18668        "produces": [
18669          "application/json",
18670          "application/yaml",
18671          "application/vnd.kubernetes.protobuf"
18672        ],
18673        "responses": {
18674          "200": {
18675            "description": "OK",
18676            "schema": {
18677              "$ref": "#/definitions/io.k8s.api.core.v1.Endpoints"
18678            }
18679          },
18680          "201": {
18681            "description": "Created",
18682            "schema": {
18683              "$ref": "#/definitions/io.k8s.api.core.v1.Endpoints"
18684            }
18685          },
18686          "401": {
18687            "description": "Unauthorized"
18688          }
18689        },
18690        "schemes": [
18691          "https"
18692        ],
18693        "tags": [
18694          "core_v1"
18695        ],
18696        "x-kubernetes-action": "patch",
18697        "x-kubernetes-group-version-kind": {
18698          "group": "",
18699          "kind": "Endpoints",
18700          "version": "v1"
18701        }
18702      },
18703      "put": {
18704        "consumes": [
18705          "*/*"
18706        ],
18707        "description": "replace the specified Endpoints",
18708        "operationId": "replaceCoreV1NamespacedEndpoints",
18709        "parameters": [
18710          {
18711            "in": "body",
18712            "name": "body",
18713            "required": true,
18714            "schema": {
18715              "$ref": "#/definitions/io.k8s.api.core.v1.Endpoints"
18716            }
18717          },
18718          {
18719            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
18720            "in": "query",
18721            "name": "dryRun",
18722            "type": "string",
18723            "uniqueItems": true
18724          },
18725          {
18726            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
18727            "in": "query",
18728            "name": "fieldManager",
18729            "type": "string",
18730            "uniqueItems": true
18731          }
18732        ],
18733        "produces": [
18734          "application/json",
18735          "application/yaml",
18736          "application/vnd.kubernetes.protobuf"
18737        ],
18738        "responses": {
18739          "200": {
18740            "description": "OK",
18741            "schema": {
18742              "$ref": "#/definitions/io.k8s.api.core.v1.Endpoints"
18743            }
18744          },
18745          "201": {
18746            "description": "Created",
18747            "schema": {
18748              "$ref": "#/definitions/io.k8s.api.core.v1.Endpoints"
18749            }
18750          },
18751          "401": {
18752            "description": "Unauthorized"
18753          }
18754        },
18755        "schemes": [
18756          "https"
18757        ],
18758        "tags": [
18759          "core_v1"
18760        ],
18761        "x-kubernetes-action": "put",
18762        "x-kubernetes-group-version-kind": {
18763          "group": "",
18764          "kind": "Endpoints",
18765          "version": "v1"
18766        }
18767      }
18768    },
18769    "/api/v1/namespaces/{namespace}/events": {
18770      "delete": {
18771        "consumes": [
18772          "*/*"
18773        ],
18774        "description": "delete collection of Event",
18775        "operationId": "deleteCoreV1CollectionNamespacedEvent",
18776        "parameters": [
18777          {
18778            "in": "body",
18779            "name": "body",
18780            "schema": {
18781              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
18782            }
18783          },
18784          {
18785            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
18786            "in": "query",
18787            "name": "continue",
18788            "type": "string",
18789            "uniqueItems": true
18790          },
18791          {
18792            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
18793            "in": "query",
18794            "name": "dryRun",
18795            "type": "string",
18796            "uniqueItems": true
18797          },
18798          {
18799            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
18800            "in": "query",
18801            "name": "fieldSelector",
18802            "type": "string",
18803            "uniqueItems": true
18804          },
18805          {
18806            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
18807            "in": "query",
18808            "name": "gracePeriodSeconds",
18809            "type": "integer",
18810            "uniqueItems": true
18811          },
18812          {
18813            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
18814            "in": "query",
18815            "name": "labelSelector",
18816            "type": "string",
18817            "uniqueItems": true
18818          },
18819          {
18820            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
18821            "in": "query",
18822            "name": "limit",
18823            "type": "integer",
18824            "uniqueItems": true
18825          },
18826          {
18827            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
18828            "in": "query",
18829            "name": "orphanDependents",
18830            "type": "boolean",
18831            "uniqueItems": true
18832          },
18833          {
18834            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
18835            "in": "query",
18836            "name": "propagationPolicy",
18837            "type": "string",
18838            "uniqueItems": true
18839          },
18840          {
18841            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
18842            "in": "query",
18843            "name": "resourceVersion",
18844            "type": "string",
18845            "uniqueItems": true
18846          },
18847          {
18848            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
18849            "in": "query",
18850            "name": "resourceVersionMatch",
18851            "type": "string",
18852            "uniqueItems": true
18853          },
18854          {
18855            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
18856            "in": "query",
18857            "name": "timeoutSeconds",
18858            "type": "integer",
18859            "uniqueItems": true
18860          }
18861        ],
18862        "produces": [
18863          "application/json",
18864          "application/yaml",
18865          "application/vnd.kubernetes.protobuf"
18866        ],
18867        "responses": {
18868          "200": {
18869            "description": "OK",
18870            "schema": {
18871              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
18872            }
18873          },
18874          "401": {
18875            "description": "Unauthorized"
18876          }
18877        },
18878        "schemes": [
18879          "https"
18880        ],
18881        "tags": [
18882          "core_v1"
18883        ],
18884        "x-kubernetes-action": "deletecollection",
18885        "x-kubernetes-group-version-kind": {
18886          "group": "",
18887          "kind": "Event",
18888          "version": "v1"
18889        }
18890      },
18891      "get": {
18892        "consumes": [
18893          "*/*"
18894        ],
18895        "description": "list or watch objects of kind Event",
18896        "operationId": "listCoreV1NamespacedEvent",
18897        "parameters": [
18898          {
18899            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
18900            "in": "query",
18901            "name": "allowWatchBookmarks",
18902            "type": "boolean",
18903            "uniqueItems": true
18904          },
18905          {
18906            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
18907            "in": "query",
18908            "name": "continue",
18909            "type": "string",
18910            "uniqueItems": true
18911          },
18912          {
18913            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
18914            "in": "query",
18915            "name": "fieldSelector",
18916            "type": "string",
18917            "uniqueItems": true
18918          },
18919          {
18920            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
18921            "in": "query",
18922            "name": "labelSelector",
18923            "type": "string",
18924            "uniqueItems": true
18925          },
18926          {
18927            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
18928            "in": "query",
18929            "name": "limit",
18930            "type": "integer",
18931            "uniqueItems": true
18932          },
18933          {
18934            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
18935            "in": "query",
18936            "name": "resourceVersion",
18937            "type": "string",
18938            "uniqueItems": true
18939          },
18940          {
18941            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
18942            "in": "query",
18943            "name": "resourceVersionMatch",
18944            "type": "string",
18945            "uniqueItems": true
18946          },
18947          {
18948            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
18949            "in": "query",
18950            "name": "timeoutSeconds",
18951            "type": "integer",
18952            "uniqueItems": true
18953          },
18954          {
18955            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
18956            "in": "query",
18957            "name": "watch",
18958            "type": "boolean",
18959            "uniqueItems": true
18960          }
18961        ],
18962        "produces": [
18963          "application/json",
18964          "application/yaml",
18965          "application/vnd.kubernetes.protobuf",
18966          "application/json;stream=watch",
18967          "application/vnd.kubernetes.protobuf;stream=watch"
18968        ],
18969        "responses": {
18970          "200": {
18971            "description": "OK",
18972            "schema": {
18973              "$ref": "#/definitions/io.k8s.api.core.v1.EventList"
18974            }
18975          },
18976          "401": {
18977            "description": "Unauthorized"
18978          }
18979        },
18980        "schemes": [
18981          "https"
18982        ],
18983        "tags": [
18984          "core_v1"
18985        ],
18986        "x-kubernetes-action": "list",
18987        "x-kubernetes-group-version-kind": {
18988          "group": "",
18989          "kind": "Event",
18990          "version": "v1"
18991        }
18992      },
18993      "parameters": [
18994        {
18995          "description": "object name and auth scope, such as for teams and projects",
18996          "in": "path",
18997          "name": "namespace",
18998          "required": true,
18999          "type": "string",
19000          "uniqueItems": true
19001        },
19002        {
19003          "description": "If 'true', then the output is pretty printed.",
19004          "in": "query",
19005          "name": "pretty",
19006          "type": "string",
19007          "uniqueItems": true
19008        }
19009      ],
19010      "post": {
19011        "consumes": [
19012          "*/*"
19013        ],
19014        "description": "create an Event",
19015        "operationId": "createCoreV1NamespacedEvent",
19016        "parameters": [
19017          {
19018            "in": "body",
19019            "name": "body",
19020            "required": true,
19021            "schema": {
19022              "$ref": "#/definitions/io.k8s.api.core.v1.Event"
19023            }
19024          },
19025          {
19026            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
19027            "in": "query",
19028            "name": "dryRun",
19029            "type": "string",
19030            "uniqueItems": true
19031          },
19032          {
19033            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
19034            "in": "query",
19035            "name": "fieldManager",
19036            "type": "string",
19037            "uniqueItems": true
19038          }
19039        ],
19040        "produces": [
19041          "application/json",
19042          "application/yaml",
19043          "application/vnd.kubernetes.protobuf"
19044        ],
19045        "responses": {
19046          "200": {
19047            "description": "OK",
19048            "schema": {
19049              "$ref": "#/definitions/io.k8s.api.core.v1.Event"
19050            }
19051          },
19052          "201": {
19053            "description": "Created",
19054            "schema": {
19055              "$ref": "#/definitions/io.k8s.api.core.v1.Event"
19056            }
19057          },
19058          "202": {
19059            "description": "Accepted",
19060            "schema": {
19061              "$ref": "#/definitions/io.k8s.api.core.v1.Event"
19062            }
19063          },
19064          "401": {
19065            "description": "Unauthorized"
19066          }
19067        },
19068        "schemes": [
19069          "https"
19070        ],
19071        "tags": [
19072          "core_v1"
19073        ],
19074        "x-kubernetes-action": "post",
19075        "x-kubernetes-group-version-kind": {
19076          "group": "",
19077          "kind": "Event",
19078          "version": "v1"
19079        }
19080      }
19081    },
19082    "/api/v1/namespaces/{namespace}/events/{name}": {
19083      "delete": {
19084        "consumes": [
19085          "*/*"
19086        ],
19087        "description": "delete an Event",
19088        "operationId": "deleteCoreV1NamespacedEvent",
19089        "parameters": [
19090          {
19091            "in": "body",
19092            "name": "body",
19093            "schema": {
19094              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
19095            }
19096          },
19097          {
19098            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
19099            "in": "query",
19100            "name": "dryRun",
19101            "type": "string",
19102            "uniqueItems": true
19103          },
19104          {
19105            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
19106            "in": "query",
19107            "name": "gracePeriodSeconds",
19108            "type": "integer",
19109            "uniqueItems": true
19110          },
19111          {
19112            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
19113            "in": "query",
19114            "name": "orphanDependents",
19115            "type": "boolean",
19116            "uniqueItems": true
19117          },
19118          {
19119            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
19120            "in": "query",
19121            "name": "propagationPolicy",
19122            "type": "string",
19123            "uniqueItems": true
19124          }
19125        ],
19126        "produces": [
19127          "application/json",
19128          "application/yaml",
19129          "application/vnd.kubernetes.protobuf"
19130        ],
19131        "responses": {
19132          "200": {
19133            "description": "OK",
19134            "schema": {
19135              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
19136            }
19137          },
19138          "202": {
19139            "description": "Accepted",
19140            "schema": {
19141              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
19142            }
19143          },
19144          "401": {
19145            "description": "Unauthorized"
19146          }
19147        },
19148        "schemes": [
19149          "https"
19150        ],
19151        "tags": [
19152          "core_v1"
19153        ],
19154        "x-kubernetes-action": "delete",
19155        "x-kubernetes-group-version-kind": {
19156          "group": "",
19157          "kind": "Event",
19158          "version": "v1"
19159        }
19160      },
19161      "get": {
19162        "consumes": [
19163          "*/*"
19164        ],
19165        "description": "read the specified Event",
19166        "operationId": "readCoreV1NamespacedEvent",
19167        "produces": [
19168          "application/json",
19169          "application/yaml",
19170          "application/vnd.kubernetes.protobuf"
19171        ],
19172        "responses": {
19173          "200": {
19174            "description": "OK",
19175            "schema": {
19176              "$ref": "#/definitions/io.k8s.api.core.v1.Event"
19177            }
19178          },
19179          "401": {
19180            "description": "Unauthorized"
19181          }
19182        },
19183        "schemes": [
19184          "https"
19185        ],
19186        "tags": [
19187          "core_v1"
19188        ],
19189        "x-kubernetes-action": "get",
19190        "x-kubernetes-group-version-kind": {
19191          "group": "",
19192          "kind": "Event",
19193          "version": "v1"
19194        }
19195      },
19196      "parameters": [
19197        {
19198          "description": "name of the Event",
19199          "in": "path",
19200          "name": "name",
19201          "required": true,
19202          "type": "string",
19203          "uniqueItems": true
19204        },
19205        {
19206          "description": "object name and auth scope, such as for teams and projects",
19207          "in": "path",
19208          "name": "namespace",
19209          "required": true,
19210          "type": "string",
19211          "uniqueItems": true
19212        },
19213        {
19214          "description": "If 'true', then the output is pretty printed.",
19215          "in": "query",
19216          "name": "pretty",
19217          "type": "string",
19218          "uniqueItems": true
19219        }
19220      ],
19221      "patch": {
19222        "consumes": [
19223          "application/json-patch+json",
19224          "application/merge-patch+json",
19225          "application/strategic-merge-patch+json",
19226          "application/apply-patch+yaml"
19227        ],
19228        "description": "partially update the specified Event",
19229        "operationId": "patchCoreV1NamespacedEvent",
19230        "parameters": [
19231          {
19232            "in": "body",
19233            "name": "body",
19234            "required": true,
19235            "schema": {
19236              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
19237            }
19238          },
19239          {
19240            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
19241            "in": "query",
19242            "name": "dryRun",
19243            "type": "string",
19244            "uniqueItems": true
19245          },
19246          {
19247            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
19248            "in": "query",
19249            "name": "fieldManager",
19250            "type": "string",
19251            "uniqueItems": true
19252          },
19253          {
19254            "description": "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.",
19255            "in": "query",
19256            "name": "force",
19257            "type": "boolean",
19258            "uniqueItems": true
19259          }
19260        ],
19261        "produces": [
19262          "application/json",
19263          "application/yaml",
19264          "application/vnd.kubernetes.protobuf"
19265        ],
19266        "responses": {
19267          "200": {
19268            "description": "OK",
19269            "schema": {
19270              "$ref": "#/definitions/io.k8s.api.core.v1.Event"
19271            }
19272          },
19273          "201": {
19274            "description": "Created",
19275            "schema": {
19276              "$ref": "#/definitions/io.k8s.api.core.v1.Event"
19277            }
19278          },
19279          "401": {
19280            "description": "Unauthorized"
19281          }
19282        },
19283        "schemes": [
19284          "https"
19285        ],
19286        "tags": [
19287          "core_v1"
19288        ],
19289        "x-kubernetes-action": "patch",
19290        "x-kubernetes-group-version-kind": {
19291          "group": "",
19292          "kind": "Event",
19293          "version": "v1"
19294        }
19295      },
19296      "put": {
19297        "consumes": [
19298          "*/*"
19299        ],
19300        "description": "replace the specified Event",
19301        "operationId": "replaceCoreV1NamespacedEvent",
19302        "parameters": [
19303          {
19304            "in": "body",
19305            "name": "body",
19306            "required": true,
19307            "schema": {
19308              "$ref": "#/definitions/io.k8s.api.core.v1.Event"
19309            }
19310          },
19311          {
19312            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
19313            "in": "query",
19314            "name": "dryRun",
19315            "type": "string",
19316            "uniqueItems": true
19317          },
19318          {
19319            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
19320            "in": "query",
19321            "name": "fieldManager",
19322            "type": "string",
19323            "uniqueItems": true
19324          }
19325        ],
19326        "produces": [
19327          "application/json",
19328          "application/yaml",
19329          "application/vnd.kubernetes.protobuf"
19330        ],
19331        "responses": {
19332          "200": {
19333            "description": "OK",
19334            "schema": {
19335              "$ref": "#/definitions/io.k8s.api.core.v1.Event"
19336            }
19337          },
19338          "201": {
19339            "description": "Created",
19340            "schema": {
19341              "$ref": "#/definitions/io.k8s.api.core.v1.Event"
19342            }
19343          },
19344          "401": {
19345            "description": "Unauthorized"
19346          }
19347        },
19348        "schemes": [
19349          "https"
19350        ],
19351        "tags": [
19352          "core_v1"
19353        ],
19354        "x-kubernetes-action": "put",
19355        "x-kubernetes-group-version-kind": {
19356          "group": "",
19357          "kind": "Event",
19358          "version": "v1"
19359        }
19360      }
19361    },
19362    "/api/v1/namespaces/{namespace}/limitranges": {
19363      "delete": {
19364        "consumes": [
19365          "*/*"
19366        ],
19367        "description": "delete collection of LimitRange",
19368        "operationId": "deleteCoreV1CollectionNamespacedLimitRange",
19369        "parameters": [
19370          {
19371            "in": "body",
19372            "name": "body",
19373            "schema": {
19374              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
19375            }
19376          },
19377          {
19378            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
19379            "in": "query",
19380            "name": "continue",
19381            "type": "string",
19382            "uniqueItems": true
19383          },
19384          {
19385            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
19386            "in": "query",
19387            "name": "dryRun",
19388            "type": "string",
19389            "uniqueItems": true
19390          },
19391          {
19392            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
19393            "in": "query",
19394            "name": "fieldSelector",
19395            "type": "string",
19396            "uniqueItems": true
19397          },
19398          {
19399            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
19400            "in": "query",
19401            "name": "gracePeriodSeconds",
19402            "type": "integer",
19403            "uniqueItems": true
19404          },
19405          {
19406            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
19407            "in": "query",
19408            "name": "labelSelector",
19409            "type": "string",
19410            "uniqueItems": true
19411          },
19412          {
19413            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
19414            "in": "query",
19415            "name": "limit",
19416            "type": "integer",
19417            "uniqueItems": true
19418          },
19419          {
19420            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
19421            "in": "query",
19422            "name": "orphanDependents",
19423            "type": "boolean",
19424            "uniqueItems": true
19425          },
19426          {
19427            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
19428            "in": "query",
19429            "name": "propagationPolicy",
19430            "type": "string",
19431            "uniqueItems": true
19432          },
19433          {
19434            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
19435            "in": "query",
19436            "name": "resourceVersion",
19437            "type": "string",
19438            "uniqueItems": true
19439          },
19440          {
19441            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
19442            "in": "query",
19443            "name": "resourceVersionMatch",
19444            "type": "string",
19445            "uniqueItems": true
19446          },
19447          {
19448            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
19449            "in": "query",
19450            "name": "timeoutSeconds",
19451            "type": "integer",
19452            "uniqueItems": true
19453          }
19454        ],
19455        "produces": [
19456          "application/json",
19457          "application/yaml",
19458          "application/vnd.kubernetes.protobuf"
19459        ],
19460        "responses": {
19461          "200": {
19462            "description": "OK",
19463            "schema": {
19464              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
19465            }
19466          },
19467          "401": {
19468            "description": "Unauthorized"
19469          }
19470        },
19471        "schemes": [
19472          "https"
19473        ],
19474        "tags": [
19475          "core_v1"
19476        ],
19477        "x-kubernetes-action": "deletecollection",
19478        "x-kubernetes-group-version-kind": {
19479          "group": "",
19480          "kind": "LimitRange",
19481          "version": "v1"
19482        }
19483      },
19484      "get": {
19485        "consumes": [
19486          "*/*"
19487        ],
19488        "description": "list or watch objects of kind LimitRange",
19489        "operationId": "listCoreV1NamespacedLimitRange",
19490        "parameters": [
19491          {
19492            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
19493            "in": "query",
19494            "name": "allowWatchBookmarks",
19495            "type": "boolean",
19496            "uniqueItems": true
19497          },
19498          {
19499            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
19500            "in": "query",
19501            "name": "continue",
19502            "type": "string",
19503            "uniqueItems": true
19504          },
19505          {
19506            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
19507            "in": "query",
19508            "name": "fieldSelector",
19509            "type": "string",
19510            "uniqueItems": true
19511          },
19512          {
19513            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
19514            "in": "query",
19515            "name": "labelSelector",
19516            "type": "string",
19517            "uniqueItems": true
19518          },
19519          {
19520            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
19521            "in": "query",
19522            "name": "limit",
19523            "type": "integer",
19524            "uniqueItems": true
19525          },
19526          {
19527            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
19528            "in": "query",
19529            "name": "resourceVersion",
19530            "type": "string",
19531            "uniqueItems": true
19532          },
19533          {
19534            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
19535            "in": "query",
19536            "name": "resourceVersionMatch",
19537            "type": "string",
19538            "uniqueItems": true
19539          },
19540          {
19541            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
19542            "in": "query",
19543            "name": "timeoutSeconds",
19544            "type": "integer",
19545            "uniqueItems": true
19546          },
19547          {
19548            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
19549            "in": "query",
19550            "name": "watch",
19551            "type": "boolean",
19552            "uniqueItems": true
19553          }
19554        ],
19555        "produces": [
19556          "application/json",
19557          "application/yaml",
19558          "application/vnd.kubernetes.protobuf",
19559          "application/json;stream=watch",
19560          "application/vnd.kubernetes.protobuf;stream=watch"
19561        ],
19562        "responses": {
19563          "200": {
19564            "description": "OK",
19565            "schema": {
19566              "$ref": "#/definitions/io.k8s.api.core.v1.LimitRangeList"
19567            }
19568          },
19569          "401": {
19570            "description": "Unauthorized"
19571          }
19572        },
19573        "schemes": [
19574          "https"
19575        ],
19576        "tags": [
19577          "core_v1"
19578        ],
19579        "x-kubernetes-action": "list",
19580        "x-kubernetes-group-version-kind": {
19581          "group": "",
19582          "kind": "LimitRange",
19583          "version": "v1"
19584        }
19585      },
19586      "parameters": [
19587        {
19588          "description": "object name and auth scope, such as for teams and projects",
19589          "in": "path",
19590          "name": "namespace",
19591          "required": true,
19592          "type": "string",
19593          "uniqueItems": true
19594        },
19595        {
19596          "description": "If 'true', then the output is pretty printed.",
19597          "in": "query",
19598          "name": "pretty",
19599          "type": "string",
19600          "uniqueItems": true
19601        }
19602      ],
19603      "post": {
19604        "consumes": [
19605          "*/*"
19606        ],
19607        "description": "create a LimitRange",
19608        "operationId": "createCoreV1NamespacedLimitRange",
19609        "parameters": [
19610          {
19611            "in": "body",
19612            "name": "body",
19613            "required": true,
19614            "schema": {
19615              "$ref": "#/definitions/io.k8s.api.core.v1.LimitRange"
19616            }
19617          },
19618          {
19619            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
19620            "in": "query",
19621            "name": "dryRun",
19622            "type": "string",
19623            "uniqueItems": true
19624          },
19625          {
19626            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
19627            "in": "query",
19628            "name": "fieldManager",
19629            "type": "string",
19630            "uniqueItems": true
19631          }
19632        ],
19633        "produces": [
19634          "application/json",
19635          "application/yaml",
19636          "application/vnd.kubernetes.protobuf"
19637        ],
19638        "responses": {
19639          "200": {
19640            "description": "OK",
19641            "schema": {
19642              "$ref": "#/definitions/io.k8s.api.core.v1.LimitRange"
19643            }
19644          },
19645          "201": {
19646            "description": "Created",
19647            "schema": {
19648              "$ref": "#/definitions/io.k8s.api.core.v1.LimitRange"
19649            }
19650          },
19651          "202": {
19652            "description": "Accepted",
19653            "schema": {
19654              "$ref": "#/definitions/io.k8s.api.core.v1.LimitRange"
19655            }
19656          },
19657          "401": {
19658            "description": "Unauthorized"
19659          }
19660        },
19661        "schemes": [
19662          "https"
19663        ],
19664        "tags": [
19665          "core_v1"
19666        ],
19667        "x-kubernetes-action": "post",
19668        "x-kubernetes-group-version-kind": {
19669          "group": "",
19670          "kind": "LimitRange",
19671          "version": "v1"
19672        }
19673      }
19674    },
19675    "/api/v1/namespaces/{namespace}/limitranges/{name}": {
19676      "delete": {
19677        "consumes": [
19678          "*/*"
19679        ],
19680        "description": "delete a LimitRange",
19681        "operationId": "deleteCoreV1NamespacedLimitRange",
19682        "parameters": [
19683          {
19684            "in": "body",
19685            "name": "body",
19686            "schema": {
19687              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
19688            }
19689          },
19690          {
19691            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
19692            "in": "query",
19693            "name": "dryRun",
19694            "type": "string",
19695            "uniqueItems": true
19696          },
19697          {
19698            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
19699            "in": "query",
19700            "name": "gracePeriodSeconds",
19701            "type": "integer",
19702            "uniqueItems": true
19703          },
19704          {
19705            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
19706            "in": "query",
19707            "name": "orphanDependents",
19708            "type": "boolean",
19709            "uniqueItems": true
19710          },
19711          {
19712            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
19713            "in": "query",
19714            "name": "propagationPolicy",
19715            "type": "string",
19716            "uniqueItems": true
19717          }
19718        ],
19719        "produces": [
19720          "application/json",
19721          "application/yaml",
19722          "application/vnd.kubernetes.protobuf"
19723        ],
19724        "responses": {
19725          "200": {
19726            "description": "OK",
19727            "schema": {
19728              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
19729            }
19730          },
19731          "202": {
19732            "description": "Accepted",
19733            "schema": {
19734              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
19735            }
19736          },
19737          "401": {
19738            "description": "Unauthorized"
19739          }
19740        },
19741        "schemes": [
19742          "https"
19743        ],
19744        "tags": [
19745          "core_v1"
19746        ],
19747        "x-kubernetes-action": "delete",
19748        "x-kubernetes-group-version-kind": {
19749          "group": "",
19750          "kind": "LimitRange",
19751          "version": "v1"
19752        }
19753      },
19754      "get": {
19755        "consumes": [
19756          "*/*"
19757        ],
19758        "description": "read the specified LimitRange",
19759        "operationId": "readCoreV1NamespacedLimitRange",
19760        "produces": [
19761          "application/json",
19762          "application/yaml",
19763          "application/vnd.kubernetes.protobuf"
19764        ],
19765        "responses": {
19766          "200": {
19767            "description": "OK",
19768            "schema": {
19769              "$ref": "#/definitions/io.k8s.api.core.v1.LimitRange"
19770            }
19771          },
19772          "401": {
19773            "description": "Unauthorized"
19774          }
19775        },
19776        "schemes": [
19777          "https"
19778        ],
19779        "tags": [
19780          "core_v1"
19781        ],
19782        "x-kubernetes-action": "get",
19783        "x-kubernetes-group-version-kind": {
19784          "group": "",
19785          "kind": "LimitRange",
19786          "version": "v1"
19787        }
19788      },
19789      "parameters": [
19790        {
19791          "description": "name of the LimitRange",
19792          "in": "path",
19793          "name": "name",
19794          "required": true,
19795          "type": "string",
19796          "uniqueItems": true
19797        },
19798        {
19799          "description": "object name and auth scope, such as for teams and projects",
19800          "in": "path",
19801          "name": "namespace",
19802          "required": true,
19803          "type": "string",
19804          "uniqueItems": true
19805        },
19806        {
19807          "description": "If 'true', then the output is pretty printed.",
19808          "in": "query",
19809          "name": "pretty",
19810          "type": "string",
19811          "uniqueItems": true
19812        }
19813      ],
19814      "patch": {
19815        "consumes": [
19816          "application/json-patch+json",
19817          "application/merge-patch+json",
19818          "application/strategic-merge-patch+json",
19819          "application/apply-patch+yaml"
19820        ],
19821        "description": "partially update the specified LimitRange",
19822        "operationId": "patchCoreV1NamespacedLimitRange",
19823        "parameters": [
19824          {
19825            "in": "body",
19826            "name": "body",
19827            "required": true,
19828            "schema": {
19829              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
19830            }
19831          },
19832          {
19833            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
19834            "in": "query",
19835            "name": "dryRun",
19836            "type": "string",
19837            "uniqueItems": true
19838          },
19839          {
19840            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
19841            "in": "query",
19842            "name": "fieldManager",
19843            "type": "string",
19844            "uniqueItems": true
19845          },
19846          {
19847            "description": "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.",
19848            "in": "query",
19849            "name": "force",
19850            "type": "boolean",
19851            "uniqueItems": true
19852          }
19853        ],
19854        "produces": [
19855          "application/json",
19856          "application/yaml",
19857          "application/vnd.kubernetes.protobuf"
19858        ],
19859        "responses": {
19860          "200": {
19861            "description": "OK",
19862            "schema": {
19863              "$ref": "#/definitions/io.k8s.api.core.v1.LimitRange"
19864            }
19865          },
19866          "201": {
19867            "description": "Created",
19868            "schema": {
19869              "$ref": "#/definitions/io.k8s.api.core.v1.LimitRange"
19870            }
19871          },
19872          "401": {
19873            "description": "Unauthorized"
19874          }
19875        },
19876        "schemes": [
19877          "https"
19878        ],
19879        "tags": [
19880          "core_v1"
19881        ],
19882        "x-kubernetes-action": "patch",
19883        "x-kubernetes-group-version-kind": {
19884          "group": "",
19885          "kind": "LimitRange",
19886          "version": "v1"
19887        }
19888      },
19889      "put": {
19890        "consumes": [
19891          "*/*"
19892        ],
19893        "description": "replace the specified LimitRange",
19894        "operationId": "replaceCoreV1NamespacedLimitRange",
19895        "parameters": [
19896          {
19897            "in": "body",
19898            "name": "body",
19899            "required": true,
19900            "schema": {
19901              "$ref": "#/definitions/io.k8s.api.core.v1.LimitRange"
19902            }
19903          },
19904          {
19905            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
19906            "in": "query",
19907            "name": "dryRun",
19908            "type": "string",
19909            "uniqueItems": true
19910          },
19911          {
19912            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
19913            "in": "query",
19914            "name": "fieldManager",
19915            "type": "string",
19916            "uniqueItems": true
19917          }
19918        ],
19919        "produces": [
19920          "application/json",
19921          "application/yaml",
19922          "application/vnd.kubernetes.protobuf"
19923        ],
19924        "responses": {
19925          "200": {
19926            "description": "OK",
19927            "schema": {
19928              "$ref": "#/definitions/io.k8s.api.core.v1.LimitRange"
19929            }
19930          },
19931          "201": {
19932            "description": "Created",
19933            "schema": {
19934              "$ref": "#/definitions/io.k8s.api.core.v1.LimitRange"
19935            }
19936          },
19937          "401": {
19938            "description": "Unauthorized"
19939          }
19940        },
19941        "schemes": [
19942          "https"
19943        ],
19944        "tags": [
19945          "core_v1"
19946        ],
19947        "x-kubernetes-action": "put",
19948        "x-kubernetes-group-version-kind": {
19949          "group": "",
19950          "kind": "LimitRange",
19951          "version": "v1"
19952        }
19953      }
19954    },
19955    "/api/v1/namespaces/{namespace}/persistentvolumeclaims": {
19956      "delete": {
19957        "consumes": [
19958          "*/*"
19959        ],
19960        "description": "delete collection of PersistentVolumeClaim",
19961        "operationId": "deleteCoreV1CollectionNamespacedPersistentVolumeClaim",
19962        "parameters": [
19963          {
19964            "in": "body",
19965            "name": "body",
19966            "schema": {
19967              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
19968            }
19969          },
19970          {
19971            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
19972            "in": "query",
19973            "name": "continue",
19974            "type": "string",
19975            "uniqueItems": true
19976          },
19977          {
19978            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
19979            "in": "query",
19980            "name": "dryRun",
19981            "type": "string",
19982            "uniqueItems": true
19983          },
19984          {
19985            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
19986            "in": "query",
19987            "name": "fieldSelector",
19988            "type": "string",
19989            "uniqueItems": true
19990          },
19991          {
19992            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
19993            "in": "query",
19994            "name": "gracePeriodSeconds",
19995            "type": "integer",
19996            "uniqueItems": true
19997          },
19998          {
19999            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
20000            "in": "query",
20001            "name": "labelSelector",
20002            "type": "string",
20003            "uniqueItems": true
20004          },
20005          {
20006            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
20007            "in": "query",
20008            "name": "limit",
20009            "type": "integer",
20010            "uniqueItems": true
20011          },
20012          {
20013            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
20014            "in": "query",
20015            "name": "orphanDependents",
20016            "type": "boolean",
20017            "uniqueItems": true
20018          },
20019          {
20020            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
20021            "in": "query",
20022            "name": "propagationPolicy",
20023            "type": "string",
20024            "uniqueItems": true
20025          },
20026          {
20027            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
20028            "in": "query",
20029            "name": "resourceVersion",
20030            "type": "string",
20031            "uniqueItems": true
20032          },
20033          {
20034            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
20035            "in": "query",
20036            "name": "resourceVersionMatch",
20037            "type": "string",
20038            "uniqueItems": true
20039          },
20040          {
20041            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
20042            "in": "query",
20043            "name": "timeoutSeconds",
20044            "type": "integer",
20045            "uniqueItems": true
20046          }
20047        ],
20048        "produces": [
20049          "application/json",
20050          "application/yaml",
20051          "application/vnd.kubernetes.protobuf"
20052        ],
20053        "responses": {
20054          "200": {
20055            "description": "OK",
20056            "schema": {
20057              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
20058            }
20059          },
20060          "401": {
20061            "description": "Unauthorized"
20062          }
20063        },
20064        "schemes": [
20065          "https"
20066        ],
20067        "tags": [
20068          "core_v1"
20069        ],
20070        "x-kubernetes-action": "deletecollection",
20071        "x-kubernetes-group-version-kind": {
20072          "group": "",
20073          "kind": "PersistentVolumeClaim",
20074          "version": "v1"
20075        }
20076      },
20077      "get": {
20078        "consumes": [
20079          "*/*"
20080        ],
20081        "description": "list or watch objects of kind PersistentVolumeClaim",
20082        "operationId": "listCoreV1NamespacedPersistentVolumeClaim",
20083        "parameters": [
20084          {
20085            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
20086            "in": "query",
20087            "name": "allowWatchBookmarks",
20088            "type": "boolean",
20089            "uniqueItems": true
20090          },
20091          {
20092            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
20093            "in": "query",
20094            "name": "continue",
20095            "type": "string",
20096            "uniqueItems": true
20097          },
20098          {
20099            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
20100            "in": "query",
20101            "name": "fieldSelector",
20102            "type": "string",
20103            "uniqueItems": true
20104          },
20105          {
20106            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
20107            "in": "query",
20108            "name": "labelSelector",
20109            "type": "string",
20110            "uniqueItems": true
20111          },
20112          {
20113            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
20114            "in": "query",
20115            "name": "limit",
20116            "type": "integer",
20117            "uniqueItems": true
20118          },
20119          {
20120            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
20121            "in": "query",
20122            "name": "resourceVersion",
20123            "type": "string",
20124            "uniqueItems": true
20125          },
20126          {
20127            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
20128            "in": "query",
20129            "name": "resourceVersionMatch",
20130            "type": "string",
20131            "uniqueItems": true
20132          },
20133          {
20134            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
20135            "in": "query",
20136            "name": "timeoutSeconds",
20137            "type": "integer",
20138            "uniqueItems": true
20139          },
20140          {
20141            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
20142            "in": "query",
20143            "name": "watch",
20144            "type": "boolean",
20145            "uniqueItems": true
20146          }
20147        ],
20148        "produces": [
20149          "application/json",
20150          "application/yaml",
20151          "application/vnd.kubernetes.protobuf",
20152          "application/json;stream=watch",
20153          "application/vnd.kubernetes.protobuf;stream=watch"
20154        ],
20155        "responses": {
20156          "200": {
20157            "description": "OK",
20158            "schema": {
20159              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaimList"
20160            }
20161          },
20162          "401": {
20163            "description": "Unauthorized"
20164          }
20165        },
20166        "schemes": [
20167          "https"
20168        ],
20169        "tags": [
20170          "core_v1"
20171        ],
20172        "x-kubernetes-action": "list",
20173        "x-kubernetes-group-version-kind": {
20174          "group": "",
20175          "kind": "PersistentVolumeClaim",
20176          "version": "v1"
20177        }
20178      },
20179      "parameters": [
20180        {
20181          "description": "object name and auth scope, such as for teams and projects",
20182          "in": "path",
20183          "name": "namespace",
20184          "required": true,
20185          "type": "string",
20186          "uniqueItems": true
20187        },
20188        {
20189          "description": "If 'true', then the output is pretty printed.",
20190          "in": "query",
20191          "name": "pretty",
20192          "type": "string",
20193          "uniqueItems": true
20194        }
20195      ],
20196      "post": {
20197        "consumes": [
20198          "*/*"
20199        ],
20200        "description": "create a PersistentVolumeClaim",
20201        "operationId": "createCoreV1NamespacedPersistentVolumeClaim",
20202        "parameters": [
20203          {
20204            "in": "body",
20205            "name": "body",
20206            "required": true,
20207            "schema": {
20208              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaim"
20209            }
20210          },
20211          {
20212            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
20213            "in": "query",
20214            "name": "dryRun",
20215            "type": "string",
20216            "uniqueItems": true
20217          },
20218          {
20219            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
20220            "in": "query",
20221            "name": "fieldManager",
20222            "type": "string",
20223            "uniqueItems": true
20224          }
20225        ],
20226        "produces": [
20227          "application/json",
20228          "application/yaml",
20229          "application/vnd.kubernetes.protobuf"
20230        ],
20231        "responses": {
20232          "200": {
20233            "description": "OK",
20234            "schema": {
20235              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaim"
20236            }
20237          },
20238          "201": {
20239            "description": "Created",
20240            "schema": {
20241              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaim"
20242            }
20243          },
20244          "202": {
20245            "description": "Accepted",
20246            "schema": {
20247              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaim"
20248            }
20249          },
20250          "401": {
20251            "description": "Unauthorized"
20252          }
20253        },
20254        "schemes": [
20255          "https"
20256        ],
20257        "tags": [
20258          "core_v1"
20259        ],
20260        "x-kubernetes-action": "post",
20261        "x-kubernetes-group-version-kind": {
20262          "group": "",
20263          "kind": "PersistentVolumeClaim",
20264          "version": "v1"
20265        }
20266      }
20267    },
20268    "/api/v1/namespaces/{namespace}/persistentvolumeclaims/{name}": {
20269      "delete": {
20270        "consumes": [
20271          "*/*"
20272        ],
20273        "description": "delete a PersistentVolumeClaim",
20274        "operationId": "deleteCoreV1NamespacedPersistentVolumeClaim",
20275        "parameters": [
20276          {
20277            "in": "body",
20278            "name": "body",
20279            "schema": {
20280              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
20281            }
20282          },
20283          {
20284            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
20285            "in": "query",
20286            "name": "dryRun",
20287            "type": "string",
20288            "uniqueItems": true
20289          },
20290          {
20291            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
20292            "in": "query",
20293            "name": "gracePeriodSeconds",
20294            "type": "integer",
20295            "uniqueItems": true
20296          },
20297          {
20298            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
20299            "in": "query",
20300            "name": "orphanDependents",
20301            "type": "boolean",
20302            "uniqueItems": true
20303          },
20304          {
20305            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
20306            "in": "query",
20307            "name": "propagationPolicy",
20308            "type": "string",
20309            "uniqueItems": true
20310          }
20311        ],
20312        "produces": [
20313          "application/json",
20314          "application/yaml",
20315          "application/vnd.kubernetes.protobuf"
20316        ],
20317        "responses": {
20318          "200": {
20319            "description": "OK",
20320            "schema": {
20321              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaim"
20322            }
20323          },
20324          "202": {
20325            "description": "Accepted",
20326            "schema": {
20327              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaim"
20328            }
20329          },
20330          "401": {
20331            "description": "Unauthorized"
20332          }
20333        },
20334        "schemes": [
20335          "https"
20336        ],
20337        "tags": [
20338          "core_v1"
20339        ],
20340        "x-kubernetes-action": "delete",
20341        "x-kubernetes-group-version-kind": {
20342          "group": "",
20343          "kind": "PersistentVolumeClaim",
20344          "version": "v1"
20345        }
20346      },
20347      "get": {
20348        "consumes": [
20349          "*/*"
20350        ],
20351        "description": "read the specified PersistentVolumeClaim",
20352        "operationId": "readCoreV1NamespacedPersistentVolumeClaim",
20353        "produces": [
20354          "application/json",
20355          "application/yaml",
20356          "application/vnd.kubernetes.protobuf"
20357        ],
20358        "responses": {
20359          "200": {
20360            "description": "OK",
20361            "schema": {
20362              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaim"
20363            }
20364          },
20365          "401": {
20366            "description": "Unauthorized"
20367          }
20368        },
20369        "schemes": [
20370          "https"
20371        ],
20372        "tags": [
20373          "core_v1"
20374        ],
20375        "x-kubernetes-action": "get",
20376        "x-kubernetes-group-version-kind": {
20377          "group": "",
20378          "kind": "PersistentVolumeClaim",
20379          "version": "v1"
20380        }
20381      },
20382      "parameters": [
20383        {
20384          "description": "name of the PersistentVolumeClaim",
20385          "in": "path",
20386          "name": "name",
20387          "required": true,
20388          "type": "string",
20389          "uniqueItems": true
20390        },
20391        {
20392          "description": "object name and auth scope, such as for teams and projects",
20393          "in": "path",
20394          "name": "namespace",
20395          "required": true,
20396          "type": "string",
20397          "uniqueItems": true
20398        },
20399        {
20400          "description": "If 'true', then the output is pretty printed.",
20401          "in": "query",
20402          "name": "pretty",
20403          "type": "string",
20404          "uniqueItems": true
20405        }
20406      ],
20407      "patch": {
20408        "consumes": [
20409          "application/json-patch+json",
20410          "application/merge-patch+json",
20411          "application/strategic-merge-patch+json",
20412          "application/apply-patch+yaml"
20413        ],
20414        "description": "partially update the specified PersistentVolumeClaim",
20415        "operationId": "patchCoreV1NamespacedPersistentVolumeClaim",
20416        "parameters": [
20417          {
20418            "in": "body",
20419            "name": "body",
20420            "required": true,
20421            "schema": {
20422              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
20423            }
20424          },
20425          {
20426            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
20427            "in": "query",
20428            "name": "dryRun",
20429            "type": "string",
20430            "uniqueItems": true
20431          },
20432          {
20433            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
20434            "in": "query",
20435            "name": "fieldManager",
20436            "type": "string",
20437            "uniqueItems": true
20438          },
20439          {
20440            "description": "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.",
20441            "in": "query",
20442            "name": "force",
20443            "type": "boolean",
20444            "uniqueItems": true
20445          }
20446        ],
20447        "produces": [
20448          "application/json",
20449          "application/yaml",
20450          "application/vnd.kubernetes.protobuf"
20451        ],
20452        "responses": {
20453          "200": {
20454            "description": "OK",
20455            "schema": {
20456              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaim"
20457            }
20458          },
20459          "201": {
20460            "description": "Created",
20461            "schema": {
20462              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaim"
20463            }
20464          },
20465          "401": {
20466            "description": "Unauthorized"
20467          }
20468        },
20469        "schemes": [
20470          "https"
20471        ],
20472        "tags": [
20473          "core_v1"
20474        ],
20475        "x-kubernetes-action": "patch",
20476        "x-kubernetes-group-version-kind": {
20477          "group": "",
20478          "kind": "PersistentVolumeClaim",
20479          "version": "v1"
20480        }
20481      },
20482      "put": {
20483        "consumes": [
20484          "*/*"
20485        ],
20486        "description": "replace the specified PersistentVolumeClaim",
20487        "operationId": "replaceCoreV1NamespacedPersistentVolumeClaim",
20488        "parameters": [
20489          {
20490            "in": "body",
20491            "name": "body",
20492            "required": true,
20493            "schema": {
20494              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaim"
20495            }
20496          },
20497          {
20498            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
20499            "in": "query",
20500            "name": "dryRun",
20501            "type": "string",
20502            "uniqueItems": true
20503          },
20504          {
20505            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
20506            "in": "query",
20507            "name": "fieldManager",
20508            "type": "string",
20509            "uniqueItems": true
20510          }
20511        ],
20512        "produces": [
20513          "application/json",
20514          "application/yaml",
20515          "application/vnd.kubernetes.protobuf"
20516        ],
20517        "responses": {
20518          "200": {
20519            "description": "OK",
20520            "schema": {
20521              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaim"
20522            }
20523          },
20524          "201": {
20525            "description": "Created",
20526            "schema": {
20527              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaim"
20528            }
20529          },
20530          "401": {
20531            "description": "Unauthorized"
20532          }
20533        },
20534        "schemes": [
20535          "https"
20536        ],
20537        "tags": [
20538          "core_v1"
20539        ],
20540        "x-kubernetes-action": "put",
20541        "x-kubernetes-group-version-kind": {
20542          "group": "",
20543          "kind": "PersistentVolumeClaim",
20544          "version": "v1"
20545        }
20546      }
20547    },
20548    "/api/v1/namespaces/{namespace}/persistentvolumeclaims/{name}/status": {
20549      "get": {
20550        "consumes": [
20551          "*/*"
20552        ],
20553        "description": "read status of the specified PersistentVolumeClaim",
20554        "operationId": "readCoreV1NamespacedPersistentVolumeClaimStatus",
20555        "produces": [
20556          "application/json",
20557          "application/yaml",
20558          "application/vnd.kubernetes.protobuf"
20559        ],
20560        "responses": {
20561          "200": {
20562            "description": "OK",
20563            "schema": {
20564              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaim"
20565            }
20566          },
20567          "401": {
20568            "description": "Unauthorized"
20569          }
20570        },
20571        "schemes": [
20572          "https"
20573        ],
20574        "tags": [
20575          "core_v1"
20576        ],
20577        "x-kubernetes-action": "get",
20578        "x-kubernetes-group-version-kind": {
20579          "group": "",
20580          "kind": "PersistentVolumeClaim",
20581          "version": "v1"
20582        }
20583      },
20584      "parameters": [
20585        {
20586          "description": "name of the PersistentVolumeClaim",
20587          "in": "path",
20588          "name": "name",
20589          "required": true,
20590          "type": "string",
20591          "uniqueItems": true
20592        },
20593        {
20594          "description": "object name and auth scope, such as for teams and projects",
20595          "in": "path",
20596          "name": "namespace",
20597          "required": true,
20598          "type": "string",
20599          "uniqueItems": true
20600        },
20601        {
20602          "description": "If 'true', then the output is pretty printed.",
20603          "in": "query",
20604          "name": "pretty",
20605          "type": "string",
20606          "uniqueItems": true
20607        }
20608      ],
20609      "patch": {
20610        "consumes": [
20611          "application/json-patch+json",
20612          "application/merge-patch+json",
20613          "application/strategic-merge-patch+json",
20614          "application/apply-patch+yaml"
20615        ],
20616        "description": "partially update status of the specified PersistentVolumeClaim",
20617        "operationId": "patchCoreV1NamespacedPersistentVolumeClaimStatus",
20618        "parameters": [
20619          {
20620            "in": "body",
20621            "name": "body",
20622            "required": true,
20623            "schema": {
20624              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
20625            }
20626          },
20627          {
20628            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
20629            "in": "query",
20630            "name": "dryRun",
20631            "type": "string",
20632            "uniqueItems": true
20633          },
20634          {
20635            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
20636            "in": "query",
20637            "name": "fieldManager",
20638            "type": "string",
20639            "uniqueItems": true
20640          },
20641          {
20642            "description": "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.",
20643            "in": "query",
20644            "name": "force",
20645            "type": "boolean",
20646            "uniqueItems": true
20647          }
20648        ],
20649        "produces": [
20650          "application/json",
20651          "application/yaml",
20652          "application/vnd.kubernetes.protobuf"
20653        ],
20654        "responses": {
20655          "200": {
20656            "description": "OK",
20657            "schema": {
20658              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaim"
20659            }
20660          },
20661          "201": {
20662            "description": "Created",
20663            "schema": {
20664              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaim"
20665            }
20666          },
20667          "401": {
20668            "description": "Unauthorized"
20669          }
20670        },
20671        "schemes": [
20672          "https"
20673        ],
20674        "tags": [
20675          "core_v1"
20676        ],
20677        "x-kubernetes-action": "patch",
20678        "x-kubernetes-group-version-kind": {
20679          "group": "",
20680          "kind": "PersistentVolumeClaim",
20681          "version": "v1"
20682        }
20683      },
20684      "put": {
20685        "consumes": [
20686          "*/*"
20687        ],
20688        "description": "replace status of the specified PersistentVolumeClaim",
20689        "operationId": "replaceCoreV1NamespacedPersistentVolumeClaimStatus",
20690        "parameters": [
20691          {
20692            "in": "body",
20693            "name": "body",
20694            "required": true,
20695            "schema": {
20696              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaim"
20697            }
20698          },
20699          {
20700            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
20701            "in": "query",
20702            "name": "dryRun",
20703            "type": "string",
20704            "uniqueItems": true
20705          },
20706          {
20707            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
20708            "in": "query",
20709            "name": "fieldManager",
20710            "type": "string",
20711            "uniqueItems": true
20712          }
20713        ],
20714        "produces": [
20715          "application/json",
20716          "application/yaml",
20717          "application/vnd.kubernetes.protobuf"
20718        ],
20719        "responses": {
20720          "200": {
20721            "description": "OK",
20722            "schema": {
20723              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaim"
20724            }
20725          },
20726          "201": {
20727            "description": "Created",
20728            "schema": {
20729              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaim"
20730            }
20731          },
20732          "401": {
20733            "description": "Unauthorized"
20734          }
20735        },
20736        "schemes": [
20737          "https"
20738        ],
20739        "tags": [
20740          "core_v1"
20741        ],
20742        "x-kubernetes-action": "put",
20743        "x-kubernetes-group-version-kind": {
20744          "group": "",
20745          "kind": "PersistentVolumeClaim",
20746          "version": "v1"
20747        }
20748      }
20749    },
20750    "/api/v1/namespaces/{namespace}/pods": {
20751      "delete": {
20752        "consumes": [
20753          "*/*"
20754        ],
20755        "description": "delete collection of Pod",
20756        "operationId": "deleteCoreV1CollectionNamespacedPod",
20757        "parameters": [
20758          {
20759            "in": "body",
20760            "name": "body",
20761            "schema": {
20762              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
20763            }
20764          },
20765          {
20766            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
20767            "in": "query",
20768            "name": "continue",
20769            "type": "string",
20770            "uniqueItems": true
20771          },
20772          {
20773            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
20774            "in": "query",
20775            "name": "dryRun",
20776            "type": "string",
20777            "uniqueItems": true
20778          },
20779          {
20780            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
20781            "in": "query",
20782            "name": "fieldSelector",
20783            "type": "string",
20784            "uniqueItems": true
20785          },
20786          {
20787            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
20788            "in": "query",
20789            "name": "gracePeriodSeconds",
20790            "type": "integer",
20791            "uniqueItems": true
20792          },
20793          {
20794            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
20795            "in": "query",
20796            "name": "labelSelector",
20797            "type": "string",
20798            "uniqueItems": true
20799          },
20800          {
20801            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
20802            "in": "query",
20803            "name": "limit",
20804            "type": "integer",
20805            "uniqueItems": true
20806          },
20807          {
20808            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
20809            "in": "query",
20810            "name": "orphanDependents",
20811            "type": "boolean",
20812            "uniqueItems": true
20813          },
20814          {
20815            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
20816            "in": "query",
20817            "name": "propagationPolicy",
20818            "type": "string",
20819            "uniqueItems": true
20820          },
20821          {
20822            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
20823            "in": "query",
20824            "name": "resourceVersion",
20825            "type": "string",
20826            "uniqueItems": true
20827          },
20828          {
20829            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
20830            "in": "query",
20831            "name": "resourceVersionMatch",
20832            "type": "string",
20833            "uniqueItems": true
20834          },
20835          {
20836            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
20837            "in": "query",
20838            "name": "timeoutSeconds",
20839            "type": "integer",
20840            "uniqueItems": true
20841          }
20842        ],
20843        "produces": [
20844          "application/json",
20845          "application/yaml",
20846          "application/vnd.kubernetes.protobuf"
20847        ],
20848        "responses": {
20849          "200": {
20850            "description": "OK",
20851            "schema": {
20852              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
20853            }
20854          },
20855          "401": {
20856            "description": "Unauthorized"
20857          }
20858        },
20859        "schemes": [
20860          "https"
20861        ],
20862        "tags": [
20863          "core_v1"
20864        ],
20865        "x-kubernetes-action": "deletecollection",
20866        "x-kubernetes-group-version-kind": {
20867          "group": "",
20868          "kind": "Pod",
20869          "version": "v1"
20870        }
20871      },
20872      "get": {
20873        "consumes": [
20874          "*/*"
20875        ],
20876        "description": "list or watch objects of kind Pod",
20877        "operationId": "listCoreV1NamespacedPod",
20878        "parameters": [
20879          {
20880            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
20881            "in": "query",
20882            "name": "allowWatchBookmarks",
20883            "type": "boolean",
20884            "uniqueItems": true
20885          },
20886          {
20887            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
20888            "in": "query",
20889            "name": "continue",
20890            "type": "string",
20891            "uniqueItems": true
20892          },
20893          {
20894            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
20895            "in": "query",
20896            "name": "fieldSelector",
20897            "type": "string",
20898            "uniqueItems": true
20899          },
20900          {
20901            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
20902            "in": "query",
20903            "name": "labelSelector",
20904            "type": "string",
20905            "uniqueItems": true
20906          },
20907          {
20908            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
20909            "in": "query",
20910            "name": "limit",
20911            "type": "integer",
20912            "uniqueItems": true
20913          },
20914          {
20915            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
20916            "in": "query",
20917            "name": "resourceVersion",
20918            "type": "string",
20919            "uniqueItems": true
20920          },
20921          {
20922            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
20923            "in": "query",
20924            "name": "resourceVersionMatch",
20925            "type": "string",
20926            "uniqueItems": true
20927          },
20928          {
20929            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
20930            "in": "query",
20931            "name": "timeoutSeconds",
20932            "type": "integer",
20933            "uniqueItems": true
20934          },
20935          {
20936            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
20937            "in": "query",
20938            "name": "watch",
20939            "type": "boolean",
20940            "uniqueItems": true
20941          }
20942        ],
20943        "produces": [
20944          "application/json",
20945          "application/yaml",
20946          "application/vnd.kubernetes.protobuf",
20947          "application/json;stream=watch",
20948          "application/vnd.kubernetes.protobuf;stream=watch"
20949        ],
20950        "responses": {
20951          "200": {
20952            "description": "OK",
20953            "schema": {
20954              "$ref": "#/definitions/io.k8s.api.core.v1.PodList"
20955            }
20956          },
20957          "401": {
20958            "description": "Unauthorized"
20959          }
20960        },
20961        "schemes": [
20962          "https"
20963        ],
20964        "tags": [
20965          "core_v1"
20966        ],
20967        "x-kubernetes-action": "list",
20968        "x-kubernetes-group-version-kind": {
20969          "group": "",
20970          "kind": "Pod",
20971          "version": "v1"
20972        }
20973      },
20974      "parameters": [
20975        {
20976          "description": "object name and auth scope, such as for teams and projects",
20977          "in": "path",
20978          "name": "namespace",
20979          "required": true,
20980          "type": "string",
20981          "uniqueItems": true
20982        },
20983        {
20984          "description": "If 'true', then the output is pretty printed.",
20985          "in": "query",
20986          "name": "pretty",
20987          "type": "string",
20988          "uniqueItems": true
20989        }
20990      ],
20991      "post": {
20992        "consumes": [
20993          "*/*"
20994        ],
20995        "description": "create a Pod",
20996        "operationId": "createCoreV1NamespacedPod",
20997        "parameters": [
20998          {
20999            "in": "body",
21000            "name": "body",
21001            "required": true,
21002            "schema": {
21003              "$ref": "#/definitions/io.k8s.api.core.v1.Pod"
21004            }
21005          },
21006          {
21007            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
21008            "in": "query",
21009            "name": "dryRun",
21010            "type": "string",
21011            "uniqueItems": true
21012          },
21013          {
21014            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
21015            "in": "query",
21016            "name": "fieldManager",
21017            "type": "string",
21018            "uniqueItems": true
21019          }
21020        ],
21021        "produces": [
21022          "application/json",
21023          "application/yaml",
21024          "application/vnd.kubernetes.protobuf"
21025        ],
21026        "responses": {
21027          "200": {
21028            "description": "OK",
21029            "schema": {
21030              "$ref": "#/definitions/io.k8s.api.core.v1.Pod"
21031            }
21032          },
21033          "201": {
21034            "description": "Created",
21035            "schema": {
21036              "$ref": "#/definitions/io.k8s.api.core.v1.Pod"
21037            }
21038          },
21039          "202": {
21040            "description": "Accepted",
21041            "schema": {
21042              "$ref": "#/definitions/io.k8s.api.core.v1.Pod"
21043            }
21044          },
21045          "401": {
21046            "description": "Unauthorized"
21047          }
21048        },
21049        "schemes": [
21050          "https"
21051        ],
21052        "tags": [
21053          "core_v1"
21054        ],
21055        "x-kubernetes-action": "post",
21056        "x-kubernetes-group-version-kind": {
21057          "group": "",
21058          "kind": "Pod",
21059          "version": "v1"
21060        }
21061      }
21062    },
21063    "/api/v1/namespaces/{namespace}/pods/{name}": {
21064      "delete": {
21065        "consumes": [
21066          "*/*"
21067        ],
21068        "description": "delete a Pod",
21069        "operationId": "deleteCoreV1NamespacedPod",
21070        "parameters": [
21071          {
21072            "in": "body",
21073            "name": "body",
21074            "schema": {
21075              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
21076            }
21077          },
21078          {
21079            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
21080            "in": "query",
21081            "name": "dryRun",
21082            "type": "string",
21083            "uniqueItems": true
21084          },
21085          {
21086            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
21087            "in": "query",
21088            "name": "gracePeriodSeconds",
21089            "type": "integer",
21090            "uniqueItems": true
21091          },
21092          {
21093            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
21094            "in": "query",
21095            "name": "orphanDependents",
21096            "type": "boolean",
21097            "uniqueItems": true
21098          },
21099          {
21100            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
21101            "in": "query",
21102            "name": "propagationPolicy",
21103            "type": "string",
21104            "uniqueItems": true
21105          }
21106        ],
21107        "produces": [
21108          "application/json",
21109          "application/yaml",
21110          "application/vnd.kubernetes.protobuf"
21111        ],
21112        "responses": {
21113          "200": {
21114            "description": "OK",
21115            "schema": {
21116              "$ref": "#/definitions/io.k8s.api.core.v1.Pod"
21117            }
21118          },
21119          "202": {
21120            "description": "Accepted",
21121            "schema": {
21122              "$ref": "#/definitions/io.k8s.api.core.v1.Pod"
21123            }
21124          },
21125          "401": {
21126            "description": "Unauthorized"
21127          }
21128        },
21129        "schemes": [
21130          "https"
21131        ],
21132        "tags": [
21133          "core_v1"
21134        ],
21135        "x-kubernetes-action": "delete",
21136        "x-kubernetes-group-version-kind": {
21137          "group": "",
21138          "kind": "Pod",
21139          "version": "v1"
21140        }
21141      },
21142      "get": {
21143        "consumes": [
21144          "*/*"
21145        ],
21146        "description": "read the specified Pod",
21147        "operationId": "readCoreV1NamespacedPod",
21148        "produces": [
21149          "application/json",
21150          "application/yaml",
21151          "application/vnd.kubernetes.protobuf"
21152        ],
21153        "responses": {
21154          "200": {
21155            "description": "OK",
21156            "schema": {
21157              "$ref": "#/definitions/io.k8s.api.core.v1.Pod"
21158            }
21159          },
21160          "401": {
21161            "description": "Unauthorized"
21162          }
21163        },
21164        "schemes": [
21165          "https"
21166        ],
21167        "tags": [
21168          "core_v1"
21169        ],
21170        "x-kubernetes-action": "get",
21171        "x-kubernetes-group-version-kind": {
21172          "group": "",
21173          "kind": "Pod",
21174          "version": "v1"
21175        }
21176      },
21177      "parameters": [
21178        {
21179          "description": "name of the Pod",
21180          "in": "path",
21181          "name": "name",
21182          "required": true,
21183          "type": "string",
21184          "uniqueItems": true
21185        },
21186        {
21187          "description": "object name and auth scope, such as for teams and projects",
21188          "in": "path",
21189          "name": "namespace",
21190          "required": true,
21191          "type": "string",
21192          "uniqueItems": true
21193        },
21194        {
21195          "description": "If 'true', then the output is pretty printed.",
21196          "in": "query",
21197          "name": "pretty",
21198          "type": "string",
21199          "uniqueItems": true
21200        }
21201      ],
21202      "patch": {
21203        "consumes": [
21204          "application/json-patch+json",
21205          "application/merge-patch+json",
21206          "application/strategic-merge-patch+json",
21207          "application/apply-patch+yaml"
21208        ],
21209        "description": "partially update the specified Pod",
21210        "operationId": "patchCoreV1NamespacedPod",
21211        "parameters": [
21212          {
21213            "in": "body",
21214            "name": "body",
21215            "required": true,
21216            "schema": {
21217              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
21218            }
21219          },
21220          {
21221            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
21222            "in": "query",
21223            "name": "dryRun",
21224            "type": "string",
21225            "uniqueItems": true
21226          },
21227          {
21228            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
21229            "in": "query",
21230            "name": "fieldManager",
21231            "type": "string",
21232            "uniqueItems": true
21233          },
21234          {
21235            "description": "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.",
21236            "in": "query",
21237            "name": "force",
21238            "type": "boolean",
21239            "uniqueItems": true
21240          }
21241        ],
21242        "produces": [
21243          "application/json",
21244          "application/yaml",
21245          "application/vnd.kubernetes.protobuf"
21246        ],
21247        "responses": {
21248          "200": {
21249            "description": "OK",
21250            "schema": {
21251              "$ref": "#/definitions/io.k8s.api.core.v1.Pod"
21252            }
21253          },
21254          "201": {
21255            "description": "Created",
21256            "schema": {
21257              "$ref": "#/definitions/io.k8s.api.core.v1.Pod"
21258            }
21259          },
21260          "401": {
21261            "description": "Unauthorized"
21262          }
21263        },
21264        "schemes": [
21265          "https"
21266        ],
21267        "tags": [
21268          "core_v1"
21269        ],
21270        "x-kubernetes-action": "patch",
21271        "x-kubernetes-group-version-kind": {
21272          "group": "",
21273          "kind": "Pod",
21274          "version": "v1"
21275        }
21276      },
21277      "put": {
21278        "consumes": [
21279          "*/*"
21280        ],
21281        "description": "replace the specified Pod",
21282        "operationId": "replaceCoreV1NamespacedPod",
21283        "parameters": [
21284          {
21285            "in": "body",
21286            "name": "body",
21287            "required": true,
21288            "schema": {
21289              "$ref": "#/definitions/io.k8s.api.core.v1.Pod"
21290            }
21291          },
21292          {
21293            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
21294            "in": "query",
21295            "name": "dryRun",
21296            "type": "string",
21297            "uniqueItems": true
21298          },
21299          {
21300            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
21301            "in": "query",
21302            "name": "fieldManager",
21303            "type": "string",
21304            "uniqueItems": true
21305          }
21306        ],
21307        "produces": [
21308          "application/json",
21309          "application/yaml",
21310          "application/vnd.kubernetes.protobuf"
21311        ],
21312        "responses": {
21313          "200": {
21314            "description": "OK",
21315            "schema": {
21316              "$ref": "#/definitions/io.k8s.api.core.v1.Pod"
21317            }
21318          },
21319          "201": {
21320            "description": "Created",
21321            "schema": {
21322              "$ref": "#/definitions/io.k8s.api.core.v1.Pod"
21323            }
21324          },
21325          "401": {
21326            "description": "Unauthorized"
21327          }
21328        },
21329        "schemes": [
21330          "https"
21331        ],
21332        "tags": [
21333          "core_v1"
21334        ],
21335        "x-kubernetes-action": "put",
21336        "x-kubernetes-group-version-kind": {
21337          "group": "",
21338          "kind": "Pod",
21339          "version": "v1"
21340        }
21341      }
21342    },
21343    "/api/v1/namespaces/{namespace}/pods/{name}/attach": {
21344      "get": {
21345        "consumes": [
21346          "*/*"
21347        ],
21348        "description": "connect GET requests to attach of Pod",
21349        "operationId": "connectCoreV1GetNamespacedPodAttach",
21350        "produces": [
21351          "*/*"
21352        ],
21353        "responses": {
21354          "200": {
21355            "description": "OK",
21356            "schema": {
21357              "type": "string"
21358            }
21359          },
21360          "401": {
21361            "description": "Unauthorized"
21362          }
21363        },
21364        "schemes": [
21365          "https"
21366        ],
21367        "tags": [
21368          "core_v1"
21369        ],
21370        "x-kubernetes-action": "connect",
21371        "x-kubernetes-group-version-kind": {
21372          "group": "",
21373          "kind": "PodAttachOptions",
21374          "version": "v1"
21375        }
21376      },
21377      "parameters": [
21378        {
21379          "description": "The container in which to execute the command. Defaults to only container if there is only one container in the pod.",
21380          "in": "query",
21381          "name": "container",
21382          "type": "string",
21383          "uniqueItems": true
21384        },
21385        {
21386          "description": "name of the PodAttachOptions",
21387          "in": "path",
21388          "name": "name",
21389          "required": true,
21390          "type": "string",
21391          "uniqueItems": true
21392        },
21393        {
21394          "description": "object name and auth scope, such as for teams and projects",
21395          "in": "path",
21396          "name": "namespace",
21397          "required": true,
21398          "type": "string",
21399          "uniqueItems": true
21400        },
21401        {
21402          "description": "Stderr if true indicates that stderr is to be redirected for the attach call. Defaults to true.",
21403          "in": "query",
21404          "name": "stderr",
21405          "type": "boolean",
21406          "uniqueItems": true
21407        },
21408        {
21409          "description": "Stdin if true, redirects the standard input stream of the pod for this call. Defaults to false.",
21410          "in": "query",
21411          "name": "stdin",
21412          "type": "boolean",
21413          "uniqueItems": true
21414        },
21415        {
21416          "description": "Stdout if true indicates that stdout is to be redirected for the attach call. Defaults to true.",
21417          "in": "query",
21418          "name": "stdout",
21419          "type": "boolean",
21420          "uniqueItems": true
21421        },
21422        {
21423          "description": "TTY if true indicates that a tty will be allocated for the attach call. This is passed through the container runtime so the tty is allocated on the worker node by the container runtime. Defaults to false.",
21424          "in": "query",
21425          "name": "tty",
21426          "type": "boolean",
21427          "uniqueItems": true
21428        }
21429      ],
21430      "post": {
21431        "consumes": [
21432          "*/*"
21433        ],
21434        "description": "connect POST requests to attach of Pod",
21435        "operationId": "connectCoreV1PostNamespacedPodAttach",
21436        "produces": [
21437          "*/*"
21438        ],
21439        "responses": {
21440          "200": {
21441            "description": "OK",
21442            "schema": {
21443              "type": "string"
21444            }
21445          },
21446          "401": {
21447            "description": "Unauthorized"
21448          }
21449        },
21450        "schemes": [
21451          "https"
21452        ],
21453        "tags": [
21454          "core_v1"
21455        ],
21456        "x-kubernetes-action": "connect",
21457        "x-kubernetes-group-version-kind": {
21458          "group": "",
21459          "kind": "PodAttachOptions",
21460          "version": "v1"
21461        }
21462      }
21463    },
21464    "/api/v1/namespaces/{namespace}/pods/{name}/binding": {
21465      "parameters": [
21466        {
21467          "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
21468          "in": "query",
21469          "name": "dryRun",
21470          "type": "string",
21471          "uniqueItems": true
21472        },
21473        {
21474          "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
21475          "in": "query",
21476          "name": "fieldManager",
21477          "type": "string",
21478          "uniqueItems": true
21479        },
21480        {
21481          "description": "name of the Binding",
21482          "in": "path",
21483          "name": "name",
21484          "required": true,
21485          "type": "string",
21486          "uniqueItems": true
21487        },
21488        {
21489          "description": "object name and auth scope, such as for teams and projects",
21490          "in": "path",
21491          "name": "namespace",
21492          "required": true,
21493          "type": "string",
21494          "uniqueItems": true
21495        },
21496        {
21497          "description": "If 'true', then the output is pretty printed.",
21498          "in": "query",
21499          "name": "pretty",
21500          "type": "string",
21501          "uniqueItems": true
21502        }
21503      ],
21504      "post": {
21505        "consumes": [
21506          "*/*"
21507        ],
21508        "description": "create binding of a Pod",
21509        "operationId": "createCoreV1NamespacedPodBinding",
21510        "parameters": [
21511          {
21512            "in": "body",
21513            "name": "body",
21514            "required": true,
21515            "schema": {
21516              "$ref": "#/definitions/io.k8s.api.core.v1.Binding"
21517            }
21518          }
21519        ],
21520        "produces": [
21521          "application/json",
21522          "application/yaml",
21523          "application/vnd.kubernetes.protobuf"
21524        ],
21525        "responses": {
21526          "200": {
21527            "description": "OK",
21528            "schema": {
21529              "$ref": "#/definitions/io.k8s.api.core.v1.Binding"
21530            }
21531          },
21532          "201": {
21533            "description": "Created",
21534            "schema": {
21535              "$ref": "#/definitions/io.k8s.api.core.v1.Binding"
21536            }
21537          },
21538          "202": {
21539            "description": "Accepted",
21540            "schema": {
21541              "$ref": "#/definitions/io.k8s.api.core.v1.Binding"
21542            }
21543          },
21544          "401": {
21545            "description": "Unauthorized"
21546          }
21547        },
21548        "schemes": [
21549          "https"
21550        ],
21551        "tags": [
21552          "core_v1"
21553        ],
21554        "x-kubernetes-action": "post",
21555        "x-kubernetes-group-version-kind": {
21556          "group": "",
21557          "kind": "Binding",
21558          "version": "v1"
21559        }
21560      }
21561    },
21562    "/api/v1/namespaces/{namespace}/pods/{name}/ephemeralcontainers": {
21563      "get": {
21564        "consumes": [
21565          "*/*"
21566        ],
21567        "description": "read ephemeralcontainers of the specified Pod",
21568        "operationId": "readCoreV1NamespacedPodEphemeralcontainers",
21569        "produces": [
21570          "application/json",
21571          "application/yaml",
21572          "application/vnd.kubernetes.protobuf"
21573        ],
21574        "responses": {
21575          "200": {
21576            "description": "OK",
21577            "schema": {
21578              "$ref": "#/definitions/io.k8s.api.core.v1.Pod"
21579            }
21580          },
21581          "401": {
21582            "description": "Unauthorized"
21583          }
21584        },
21585        "schemes": [
21586          "https"
21587        ],
21588        "tags": [
21589          "core_v1"
21590        ],
21591        "x-kubernetes-action": "get",
21592        "x-kubernetes-group-version-kind": {
21593          "group": "",
21594          "kind": "Pod",
21595          "version": "v1"
21596        }
21597      },
21598      "parameters": [
21599        {
21600          "description": "name of the Pod",
21601          "in": "path",
21602          "name": "name",
21603          "required": true,
21604          "type": "string",
21605          "uniqueItems": true
21606        },
21607        {
21608          "description": "object name and auth scope, such as for teams and projects",
21609          "in": "path",
21610          "name": "namespace",
21611          "required": true,
21612          "type": "string",
21613          "uniqueItems": true
21614        },
21615        {
21616          "description": "If 'true', then the output is pretty printed.",
21617          "in": "query",
21618          "name": "pretty",
21619          "type": "string",
21620          "uniqueItems": true
21621        }
21622      ],
21623      "patch": {
21624        "consumes": [
21625          "application/json-patch+json",
21626          "application/merge-patch+json",
21627          "application/strategic-merge-patch+json",
21628          "application/apply-patch+yaml"
21629        ],
21630        "description": "partially update ephemeralcontainers of the specified Pod",
21631        "operationId": "patchCoreV1NamespacedPodEphemeralcontainers",
21632        "parameters": [
21633          {
21634            "in": "body",
21635            "name": "body",
21636            "required": true,
21637            "schema": {
21638              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
21639            }
21640          },
21641          {
21642            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
21643            "in": "query",
21644            "name": "dryRun",
21645            "type": "string",
21646            "uniqueItems": true
21647          },
21648          {
21649            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
21650            "in": "query",
21651            "name": "fieldManager",
21652            "type": "string",
21653            "uniqueItems": true
21654          },
21655          {
21656            "description": "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.",
21657            "in": "query",
21658            "name": "force",
21659            "type": "boolean",
21660            "uniqueItems": true
21661          }
21662        ],
21663        "produces": [
21664          "application/json",
21665          "application/yaml",
21666          "application/vnd.kubernetes.protobuf"
21667        ],
21668        "responses": {
21669          "200": {
21670            "description": "OK",
21671            "schema": {
21672              "$ref": "#/definitions/io.k8s.api.core.v1.Pod"
21673            }
21674          },
21675          "201": {
21676            "description": "Created",
21677            "schema": {
21678              "$ref": "#/definitions/io.k8s.api.core.v1.Pod"
21679            }
21680          },
21681          "401": {
21682            "description": "Unauthorized"
21683          }
21684        },
21685        "schemes": [
21686          "https"
21687        ],
21688        "tags": [
21689          "core_v1"
21690        ],
21691        "x-kubernetes-action": "patch",
21692        "x-kubernetes-group-version-kind": {
21693          "group": "",
21694          "kind": "Pod",
21695          "version": "v1"
21696        }
21697      },
21698      "put": {
21699        "consumes": [
21700          "*/*"
21701        ],
21702        "description": "replace ephemeralcontainers of the specified Pod",
21703        "operationId": "replaceCoreV1NamespacedPodEphemeralcontainers",
21704        "parameters": [
21705          {
21706            "in": "body",
21707            "name": "body",
21708            "required": true,
21709            "schema": {
21710              "$ref": "#/definitions/io.k8s.api.core.v1.Pod"
21711            }
21712          },
21713          {
21714            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
21715            "in": "query",
21716            "name": "dryRun",
21717            "type": "string",
21718            "uniqueItems": true
21719          },
21720          {
21721            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
21722            "in": "query",
21723            "name": "fieldManager",
21724            "type": "string",
21725            "uniqueItems": true
21726          }
21727        ],
21728        "produces": [
21729          "application/json",
21730          "application/yaml",
21731          "application/vnd.kubernetes.protobuf"
21732        ],
21733        "responses": {
21734          "200": {
21735            "description": "OK",
21736            "schema": {
21737              "$ref": "#/definitions/io.k8s.api.core.v1.Pod"
21738            }
21739          },
21740          "201": {
21741            "description": "Created",
21742            "schema": {
21743              "$ref": "#/definitions/io.k8s.api.core.v1.Pod"
21744            }
21745          },
21746          "401": {
21747            "description": "Unauthorized"
21748          }
21749        },
21750        "schemes": [
21751          "https"
21752        ],
21753        "tags": [
21754          "core_v1"
21755        ],
21756        "x-kubernetes-action": "put",
21757        "x-kubernetes-group-version-kind": {
21758          "group": "",
21759          "kind": "Pod",
21760          "version": "v1"
21761        }
21762      }
21763    },
21764    "/api/v1/namespaces/{namespace}/pods/{name}/eviction": {
21765      "parameters": [
21766        {
21767          "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
21768          "in": "query",
21769          "name": "dryRun",
21770          "type": "string",
21771          "uniqueItems": true
21772        },
21773        {
21774          "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
21775          "in": "query",
21776          "name": "fieldManager",
21777          "type": "string",
21778          "uniqueItems": true
21779        },
21780        {
21781          "description": "name of the Eviction",
21782          "in": "path",
21783          "name": "name",
21784          "required": true,
21785          "type": "string",
21786          "uniqueItems": true
21787        },
21788        {
21789          "description": "object name and auth scope, such as for teams and projects",
21790          "in": "path",
21791          "name": "namespace",
21792          "required": true,
21793          "type": "string",
21794          "uniqueItems": true
21795        },
21796        {
21797          "description": "If 'true', then the output is pretty printed.",
21798          "in": "query",
21799          "name": "pretty",
21800          "type": "string",
21801          "uniqueItems": true
21802        }
21803      ],
21804      "post": {
21805        "consumes": [
21806          "*/*"
21807        ],
21808        "description": "create eviction of a Pod",
21809        "operationId": "createCoreV1NamespacedPodEviction",
21810        "parameters": [
21811          {
21812            "in": "body",
21813            "name": "body",
21814            "required": true,
21815            "schema": {
21816              "$ref": "#/definitions/io.k8s.api.policy.v1.Eviction"
21817            }
21818          }
21819        ],
21820        "produces": [
21821          "application/json",
21822          "application/yaml",
21823          "application/vnd.kubernetes.protobuf"
21824        ],
21825        "responses": {
21826          "200": {
21827            "description": "OK",
21828            "schema": {
21829              "$ref": "#/definitions/io.k8s.api.policy.v1.Eviction"
21830            }
21831          },
21832          "201": {
21833            "description": "Created",
21834            "schema": {
21835              "$ref": "#/definitions/io.k8s.api.policy.v1.Eviction"
21836            }
21837          },
21838          "202": {
21839            "description": "Accepted",
21840            "schema": {
21841              "$ref": "#/definitions/io.k8s.api.policy.v1.Eviction"
21842            }
21843          },
21844          "401": {
21845            "description": "Unauthorized"
21846          }
21847        },
21848        "schemes": [
21849          "https"
21850        ],
21851        "tags": [
21852          "core_v1"
21853        ],
21854        "x-kubernetes-action": "post",
21855        "x-kubernetes-group-version-kind": {
21856          "group": "policy",
21857          "kind": "Eviction",
21858          "version": "v1"
21859        }
21860      }
21861    },
21862    "/api/v1/namespaces/{namespace}/pods/{name}/exec": {
21863      "get": {
21864        "consumes": [
21865          "*/*"
21866        ],
21867        "description": "connect GET requests to exec of Pod",
21868        "operationId": "connectCoreV1GetNamespacedPodExec",
21869        "produces": [
21870          "*/*"
21871        ],
21872        "responses": {
21873          "200": {
21874            "description": "OK",
21875            "schema": {
21876              "type": "string"
21877            }
21878          },
21879          "401": {
21880            "description": "Unauthorized"
21881          }
21882        },
21883        "schemes": [
21884          "https"
21885        ],
21886        "tags": [
21887          "core_v1"
21888        ],
21889        "x-kubernetes-action": "connect",
21890        "x-kubernetes-group-version-kind": {
21891          "group": "",
21892          "kind": "PodExecOptions",
21893          "version": "v1"
21894        }
21895      },
21896      "parameters": [
21897        {
21898          "description": "Command is the remote command to execute. argv array. Not executed within a shell.",
21899          "in": "query",
21900          "name": "command",
21901          "type": "string",
21902          "uniqueItems": true
21903        },
21904        {
21905          "description": "Container in which to execute the command. Defaults to only container if there is only one container in the pod.",
21906          "in": "query",
21907          "name": "container",
21908          "type": "string",
21909          "uniqueItems": true
21910        },
21911        {
21912          "description": "name of the PodExecOptions",
21913          "in": "path",
21914          "name": "name",
21915          "required": true,
21916          "type": "string",
21917          "uniqueItems": true
21918        },
21919        {
21920          "description": "object name and auth scope, such as for teams and projects",
21921          "in": "path",
21922          "name": "namespace",
21923          "required": true,
21924          "type": "string",
21925          "uniqueItems": true
21926        },
21927        {
21928          "description": "Redirect the standard error stream of the pod for this call. Defaults to true.",
21929          "in": "query",
21930          "name": "stderr",
21931          "type": "boolean",
21932          "uniqueItems": true
21933        },
21934        {
21935          "description": "Redirect the standard input stream of the pod for this call. Defaults to false.",
21936          "in": "query",
21937          "name": "stdin",
21938          "type": "boolean",
21939          "uniqueItems": true
21940        },
21941        {
21942          "description": "Redirect the standard output stream of the pod for this call. Defaults to true.",
21943          "in": "query",
21944          "name": "stdout",
21945          "type": "boolean",
21946          "uniqueItems": true
21947        },
21948        {
21949          "description": "TTY if true indicates that a tty will be allocated for the exec call. Defaults to false.",
21950          "in": "query",
21951          "name": "tty",
21952          "type": "boolean",
21953          "uniqueItems": true
21954        }
21955      ],
21956      "post": {
21957        "consumes": [
21958          "*/*"
21959        ],
21960        "description": "connect POST requests to exec of Pod",
21961        "operationId": "connectCoreV1PostNamespacedPodExec",
21962        "produces": [
21963          "*/*"
21964        ],
21965        "responses": {
21966          "200": {
21967            "description": "OK",
21968            "schema": {
21969              "type": "string"
21970            }
21971          },
21972          "401": {
21973            "description": "Unauthorized"
21974          }
21975        },
21976        "schemes": [
21977          "https"
21978        ],
21979        "tags": [
21980          "core_v1"
21981        ],
21982        "x-kubernetes-action": "connect",
21983        "x-kubernetes-group-version-kind": {
21984          "group": "",
21985          "kind": "PodExecOptions",
21986          "version": "v1"
21987        }
21988      }
21989    },
21990    "/api/v1/namespaces/{namespace}/pods/{name}/log": {
21991      "get": {
21992        "consumes": [
21993          "*/*"
21994        ],
21995        "description": "read log of the specified Pod",
21996        "operationId": "readCoreV1NamespacedPodLog",
21997        "produces": [
21998          "text/plain",
21999          "application/json",
22000          "application/yaml",
22001          "application/vnd.kubernetes.protobuf"
22002        ],
22003        "responses": {
22004          "200": {
22005            "description": "OK",
22006            "schema": {
22007              "type": "string"
22008            }
22009          },
22010          "401": {
22011            "description": "Unauthorized"
22012          }
22013        },
22014        "schemes": [
22015          "https"
22016        ],
22017        "tags": [
22018          "core_v1"
22019        ],
22020        "x-kubernetes-action": "get",
22021        "x-kubernetes-group-version-kind": {
22022          "group": "",
22023          "kind": "Pod",
22024          "version": "v1"
22025        }
22026      },
22027      "parameters": [
22028        {
22029          "description": "The container for which to stream logs. Defaults to only container if there is one container in the pod.",
22030          "in": "query",
22031          "name": "container",
22032          "type": "string",
22033          "uniqueItems": true
22034        },
22035        {
22036          "description": "Follow the log stream of the pod. Defaults to false.",
22037          "in": "query",
22038          "name": "follow",
22039          "type": "boolean",
22040          "uniqueItems": true
22041        },
22042        {
22043          "description": "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).",
22044          "in": "query",
22045          "name": "insecureSkipTLSVerifyBackend",
22046          "type": "boolean",
22047          "uniqueItems": true
22048        },
22049        {
22050          "description": "If set, the number of bytes to read from the server before terminating the log output. This may not display a complete final line of logging, and may return slightly more or slightly less than the specified limit.",
22051          "in": "query",
22052          "name": "limitBytes",
22053          "type": "integer",
22054          "uniqueItems": true
22055        },
22056        {
22057          "description": "name of the Pod",
22058          "in": "path",
22059          "name": "name",
22060          "required": true,
22061          "type": "string",
22062          "uniqueItems": true
22063        },
22064        {
22065          "description": "object name and auth scope, such as for teams and projects",
22066          "in": "path",
22067          "name": "namespace",
22068          "required": true,
22069          "type": "string",
22070          "uniqueItems": true
22071        },
22072        {
22073          "description": "If 'true', then the output is pretty printed.",
22074          "in": "query",
22075          "name": "pretty",
22076          "type": "string",
22077          "uniqueItems": true
22078        },
22079        {
22080          "description": "Return previous terminated container logs. Defaults to false.",
22081          "in": "query",
22082          "name": "previous",
22083          "type": "boolean",
22084          "uniqueItems": true
22085        },
22086        {
22087          "description": "A relative time in seconds before the current time from which to show logs. If this value precedes the time a pod was started, only logs since the pod start will be returned. If this value is in the future, no logs will be returned. Only one of sinceSeconds or sinceTime may be specified.",
22088          "in": "query",
22089          "name": "sinceSeconds",
22090          "type": "integer",
22091          "uniqueItems": true
22092        },
22093        {
22094          "description": "If set, the number of lines from the end of the logs to show. If not specified, logs are shown from the creation of the container or sinceSeconds or sinceTime",
22095          "in": "query",
22096          "name": "tailLines",
22097          "type": "integer",
22098          "uniqueItems": true
22099        },
22100        {
22101          "description": "If true, add an RFC3339 or RFC3339Nano timestamp at the beginning of every line of log output. Defaults to false.",
22102          "in": "query",
22103          "name": "timestamps",
22104          "type": "boolean",
22105          "uniqueItems": true
22106        }
22107      ]
22108    },
22109    "/api/v1/namespaces/{namespace}/pods/{name}/portforward": {
22110      "get": {
22111        "consumes": [
22112          "*/*"
22113        ],
22114        "description": "connect GET requests to portforward of Pod",
22115        "operationId": "connectCoreV1GetNamespacedPodPortforward",
22116        "produces": [
22117          "*/*"
22118        ],
22119        "responses": {
22120          "200": {
22121            "description": "OK",
22122            "schema": {
22123              "type": "string"
22124            }
22125          },
22126          "401": {
22127            "description": "Unauthorized"
22128          }
22129        },
22130        "schemes": [
22131          "https"
22132        ],
22133        "tags": [
22134          "core_v1"
22135        ],
22136        "x-kubernetes-action": "connect",
22137        "x-kubernetes-group-version-kind": {
22138          "group": "",
22139          "kind": "PodPortForwardOptions",
22140          "version": "v1"
22141        }
22142      },
22143      "parameters": [
22144        {
22145          "description": "name of the PodPortForwardOptions",
22146          "in": "path",
22147          "name": "name",
22148          "required": true,
22149          "type": "string",
22150          "uniqueItems": true
22151        },
22152        {
22153          "description": "object name and auth scope, such as for teams and projects",
22154          "in": "path",
22155          "name": "namespace",
22156          "required": true,
22157          "type": "string",
22158          "uniqueItems": true
22159        },
22160        {
22161          "description": "List of ports to forward Required when using WebSockets",
22162          "in": "query",
22163          "name": "ports",
22164          "type": "integer",
22165          "uniqueItems": true
22166        }
22167      ],
22168      "post": {
22169        "consumes": [
22170          "*/*"
22171        ],
22172        "description": "connect POST requests to portforward of Pod",
22173        "operationId": "connectCoreV1PostNamespacedPodPortforward",
22174        "produces": [
22175          "*/*"
22176        ],
22177        "responses": {
22178          "200": {
22179            "description": "OK",
22180            "schema": {
22181              "type": "string"
22182            }
22183          },
22184          "401": {
22185            "description": "Unauthorized"
22186          }
22187        },
22188        "schemes": [
22189          "https"
22190        ],
22191        "tags": [
22192          "core_v1"
22193        ],
22194        "x-kubernetes-action": "connect",
22195        "x-kubernetes-group-version-kind": {
22196          "group": "",
22197          "kind": "PodPortForwardOptions",
22198          "version": "v1"
22199        }
22200      }
22201    },
22202    "/api/v1/namespaces/{namespace}/pods/{name}/proxy": {
22203      "delete": {
22204        "consumes": [
22205          "*/*"
22206        ],
22207        "description": "connect DELETE requests to proxy of Pod",
22208        "operationId": "connectCoreV1DeleteNamespacedPodProxy",
22209        "produces": [
22210          "*/*"
22211        ],
22212        "responses": {
22213          "200": {
22214            "description": "OK",
22215            "schema": {
22216              "type": "string"
22217            }
22218          },
22219          "401": {
22220            "description": "Unauthorized"
22221          }
22222        },
22223        "schemes": [
22224          "https"
22225        ],
22226        "tags": [
22227          "core_v1"
22228        ],
22229        "x-kubernetes-action": "connect",
22230        "x-kubernetes-group-version-kind": {
22231          "group": "",
22232          "kind": "PodProxyOptions",
22233          "version": "v1"
22234        }
22235      },
22236      "get": {
22237        "consumes": [
22238          "*/*"
22239        ],
22240        "description": "connect GET requests to proxy of Pod",
22241        "operationId": "connectCoreV1GetNamespacedPodProxy",
22242        "produces": [
22243          "*/*"
22244        ],
22245        "responses": {
22246          "200": {
22247            "description": "OK",
22248            "schema": {
22249              "type": "string"
22250            }
22251          },
22252          "401": {
22253            "description": "Unauthorized"
22254          }
22255        },
22256        "schemes": [
22257          "https"
22258        ],
22259        "tags": [
22260          "core_v1"
22261        ],
22262        "x-kubernetes-action": "connect",
22263        "x-kubernetes-group-version-kind": {
22264          "group": "",
22265          "kind": "PodProxyOptions",
22266          "version": "v1"
22267        }
22268      },
22269      "head": {
22270        "consumes": [
22271          "*/*"
22272        ],
22273        "description": "connect HEAD requests to proxy of Pod",
22274        "operationId": "connectCoreV1HeadNamespacedPodProxy",
22275        "produces": [
22276          "*/*"
22277        ],
22278        "responses": {
22279          "200": {
22280            "description": "OK",
22281            "schema": {
22282              "type": "string"
22283            }
22284          },
22285          "401": {
22286            "description": "Unauthorized"
22287          }
22288        },
22289        "schemes": [
22290          "https"
22291        ],
22292        "tags": [
22293          "core_v1"
22294        ],
22295        "x-kubernetes-action": "connect",
22296        "x-kubernetes-group-version-kind": {
22297          "group": "",
22298          "kind": "PodProxyOptions",
22299          "version": "v1"
22300        }
22301      },
22302      "options": {
22303        "consumes": [
22304          "*/*"
22305        ],
22306        "description": "connect OPTIONS requests to proxy of Pod",
22307        "operationId": "connectCoreV1OptionsNamespacedPodProxy",
22308        "produces": [
22309          "*/*"
22310        ],
22311        "responses": {
22312          "200": {
22313            "description": "OK",
22314            "schema": {
22315              "type": "string"
22316            }
22317          },
22318          "401": {
22319            "description": "Unauthorized"
22320          }
22321        },
22322        "schemes": [
22323          "https"
22324        ],
22325        "tags": [
22326          "core_v1"
22327        ],
22328        "x-kubernetes-action": "connect",
22329        "x-kubernetes-group-version-kind": {
22330          "group": "",
22331          "kind": "PodProxyOptions",
22332          "version": "v1"
22333        }
22334      },
22335      "parameters": [
22336        {
22337          "description": "name of the PodProxyOptions",
22338          "in": "path",
22339          "name": "name",
22340          "required": true,
22341          "type": "string",
22342          "uniqueItems": true
22343        },
22344        {
22345          "description": "object name and auth scope, such as for teams and projects",
22346          "in": "path",
22347          "name": "namespace",
22348          "required": true,
22349          "type": "string",
22350          "uniqueItems": true
22351        },
22352        {
22353          "description": "Path is the URL path to use for the current proxy request to pod.",
22354          "in": "query",
22355          "name": "path",
22356          "type": "string",
22357          "uniqueItems": true
22358        }
22359      ],
22360      "patch": {
22361        "consumes": [
22362          "*/*"
22363        ],
22364        "description": "connect PATCH requests to proxy of Pod",
22365        "operationId": "connectCoreV1PatchNamespacedPodProxy",
22366        "produces": [
22367          "*/*"
22368        ],
22369        "responses": {
22370          "200": {
22371            "description": "OK",
22372            "schema": {
22373              "type": "string"
22374            }
22375          },
22376          "401": {
22377            "description": "Unauthorized"
22378          }
22379        },
22380        "schemes": [
22381          "https"
22382        ],
22383        "tags": [
22384          "core_v1"
22385        ],
22386        "x-kubernetes-action": "connect",
22387        "x-kubernetes-group-version-kind": {
22388          "group": "",
22389          "kind": "PodProxyOptions",
22390          "version": "v1"
22391        }
22392      },
22393      "post": {
22394        "consumes": [
22395          "*/*"
22396        ],
22397        "description": "connect POST requests to proxy of Pod",
22398        "operationId": "connectCoreV1PostNamespacedPodProxy",
22399        "produces": [
22400          "*/*"
22401        ],
22402        "responses": {
22403          "200": {
22404            "description": "OK",
22405            "schema": {
22406              "type": "string"
22407            }
22408          },
22409          "401": {
22410            "description": "Unauthorized"
22411          }
22412        },
22413        "schemes": [
22414          "https"
22415        ],
22416        "tags": [
22417          "core_v1"
22418        ],
22419        "x-kubernetes-action": "connect",
22420        "x-kubernetes-group-version-kind": {
22421          "group": "",
22422          "kind": "PodProxyOptions",
22423          "version": "v1"
22424        }
22425      },
22426      "put": {
22427        "consumes": [
22428          "*/*"
22429        ],
22430        "description": "connect PUT requests to proxy of Pod",
22431        "operationId": "connectCoreV1PutNamespacedPodProxy",
22432        "produces": [
22433          "*/*"
22434        ],
22435        "responses": {
22436          "200": {
22437            "description": "OK",
22438            "schema": {
22439              "type": "string"
22440            }
22441          },
22442          "401": {
22443            "description": "Unauthorized"
22444          }
22445        },
22446        "schemes": [
22447          "https"
22448        ],
22449        "tags": [
22450          "core_v1"
22451        ],
22452        "x-kubernetes-action": "connect",
22453        "x-kubernetes-group-version-kind": {
22454          "group": "",
22455          "kind": "PodProxyOptions",
22456          "version": "v1"
22457        }
22458      }
22459    },
22460    "/api/v1/namespaces/{namespace}/pods/{name}/proxy/{path}": {
22461      "delete": {
22462        "consumes": [
22463          "*/*"
22464        ],
22465        "description": "connect DELETE requests to proxy of Pod",
22466        "operationId": "connectCoreV1DeleteNamespacedPodProxyWithPath",
22467        "produces": [
22468          "*/*"
22469        ],
22470        "responses": {
22471          "200": {
22472            "description": "OK",
22473            "schema": {
22474              "type": "string"
22475            }
22476          },
22477          "401": {
22478            "description": "Unauthorized"
22479          }
22480        },
22481        "schemes": [
22482          "https"
22483        ],
22484        "tags": [
22485          "core_v1"
22486        ],
22487        "x-kubernetes-action": "connect",
22488        "x-kubernetes-group-version-kind": {
22489          "group": "",
22490          "kind": "PodProxyOptions",
22491          "version": "v1"
22492        }
22493      },
22494      "get": {
22495        "consumes": [
22496          "*/*"
22497        ],
22498        "description": "connect GET requests to proxy of Pod",
22499        "operationId": "connectCoreV1GetNamespacedPodProxyWithPath",
22500        "produces": [
22501          "*/*"
22502        ],
22503        "responses": {
22504          "200": {
22505            "description": "OK",
22506            "schema": {
22507              "type": "string"
22508            }
22509          },
22510          "401": {
22511            "description": "Unauthorized"
22512          }
22513        },
22514        "schemes": [
22515          "https"
22516        ],
22517        "tags": [
22518          "core_v1"
22519        ],
22520        "x-kubernetes-action": "connect",
22521        "x-kubernetes-group-version-kind": {
22522          "group": "",
22523          "kind": "PodProxyOptions",
22524          "version": "v1"
22525        }
22526      },
22527      "head": {
22528        "consumes": [
22529          "*/*"
22530        ],
22531        "description": "connect HEAD requests to proxy of Pod",
22532        "operationId": "connectCoreV1HeadNamespacedPodProxyWithPath",
22533        "produces": [
22534          "*/*"
22535        ],
22536        "responses": {
22537          "200": {
22538            "description": "OK",
22539            "schema": {
22540              "type": "string"
22541            }
22542          },
22543          "401": {
22544            "description": "Unauthorized"
22545          }
22546        },
22547        "schemes": [
22548          "https"
22549        ],
22550        "tags": [
22551          "core_v1"
22552        ],
22553        "x-kubernetes-action": "connect",
22554        "x-kubernetes-group-version-kind": {
22555          "group": "",
22556          "kind": "PodProxyOptions",
22557          "version": "v1"
22558        }
22559      },
22560      "options": {
22561        "consumes": [
22562          "*/*"
22563        ],
22564        "description": "connect OPTIONS requests to proxy of Pod",
22565        "operationId": "connectCoreV1OptionsNamespacedPodProxyWithPath",
22566        "produces": [
22567          "*/*"
22568        ],
22569        "responses": {
22570          "200": {
22571            "description": "OK",
22572            "schema": {
22573              "type": "string"
22574            }
22575          },
22576          "401": {
22577            "description": "Unauthorized"
22578          }
22579        },
22580        "schemes": [
22581          "https"
22582        ],
22583        "tags": [
22584          "core_v1"
22585        ],
22586        "x-kubernetes-action": "connect",
22587        "x-kubernetes-group-version-kind": {
22588          "group": "",
22589          "kind": "PodProxyOptions",
22590          "version": "v1"
22591        }
22592      },
22593      "parameters": [
22594        {
22595          "description": "name of the PodProxyOptions",
22596          "in": "path",
22597          "name": "name",
22598          "required": true,
22599          "type": "string",
22600          "uniqueItems": true
22601        },
22602        {
22603          "description": "object name and auth scope, such as for teams and projects",
22604          "in": "path",
22605          "name": "namespace",
22606          "required": true,
22607          "type": "string",
22608          "uniqueItems": true
22609        },
22610        {
22611          "description": "path to the resource",
22612          "in": "path",
22613          "name": "path",
22614          "required": true,
22615          "type": "string",
22616          "uniqueItems": true
22617        },
22618        {
22619          "description": "Path is the URL path to use for the current proxy request to pod.",
22620          "in": "query",
22621          "name": "path",
22622          "type": "string",
22623          "uniqueItems": true
22624        }
22625      ],
22626      "patch": {
22627        "consumes": [
22628          "*/*"
22629        ],
22630        "description": "connect PATCH requests to proxy of Pod",
22631        "operationId": "connectCoreV1PatchNamespacedPodProxyWithPath",
22632        "produces": [
22633          "*/*"
22634        ],
22635        "responses": {
22636          "200": {
22637            "description": "OK",
22638            "schema": {
22639              "type": "string"
22640            }
22641          },
22642          "401": {
22643            "description": "Unauthorized"
22644          }
22645        },
22646        "schemes": [
22647          "https"
22648        ],
22649        "tags": [
22650          "core_v1"
22651        ],
22652        "x-kubernetes-action": "connect",
22653        "x-kubernetes-group-version-kind": {
22654          "group": "",
22655          "kind": "PodProxyOptions",
22656          "version": "v1"
22657        }
22658      },
22659      "post": {
22660        "consumes": [
22661          "*/*"
22662        ],
22663        "description": "connect POST requests to proxy of Pod",
22664        "operationId": "connectCoreV1PostNamespacedPodProxyWithPath",
22665        "produces": [
22666          "*/*"
22667        ],
22668        "responses": {
22669          "200": {
22670            "description": "OK",
22671            "schema": {
22672              "type": "string"
22673            }
22674          },
22675          "401": {
22676            "description": "Unauthorized"
22677          }
22678        },
22679        "schemes": [
22680          "https"
22681        ],
22682        "tags": [
22683          "core_v1"
22684        ],
22685        "x-kubernetes-action": "connect",
22686        "x-kubernetes-group-version-kind": {
22687          "group": "",
22688          "kind": "PodProxyOptions",
22689          "version": "v1"
22690        }
22691      },
22692      "put": {
22693        "consumes": [
22694          "*/*"
22695        ],
22696        "description": "connect PUT requests to proxy of Pod",
22697        "operationId": "connectCoreV1PutNamespacedPodProxyWithPath",
22698        "produces": [
22699          "*/*"
22700        ],
22701        "responses": {
22702          "200": {
22703            "description": "OK",
22704            "schema": {
22705              "type": "string"
22706            }
22707          },
22708          "401": {
22709            "description": "Unauthorized"
22710          }
22711        },
22712        "schemes": [
22713          "https"
22714        ],
22715        "tags": [
22716          "core_v1"
22717        ],
22718        "x-kubernetes-action": "connect",
22719        "x-kubernetes-group-version-kind": {
22720          "group": "",
22721          "kind": "PodProxyOptions",
22722          "version": "v1"
22723        }
22724      }
22725    },
22726    "/api/v1/namespaces/{namespace}/pods/{name}/status": {
22727      "get": {
22728        "consumes": [
22729          "*/*"
22730        ],
22731        "description": "read status of the specified Pod",
22732        "operationId": "readCoreV1NamespacedPodStatus",
22733        "produces": [
22734          "application/json",
22735          "application/yaml",
22736          "application/vnd.kubernetes.protobuf"
22737        ],
22738        "responses": {
22739          "200": {
22740            "description": "OK",
22741            "schema": {
22742              "$ref": "#/definitions/io.k8s.api.core.v1.Pod"
22743            }
22744          },
22745          "401": {
22746            "description": "Unauthorized"
22747          }
22748        },
22749        "schemes": [
22750          "https"
22751        ],
22752        "tags": [
22753          "core_v1"
22754        ],
22755        "x-kubernetes-action": "get",
22756        "x-kubernetes-group-version-kind": {
22757          "group": "",
22758          "kind": "Pod",
22759          "version": "v1"
22760        }
22761      },
22762      "parameters": [
22763        {
22764          "description": "name of the Pod",
22765          "in": "path",
22766          "name": "name",
22767          "required": true,
22768          "type": "string",
22769          "uniqueItems": true
22770        },
22771        {
22772          "description": "object name and auth scope, such as for teams and projects",
22773          "in": "path",
22774          "name": "namespace",
22775          "required": true,
22776          "type": "string",
22777          "uniqueItems": true
22778        },
22779        {
22780          "description": "If 'true', then the output is pretty printed.",
22781          "in": "query",
22782          "name": "pretty",
22783          "type": "string",
22784          "uniqueItems": true
22785        }
22786      ],
22787      "patch": {
22788        "consumes": [
22789          "application/json-patch+json",
22790          "application/merge-patch+json",
22791          "application/strategic-merge-patch+json",
22792          "application/apply-patch+yaml"
22793        ],
22794        "description": "partially update status of the specified Pod",
22795        "operationId": "patchCoreV1NamespacedPodStatus",
22796        "parameters": [
22797          {
22798            "in": "body",
22799            "name": "body",
22800            "required": true,
22801            "schema": {
22802              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
22803            }
22804          },
22805          {
22806            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
22807            "in": "query",
22808            "name": "dryRun",
22809            "type": "string",
22810            "uniqueItems": true
22811          },
22812          {
22813            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
22814            "in": "query",
22815            "name": "fieldManager",
22816            "type": "string",
22817            "uniqueItems": true
22818          },
22819          {
22820            "description": "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.",
22821            "in": "query",
22822            "name": "force",
22823            "type": "boolean",
22824            "uniqueItems": true
22825          }
22826        ],
22827        "produces": [
22828          "application/json",
22829          "application/yaml",
22830          "application/vnd.kubernetes.protobuf"
22831        ],
22832        "responses": {
22833          "200": {
22834            "description": "OK",
22835            "schema": {
22836              "$ref": "#/definitions/io.k8s.api.core.v1.Pod"
22837            }
22838          },
22839          "201": {
22840            "description": "Created",
22841            "schema": {
22842              "$ref": "#/definitions/io.k8s.api.core.v1.Pod"
22843            }
22844          },
22845          "401": {
22846            "description": "Unauthorized"
22847          }
22848        },
22849        "schemes": [
22850          "https"
22851        ],
22852        "tags": [
22853          "core_v1"
22854        ],
22855        "x-kubernetes-action": "patch",
22856        "x-kubernetes-group-version-kind": {
22857          "group": "",
22858          "kind": "Pod",
22859          "version": "v1"
22860        }
22861      },
22862      "put": {
22863        "consumes": [
22864          "*/*"
22865        ],
22866        "description": "replace status of the specified Pod",
22867        "operationId": "replaceCoreV1NamespacedPodStatus",
22868        "parameters": [
22869          {
22870            "in": "body",
22871            "name": "body",
22872            "required": true,
22873            "schema": {
22874              "$ref": "#/definitions/io.k8s.api.core.v1.Pod"
22875            }
22876          },
22877          {
22878            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
22879            "in": "query",
22880            "name": "dryRun",
22881            "type": "string",
22882            "uniqueItems": true
22883          },
22884          {
22885            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
22886            "in": "query",
22887            "name": "fieldManager",
22888            "type": "string",
22889            "uniqueItems": true
22890          }
22891        ],
22892        "produces": [
22893          "application/json",
22894          "application/yaml",
22895          "application/vnd.kubernetes.protobuf"
22896        ],
22897        "responses": {
22898          "200": {
22899            "description": "OK",
22900            "schema": {
22901              "$ref": "#/definitions/io.k8s.api.core.v1.Pod"
22902            }
22903          },
22904          "201": {
22905            "description": "Created",
22906            "schema": {
22907              "$ref": "#/definitions/io.k8s.api.core.v1.Pod"
22908            }
22909          },
22910          "401": {
22911            "description": "Unauthorized"
22912          }
22913        },
22914        "schemes": [
22915          "https"
22916        ],
22917        "tags": [
22918          "core_v1"
22919        ],
22920        "x-kubernetes-action": "put",
22921        "x-kubernetes-group-version-kind": {
22922          "group": "",
22923          "kind": "Pod",
22924          "version": "v1"
22925        }
22926      }
22927    },
22928    "/api/v1/namespaces/{namespace}/podtemplates": {
22929      "delete": {
22930        "consumes": [
22931          "*/*"
22932        ],
22933        "description": "delete collection of PodTemplate",
22934        "operationId": "deleteCoreV1CollectionNamespacedPodTemplate",
22935        "parameters": [
22936          {
22937            "in": "body",
22938            "name": "body",
22939            "schema": {
22940              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
22941            }
22942          },
22943          {
22944            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
22945            "in": "query",
22946            "name": "continue",
22947            "type": "string",
22948            "uniqueItems": true
22949          },
22950          {
22951            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
22952            "in": "query",
22953            "name": "dryRun",
22954            "type": "string",
22955            "uniqueItems": true
22956          },
22957          {
22958            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
22959            "in": "query",
22960            "name": "fieldSelector",
22961            "type": "string",
22962            "uniqueItems": true
22963          },
22964          {
22965            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
22966            "in": "query",
22967            "name": "gracePeriodSeconds",
22968            "type": "integer",
22969            "uniqueItems": true
22970          },
22971          {
22972            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
22973            "in": "query",
22974            "name": "labelSelector",
22975            "type": "string",
22976            "uniqueItems": true
22977          },
22978          {
22979            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
22980            "in": "query",
22981            "name": "limit",
22982            "type": "integer",
22983            "uniqueItems": true
22984          },
22985          {
22986            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
22987            "in": "query",
22988            "name": "orphanDependents",
22989            "type": "boolean",
22990            "uniqueItems": true
22991          },
22992          {
22993            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
22994            "in": "query",
22995            "name": "propagationPolicy",
22996            "type": "string",
22997            "uniqueItems": true
22998          },
22999          {
23000            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
23001            "in": "query",
23002            "name": "resourceVersion",
23003            "type": "string",
23004            "uniqueItems": true
23005          },
23006          {
23007            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
23008            "in": "query",
23009            "name": "resourceVersionMatch",
23010            "type": "string",
23011            "uniqueItems": true
23012          },
23013          {
23014            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
23015            "in": "query",
23016            "name": "timeoutSeconds",
23017            "type": "integer",
23018            "uniqueItems": true
23019          }
23020        ],
23021        "produces": [
23022          "application/json",
23023          "application/yaml",
23024          "application/vnd.kubernetes.protobuf"
23025        ],
23026        "responses": {
23027          "200": {
23028            "description": "OK",
23029            "schema": {
23030              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
23031            }
23032          },
23033          "401": {
23034            "description": "Unauthorized"
23035          }
23036        },
23037        "schemes": [
23038          "https"
23039        ],
23040        "tags": [
23041          "core_v1"
23042        ],
23043        "x-kubernetes-action": "deletecollection",
23044        "x-kubernetes-group-version-kind": {
23045          "group": "",
23046          "kind": "PodTemplate",
23047          "version": "v1"
23048        }
23049      },
23050      "get": {
23051        "consumes": [
23052          "*/*"
23053        ],
23054        "description": "list or watch objects of kind PodTemplate",
23055        "operationId": "listCoreV1NamespacedPodTemplate",
23056        "parameters": [
23057          {
23058            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
23059            "in": "query",
23060            "name": "allowWatchBookmarks",
23061            "type": "boolean",
23062            "uniqueItems": true
23063          },
23064          {
23065            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
23066            "in": "query",
23067            "name": "continue",
23068            "type": "string",
23069            "uniqueItems": true
23070          },
23071          {
23072            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
23073            "in": "query",
23074            "name": "fieldSelector",
23075            "type": "string",
23076            "uniqueItems": true
23077          },
23078          {
23079            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
23080            "in": "query",
23081            "name": "labelSelector",
23082            "type": "string",
23083            "uniqueItems": true
23084          },
23085          {
23086            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
23087            "in": "query",
23088            "name": "limit",
23089            "type": "integer",
23090            "uniqueItems": true
23091          },
23092          {
23093            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
23094            "in": "query",
23095            "name": "resourceVersion",
23096            "type": "string",
23097            "uniqueItems": true
23098          },
23099          {
23100            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
23101            "in": "query",
23102            "name": "resourceVersionMatch",
23103            "type": "string",
23104            "uniqueItems": true
23105          },
23106          {
23107            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
23108            "in": "query",
23109            "name": "timeoutSeconds",
23110            "type": "integer",
23111            "uniqueItems": true
23112          },
23113          {
23114            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
23115            "in": "query",
23116            "name": "watch",
23117            "type": "boolean",
23118            "uniqueItems": true
23119          }
23120        ],
23121        "produces": [
23122          "application/json",
23123          "application/yaml",
23124          "application/vnd.kubernetes.protobuf",
23125          "application/json;stream=watch",
23126          "application/vnd.kubernetes.protobuf;stream=watch"
23127        ],
23128        "responses": {
23129          "200": {
23130            "description": "OK",
23131            "schema": {
23132              "$ref": "#/definitions/io.k8s.api.core.v1.PodTemplateList"
23133            }
23134          },
23135          "401": {
23136            "description": "Unauthorized"
23137          }
23138        },
23139        "schemes": [
23140          "https"
23141        ],
23142        "tags": [
23143          "core_v1"
23144        ],
23145        "x-kubernetes-action": "list",
23146        "x-kubernetes-group-version-kind": {
23147          "group": "",
23148          "kind": "PodTemplate",
23149          "version": "v1"
23150        }
23151      },
23152      "parameters": [
23153        {
23154          "description": "object name and auth scope, such as for teams and projects",
23155          "in": "path",
23156          "name": "namespace",
23157          "required": true,
23158          "type": "string",
23159          "uniqueItems": true
23160        },
23161        {
23162          "description": "If 'true', then the output is pretty printed.",
23163          "in": "query",
23164          "name": "pretty",
23165          "type": "string",
23166          "uniqueItems": true
23167        }
23168      ],
23169      "post": {
23170        "consumes": [
23171          "*/*"
23172        ],
23173        "description": "create a PodTemplate",
23174        "operationId": "createCoreV1NamespacedPodTemplate",
23175        "parameters": [
23176          {
23177            "in": "body",
23178            "name": "body",
23179            "required": true,
23180            "schema": {
23181              "$ref": "#/definitions/io.k8s.api.core.v1.PodTemplate"
23182            }
23183          },
23184          {
23185            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
23186            "in": "query",
23187            "name": "dryRun",
23188            "type": "string",
23189            "uniqueItems": true
23190          },
23191          {
23192            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
23193            "in": "query",
23194            "name": "fieldManager",
23195            "type": "string",
23196            "uniqueItems": true
23197          }
23198        ],
23199        "produces": [
23200          "application/json",
23201          "application/yaml",
23202          "application/vnd.kubernetes.protobuf"
23203        ],
23204        "responses": {
23205          "200": {
23206            "description": "OK",
23207            "schema": {
23208              "$ref": "#/definitions/io.k8s.api.core.v1.PodTemplate"
23209            }
23210          },
23211          "201": {
23212            "description": "Created",
23213            "schema": {
23214              "$ref": "#/definitions/io.k8s.api.core.v1.PodTemplate"
23215            }
23216          },
23217          "202": {
23218            "description": "Accepted",
23219            "schema": {
23220              "$ref": "#/definitions/io.k8s.api.core.v1.PodTemplate"
23221            }
23222          },
23223          "401": {
23224            "description": "Unauthorized"
23225          }
23226        },
23227        "schemes": [
23228          "https"
23229        ],
23230        "tags": [
23231          "core_v1"
23232        ],
23233        "x-kubernetes-action": "post",
23234        "x-kubernetes-group-version-kind": {
23235          "group": "",
23236          "kind": "PodTemplate",
23237          "version": "v1"
23238        }
23239      }
23240    },
23241    "/api/v1/namespaces/{namespace}/podtemplates/{name}": {
23242      "delete": {
23243        "consumes": [
23244          "*/*"
23245        ],
23246        "description": "delete a PodTemplate",
23247        "operationId": "deleteCoreV1NamespacedPodTemplate",
23248        "parameters": [
23249          {
23250            "in": "body",
23251            "name": "body",
23252            "schema": {
23253              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
23254            }
23255          },
23256          {
23257            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
23258            "in": "query",
23259            "name": "dryRun",
23260            "type": "string",
23261            "uniqueItems": true
23262          },
23263          {
23264            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
23265            "in": "query",
23266            "name": "gracePeriodSeconds",
23267            "type": "integer",
23268            "uniqueItems": true
23269          },
23270          {
23271            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
23272            "in": "query",
23273            "name": "orphanDependents",
23274            "type": "boolean",
23275            "uniqueItems": true
23276          },
23277          {
23278            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
23279            "in": "query",
23280            "name": "propagationPolicy",
23281            "type": "string",
23282            "uniqueItems": true
23283          }
23284        ],
23285        "produces": [
23286          "application/json",
23287          "application/yaml",
23288          "application/vnd.kubernetes.protobuf"
23289        ],
23290        "responses": {
23291          "200": {
23292            "description": "OK",
23293            "schema": {
23294              "$ref": "#/definitions/io.k8s.api.core.v1.PodTemplate"
23295            }
23296          },
23297          "202": {
23298            "description": "Accepted",
23299            "schema": {
23300              "$ref": "#/definitions/io.k8s.api.core.v1.PodTemplate"
23301            }
23302          },
23303          "401": {
23304            "description": "Unauthorized"
23305          }
23306        },
23307        "schemes": [
23308          "https"
23309        ],
23310        "tags": [
23311          "core_v1"
23312        ],
23313        "x-kubernetes-action": "delete",
23314        "x-kubernetes-group-version-kind": {
23315          "group": "",
23316          "kind": "PodTemplate",
23317          "version": "v1"
23318        }
23319      },
23320      "get": {
23321        "consumes": [
23322          "*/*"
23323        ],
23324        "description": "read the specified PodTemplate",
23325        "operationId": "readCoreV1NamespacedPodTemplate",
23326        "produces": [
23327          "application/json",
23328          "application/yaml",
23329          "application/vnd.kubernetes.protobuf"
23330        ],
23331        "responses": {
23332          "200": {
23333            "description": "OK",
23334            "schema": {
23335              "$ref": "#/definitions/io.k8s.api.core.v1.PodTemplate"
23336            }
23337          },
23338          "401": {
23339            "description": "Unauthorized"
23340          }
23341        },
23342        "schemes": [
23343          "https"
23344        ],
23345        "tags": [
23346          "core_v1"
23347        ],
23348        "x-kubernetes-action": "get",
23349        "x-kubernetes-group-version-kind": {
23350          "group": "",
23351          "kind": "PodTemplate",
23352          "version": "v1"
23353        }
23354      },
23355      "parameters": [
23356        {
23357          "description": "name of the PodTemplate",
23358          "in": "path",
23359          "name": "name",
23360          "required": true,
23361          "type": "string",
23362          "uniqueItems": true
23363        },
23364        {
23365          "description": "object name and auth scope, such as for teams and projects",
23366          "in": "path",
23367          "name": "namespace",
23368          "required": true,
23369          "type": "string",
23370          "uniqueItems": true
23371        },
23372        {
23373          "description": "If 'true', then the output is pretty printed.",
23374          "in": "query",
23375          "name": "pretty",
23376          "type": "string",
23377          "uniqueItems": true
23378        }
23379      ],
23380      "patch": {
23381        "consumes": [
23382          "application/json-patch+json",
23383          "application/merge-patch+json",
23384          "application/strategic-merge-patch+json",
23385          "application/apply-patch+yaml"
23386        ],
23387        "description": "partially update the specified PodTemplate",
23388        "operationId": "patchCoreV1NamespacedPodTemplate",
23389        "parameters": [
23390          {
23391            "in": "body",
23392            "name": "body",
23393            "required": true,
23394            "schema": {
23395              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
23396            }
23397          },
23398          {
23399            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
23400            "in": "query",
23401            "name": "dryRun",
23402            "type": "string",
23403            "uniqueItems": true
23404          },
23405          {
23406            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
23407            "in": "query",
23408            "name": "fieldManager",
23409            "type": "string",
23410            "uniqueItems": true
23411          },
23412          {
23413            "description": "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.",
23414            "in": "query",
23415            "name": "force",
23416            "type": "boolean",
23417            "uniqueItems": true
23418          }
23419        ],
23420        "produces": [
23421          "application/json",
23422          "application/yaml",
23423          "application/vnd.kubernetes.protobuf"
23424        ],
23425        "responses": {
23426          "200": {
23427            "description": "OK",
23428            "schema": {
23429              "$ref": "#/definitions/io.k8s.api.core.v1.PodTemplate"
23430            }
23431          },
23432          "201": {
23433            "description": "Created",
23434            "schema": {
23435              "$ref": "#/definitions/io.k8s.api.core.v1.PodTemplate"
23436            }
23437          },
23438          "401": {
23439            "description": "Unauthorized"
23440          }
23441        },
23442        "schemes": [
23443          "https"
23444        ],
23445        "tags": [
23446          "core_v1"
23447        ],
23448        "x-kubernetes-action": "patch",
23449        "x-kubernetes-group-version-kind": {
23450          "group": "",
23451          "kind": "PodTemplate",
23452          "version": "v1"
23453        }
23454      },
23455      "put": {
23456        "consumes": [
23457          "*/*"
23458        ],
23459        "description": "replace the specified PodTemplate",
23460        "operationId": "replaceCoreV1NamespacedPodTemplate",
23461        "parameters": [
23462          {
23463            "in": "body",
23464            "name": "body",
23465            "required": true,
23466            "schema": {
23467              "$ref": "#/definitions/io.k8s.api.core.v1.PodTemplate"
23468            }
23469          },
23470          {
23471            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
23472            "in": "query",
23473            "name": "dryRun",
23474            "type": "string",
23475            "uniqueItems": true
23476          },
23477          {
23478            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
23479            "in": "query",
23480            "name": "fieldManager",
23481            "type": "string",
23482            "uniqueItems": true
23483          }
23484        ],
23485        "produces": [
23486          "application/json",
23487          "application/yaml",
23488          "application/vnd.kubernetes.protobuf"
23489        ],
23490        "responses": {
23491          "200": {
23492            "description": "OK",
23493            "schema": {
23494              "$ref": "#/definitions/io.k8s.api.core.v1.PodTemplate"
23495            }
23496          },
23497          "201": {
23498            "description": "Created",
23499            "schema": {
23500              "$ref": "#/definitions/io.k8s.api.core.v1.PodTemplate"
23501            }
23502          },
23503          "401": {
23504            "description": "Unauthorized"
23505          }
23506        },
23507        "schemes": [
23508          "https"
23509        ],
23510        "tags": [
23511          "core_v1"
23512        ],
23513        "x-kubernetes-action": "put",
23514        "x-kubernetes-group-version-kind": {
23515          "group": "",
23516          "kind": "PodTemplate",
23517          "version": "v1"
23518        }
23519      }
23520    },
23521    "/api/v1/namespaces/{namespace}/replicationcontrollers": {
23522      "delete": {
23523        "consumes": [
23524          "*/*"
23525        ],
23526        "description": "delete collection of ReplicationController",
23527        "operationId": "deleteCoreV1CollectionNamespacedReplicationController",
23528        "parameters": [
23529          {
23530            "in": "body",
23531            "name": "body",
23532            "schema": {
23533              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
23534            }
23535          },
23536          {
23537            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
23538            "in": "query",
23539            "name": "continue",
23540            "type": "string",
23541            "uniqueItems": true
23542          },
23543          {
23544            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
23545            "in": "query",
23546            "name": "dryRun",
23547            "type": "string",
23548            "uniqueItems": true
23549          },
23550          {
23551            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
23552            "in": "query",
23553            "name": "fieldSelector",
23554            "type": "string",
23555            "uniqueItems": true
23556          },
23557          {
23558            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
23559            "in": "query",
23560            "name": "gracePeriodSeconds",
23561            "type": "integer",
23562            "uniqueItems": true
23563          },
23564          {
23565            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
23566            "in": "query",
23567            "name": "labelSelector",
23568            "type": "string",
23569            "uniqueItems": true
23570          },
23571          {
23572            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
23573            "in": "query",
23574            "name": "limit",
23575            "type": "integer",
23576            "uniqueItems": true
23577          },
23578          {
23579            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
23580            "in": "query",
23581            "name": "orphanDependents",
23582            "type": "boolean",
23583            "uniqueItems": true
23584          },
23585          {
23586            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
23587            "in": "query",
23588            "name": "propagationPolicy",
23589            "type": "string",
23590            "uniqueItems": true
23591          },
23592          {
23593            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
23594            "in": "query",
23595            "name": "resourceVersion",
23596            "type": "string",
23597            "uniqueItems": true
23598          },
23599          {
23600            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
23601            "in": "query",
23602            "name": "resourceVersionMatch",
23603            "type": "string",
23604            "uniqueItems": true
23605          },
23606          {
23607            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
23608            "in": "query",
23609            "name": "timeoutSeconds",
23610            "type": "integer",
23611            "uniqueItems": true
23612          }
23613        ],
23614        "produces": [
23615          "application/json",
23616          "application/yaml",
23617          "application/vnd.kubernetes.protobuf"
23618        ],
23619        "responses": {
23620          "200": {
23621            "description": "OK",
23622            "schema": {
23623              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
23624            }
23625          },
23626          "401": {
23627            "description": "Unauthorized"
23628          }
23629        },
23630        "schemes": [
23631          "https"
23632        ],
23633        "tags": [
23634          "core_v1"
23635        ],
23636        "x-kubernetes-action": "deletecollection",
23637        "x-kubernetes-group-version-kind": {
23638          "group": "",
23639          "kind": "ReplicationController",
23640          "version": "v1"
23641        }
23642      },
23643      "get": {
23644        "consumes": [
23645          "*/*"
23646        ],
23647        "description": "list or watch objects of kind ReplicationController",
23648        "operationId": "listCoreV1NamespacedReplicationController",
23649        "parameters": [
23650          {
23651            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
23652            "in": "query",
23653            "name": "allowWatchBookmarks",
23654            "type": "boolean",
23655            "uniqueItems": true
23656          },
23657          {
23658            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
23659            "in": "query",
23660            "name": "continue",
23661            "type": "string",
23662            "uniqueItems": true
23663          },
23664          {
23665            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
23666            "in": "query",
23667            "name": "fieldSelector",
23668            "type": "string",
23669            "uniqueItems": true
23670          },
23671          {
23672            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
23673            "in": "query",
23674            "name": "labelSelector",
23675            "type": "string",
23676            "uniqueItems": true
23677          },
23678          {
23679            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
23680            "in": "query",
23681            "name": "limit",
23682            "type": "integer",
23683            "uniqueItems": true
23684          },
23685          {
23686            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
23687            "in": "query",
23688            "name": "resourceVersion",
23689            "type": "string",
23690            "uniqueItems": true
23691          },
23692          {
23693            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
23694            "in": "query",
23695            "name": "resourceVersionMatch",
23696            "type": "string",
23697            "uniqueItems": true
23698          },
23699          {
23700            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
23701            "in": "query",
23702            "name": "timeoutSeconds",
23703            "type": "integer",
23704            "uniqueItems": true
23705          },
23706          {
23707            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
23708            "in": "query",
23709            "name": "watch",
23710            "type": "boolean",
23711            "uniqueItems": true
23712          }
23713        ],
23714        "produces": [
23715          "application/json",
23716          "application/yaml",
23717          "application/vnd.kubernetes.protobuf",
23718          "application/json;stream=watch",
23719          "application/vnd.kubernetes.protobuf;stream=watch"
23720        ],
23721        "responses": {
23722          "200": {
23723            "description": "OK",
23724            "schema": {
23725              "$ref": "#/definitions/io.k8s.api.core.v1.ReplicationControllerList"
23726            }
23727          },
23728          "401": {
23729            "description": "Unauthorized"
23730          }
23731        },
23732        "schemes": [
23733          "https"
23734        ],
23735        "tags": [
23736          "core_v1"
23737        ],
23738        "x-kubernetes-action": "list",
23739        "x-kubernetes-group-version-kind": {
23740          "group": "",
23741          "kind": "ReplicationController",
23742          "version": "v1"
23743        }
23744      },
23745      "parameters": [
23746        {
23747          "description": "object name and auth scope, such as for teams and projects",
23748          "in": "path",
23749          "name": "namespace",
23750          "required": true,
23751          "type": "string",
23752          "uniqueItems": true
23753        },
23754        {
23755          "description": "If 'true', then the output is pretty printed.",
23756          "in": "query",
23757          "name": "pretty",
23758          "type": "string",
23759          "uniqueItems": true
23760        }
23761      ],
23762      "post": {
23763        "consumes": [
23764          "*/*"
23765        ],
23766        "description": "create a ReplicationController",
23767        "operationId": "createCoreV1NamespacedReplicationController",
23768        "parameters": [
23769          {
23770            "in": "body",
23771            "name": "body",
23772            "required": true,
23773            "schema": {
23774              "$ref": "#/definitions/io.k8s.api.core.v1.ReplicationController"
23775            }
23776          },
23777          {
23778            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
23779            "in": "query",
23780            "name": "dryRun",
23781            "type": "string",
23782            "uniqueItems": true
23783          },
23784          {
23785            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
23786            "in": "query",
23787            "name": "fieldManager",
23788            "type": "string",
23789            "uniqueItems": true
23790          }
23791        ],
23792        "produces": [
23793          "application/json",
23794          "application/yaml",
23795          "application/vnd.kubernetes.protobuf"
23796        ],
23797        "responses": {
23798          "200": {
23799            "description": "OK",
23800            "schema": {
23801              "$ref": "#/definitions/io.k8s.api.core.v1.ReplicationController"
23802            }
23803          },
23804          "201": {
23805            "description": "Created",
23806            "schema": {
23807              "$ref": "#/definitions/io.k8s.api.core.v1.ReplicationController"
23808            }
23809          },
23810          "202": {
23811            "description": "Accepted",
23812            "schema": {
23813              "$ref": "#/definitions/io.k8s.api.core.v1.ReplicationController"
23814            }
23815          },
23816          "401": {
23817            "description": "Unauthorized"
23818          }
23819        },
23820        "schemes": [
23821          "https"
23822        ],
23823        "tags": [
23824          "core_v1"
23825        ],
23826        "x-kubernetes-action": "post",
23827        "x-kubernetes-group-version-kind": {
23828          "group": "",
23829          "kind": "ReplicationController",
23830          "version": "v1"
23831        }
23832      }
23833    },
23834    "/api/v1/namespaces/{namespace}/replicationcontrollers/{name}": {
23835      "delete": {
23836        "consumes": [
23837          "*/*"
23838        ],
23839        "description": "delete a ReplicationController",
23840        "operationId": "deleteCoreV1NamespacedReplicationController",
23841        "parameters": [
23842          {
23843            "in": "body",
23844            "name": "body",
23845            "schema": {
23846              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
23847            }
23848          },
23849          {
23850            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
23851            "in": "query",
23852            "name": "dryRun",
23853            "type": "string",
23854            "uniqueItems": true
23855          },
23856          {
23857            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
23858            "in": "query",
23859            "name": "gracePeriodSeconds",
23860            "type": "integer",
23861            "uniqueItems": true
23862          },
23863          {
23864            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
23865            "in": "query",
23866            "name": "orphanDependents",
23867            "type": "boolean",
23868            "uniqueItems": true
23869          },
23870          {
23871            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
23872            "in": "query",
23873            "name": "propagationPolicy",
23874            "type": "string",
23875            "uniqueItems": true
23876          }
23877        ],
23878        "produces": [
23879          "application/json",
23880          "application/yaml",
23881          "application/vnd.kubernetes.protobuf"
23882        ],
23883        "responses": {
23884          "200": {
23885            "description": "OK",
23886            "schema": {
23887              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
23888            }
23889          },
23890          "202": {
23891            "description": "Accepted",
23892            "schema": {
23893              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
23894            }
23895          },
23896          "401": {
23897            "description": "Unauthorized"
23898          }
23899        },
23900        "schemes": [
23901          "https"
23902        ],
23903        "tags": [
23904          "core_v1"
23905        ],
23906        "x-kubernetes-action": "delete",
23907        "x-kubernetes-group-version-kind": {
23908          "group": "",
23909          "kind": "ReplicationController",
23910          "version": "v1"
23911        }
23912      },
23913      "get": {
23914        "consumes": [
23915          "*/*"
23916        ],
23917        "description": "read the specified ReplicationController",
23918        "operationId": "readCoreV1NamespacedReplicationController",
23919        "produces": [
23920          "application/json",
23921          "application/yaml",
23922          "application/vnd.kubernetes.protobuf"
23923        ],
23924        "responses": {
23925          "200": {
23926            "description": "OK",
23927            "schema": {
23928              "$ref": "#/definitions/io.k8s.api.core.v1.ReplicationController"
23929            }
23930          },
23931          "401": {
23932            "description": "Unauthorized"
23933          }
23934        },
23935        "schemes": [
23936          "https"
23937        ],
23938        "tags": [
23939          "core_v1"
23940        ],
23941        "x-kubernetes-action": "get",
23942        "x-kubernetes-group-version-kind": {
23943          "group": "",
23944          "kind": "ReplicationController",
23945          "version": "v1"
23946        }
23947      },
23948      "parameters": [
23949        {
23950          "description": "name of the ReplicationController",
23951          "in": "path",
23952          "name": "name",
23953          "required": true,
23954          "type": "string",
23955          "uniqueItems": true
23956        },
23957        {
23958          "description": "object name and auth scope, such as for teams and projects",
23959          "in": "path",
23960          "name": "namespace",
23961          "required": true,
23962          "type": "string",
23963          "uniqueItems": true
23964        },
23965        {
23966          "description": "If 'true', then the output is pretty printed.",
23967          "in": "query",
23968          "name": "pretty",
23969          "type": "string",
23970          "uniqueItems": true
23971        }
23972      ],
23973      "patch": {
23974        "consumes": [
23975          "application/json-patch+json",
23976          "application/merge-patch+json",
23977          "application/strategic-merge-patch+json",
23978          "application/apply-patch+yaml"
23979        ],
23980        "description": "partially update the specified ReplicationController",
23981        "operationId": "patchCoreV1NamespacedReplicationController",
23982        "parameters": [
23983          {
23984            "in": "body",
23985            "name": "body",
23986            "required": true,
23987            "schema": {
23988              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
23989            }
23990          },
23991          {
23992            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
23993            "in": "query",
23994            "name": "dryRun",
23995            "type": "string",
23996            "uniqueItems": true
23997          },
23998          {
23999            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
24000            "in": "query",
24001            "name": "fieldManager",
24002            "type": "string",
24003            "uniqueItems": true
24004          },
24005          {
24006            "description": "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.",
24007            "in": "query",
24008            "name": "force",
24009            "type": "boolean",
24010            "uniqueItems": true
24011          }
24012        ],
24013        "produces": [
24014          "application/json",
24015          "application/yaml",
24016          "application/vnd.kubernetes.protobuf"
24017        ],
24018        "responses": {
24019          "200": {
24020            "description": "OK",
24021            "schema": {
24022              "$ref": "#/definitions/io.k8s.api.core.v1.ReplicationController"
24023            }
24024          },
24025          "201": {
24026            "description": "Created",
24027            "schema": {
24028              "$ref": "#/definitions/io.k8s.api.core.v1.ReplicationController"
24029            }
24030          },
24031          "401": {
24032            "description": "Unauthorized"
24033          }
24034        },
24035        "schemes": [
24036          "https"
24037        ],
24038        "tags": [
24039          "core_v1"
24040        ],
24041        "x-kubernetes-action": "patch",
24042        "x-kubernetes-group-version-kind": {
24043          "group": "",
24044          "kind": "ReplicationController",
24045          "version": "v1"
24046        }
24047      },
24048      "put": {
24049        "consumes": [
24050          "*/*"
24051        ],
24052        "description": "replace the specified ReplicationController",
24053        "operationId": "replaceCoreV1NamespacedReplicationController",
24054        "parameters": [
24055          {
24056            "in": "body",
24057            "name": "body",
24058            "required": true,
24059            "schema": {
24060              "$ref": "#/definitions/io.k8s.api.core.v1.ReplicationController"
24061            }
24062          },
24063          {
24064            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
24065            "in": "query",
24066            "name": "dryRun",
24067            "type": "string",
24068            "uniqueItems": true
24069          },
24070          {
24071            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
24072            "in": "query",
24073            "name": "fieldManager",
24074            "type": "string",
24075            "uniqueItems": true
24076          }
24077        ],
24078        "produces": [
24079          "application/json",
24080          "application/yaml",
24081          "application/vnd.kubernetes.protobuf"
24082        ],
24083        "responses": {
24084          "200": {
24085            "description": "OK",
24086            "schema": {
24087              "$ref": "#/definitions/io.k8s.api.core.v1.ReplicationController"
24088            }
24089          },
24090          "201": {
24091            "description": "Created",
24092            "schema": {
24093              "$ref": "#/definitions/io.k8s.api.core.v1.ReplicationController"
24094            }
24095          },
24096          "401": {
24097            "description": "Unauthorized"
24098          }
24099        },
24100        "schemes": [
24101          "https"
24102        ],
24103        "tags": [
24104          "core_v1"
24105        ],
24106        "x-kubernetes-action": "put",
24107        "x-kubernetes-group-version-kind": {
24108          "group": "",
24109          "kind": "ReplicationController",
24110          "version": "v1"
24111        }
24112      }
24113    },
24114    "/api/v1/namespaces/{namespace}/replicationcontrollers/{name}/scale": {
24115      "get": {
24116        "consumes": [
24117          "*/*"
24118        ],
24119        "description": "read scale of the specified ReplicationController",
24120        "operationId": "readCoreV1NamespacedReplicationControllerScale",
24121        "produces": [
24122          "application/json",
24123          "application/yaml",
24124          "application/vnd.kubernetes.protobuf"
24125        ],
24126        "responses": {
24127          "200": {
24128            "description": "OK",
24129            "schema": {
24130              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.Scale"
24131            }
24132          },
24133          "401": {
24134            "description": "Unauthorized"
24135          }
24136        },
24137        "schemes": [
24138          "https"
24139        ],
24140        "tags": [
24141          "core_v1"
24142        ],
24143        "x-kubernetes-action": "get",
24144        "x-kubernetes-group-version-kind": {
24145          "group": "autoscaling",
24146          "kind": "Scale",
24147          "version": "v1"
24148        }
24149      },
24150      "parameters": [
24151        {
24152          "description": "name of the Scale",
24153          "in": "path",
24154          "name": "name",
24155          "required": true,
24156          "type": "string",
24157          "uniqueItems": true
24158        },
24159        {
24160          "description": "object name and auth scope, such as for teams and projects",
24161          "in": "path",
24162          "name": "namespace",
24163          "required": true,
24164          "type": "string",
24165          "uniqueItems": true
24166        },
24167        {
24168          "description": "If 'true', then the output is pretty printed.",
24169          "in": "query",
24170          "name": "pretty",
24171          "type": "string",
24172          "uniqueItems": true
24173        }
24174      ],
24175      "patch": {
24176        "consumes": [
24177          "application/json-patch+json",
24178          "application/merge-patch+json",
24179          "application/strategic-merge-patch+json",
24180          "application/apply-patch+yaml"
24181        ],
24182        "description": "partially update scale of the specified ReplicationController",
24183        "operationId": "patchCoreV1NamespacedReplicationControllerScale",
24184        "parameters": [
24185          {
24186            "in": "body",
24187            "name": "body",
24188            "required": true,
24189            "schema": {
24190              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
24191            }
24192          },
24193          {
24194            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
24195            "in": "query",
24196            "name": "dryRun",
24197            "type": "string",
24198            "uniqueItems": true
24199          },
24200          {
24201            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
24202            "in": "query",
24203            "name": "fieldManager",
24204            "type": "string",
24205            "uniqueItems": true
24206          },
24207          {
24208            "description": "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.",
24209            "in": "query",
24210            "name": "force",
24211            "type": "boolean",
24212            "uniqueItems": true
24213          }
24214        ],
24215        "produces": [
24216          "application/json",
24217          "application/yaml",
24218          "application/vnd.kubernetes.protobuf"
24219        ],
24220        "responses": {
24221          "200": {
24222            "description": "OK",
24223            "schema": {
24224              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.Scale"
24225            }
24226          },
24227          "201": {
24228            "description": "Created",
24229            "schema": {
24230              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.Scale"
24231            }
24232          },
24233          "401": {
24234            "description": "Unauthorized"
24235          }
24236        },
24237        "schemes": [
24238          "https"
24239        ],
24240        "tags": [
24241          "core_v1"
24242        ],
24243        "x-kubernetes-action": "patch",
24244        "x-kubernetes-group-version-kind": {
24245          "group": "autoscaling",
24246          "kind": "Scale",
24247          "version": "v1"
24248        }
24249      },
24250      "put": {
24251        "consumes": [
24252          "*/*"
24253        ],
24254        "description": "replace scale of the specified ReplicationController",
24255        "operationId": "replaceCoreV1NamespacedReplicationControllerScale",
24256        "parameters": [
24257          {
24258            "in": "body",
24259            "name": "body",
24260            "required": true,
24261            "schema": {
24262              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.Scale"
24263            }
24264          },
24265          {
24266            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
24267            "in": "query",
24268            "name": "dryRun",
24269            "type": "string",
24270            "uniqueItems": true
24271          },
24272          {
24273            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
24274            "in": "query",
24275            "name": "fieldManager",
24276            "type": "string",
24277            "uniqueItems": true
24278          }
24279        ],
24280        "produces": [
24281          "application/json",
24282          "application/yaml",
24283          "application/vnd.kubernetes.protobuf"
24284        ],
24285        "responses": {
24286          "200": {
24287            "description": "OK",
24288            "schema": {
24289              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.Scale"
24290            }
24291          },
24292          "201": {
24293            "description": "Created",
24294            "schema": {
24295              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.Scale"
24296            }
24297          },
24298          "401": {
24299            "description": "Unauthorized"
24300          }
24301        },
24302        "schemes": [
24303          "https"
24304        ],
24305        "tags": [
24306          "core_v1"
24307        ],
24308        "x-kubernetes-action": "put",
24309        "x-kubernetes-group-version-kind": {
24310          "group": "autoscaling",
24311          "kind": "Scale",
24312          "version": "v1"
24313        }
24314      }
24315    },
24316    "/api/v1/namespaces/{namespace}/replicationcontrollers/{name}/status": {
24317      "get": {
24318        "consumes": [
24319          "*/*"
24320        ],
24321        "description": "read status of the specified ReplicationController",
24322        "operationId": "readCoreV1NamespacedReplicationControllerStatus",
24323        "produces": [
24324          "application/json",
24325          "application/yaml",
24326          "application/vnd.kubernetes.protobuf"
24327        ],
24328        "responses": {
24329          "200": {
24330            "description": "OK",
24331            "schema": {
24332              "$ref": "#/definitions/io.k8s.api.core.v1.ReplicationController"
24333            }
24334          },
24335          "401": {
24336            "description": "Unauthorized"
24337          }
24338        },
24339        "schemes": [
24340          "https"
24341        ],
24342        "tags": [
24343          "core_v1"
24344        ],
24345        "x-kubernetes-action": "get",
24346        "x-kubernetes-group-version-kind": {
24347          "group": "",
24348          "kind": "ReplicationController",
24349          "version": "v1"
24350        }
24351      },
24352      "parameters": [
24353        {
24354          "description": "name of the ReplicationController",
24355          "in": "path",
24356          "name": "name",
24357          "required": true,
24358          "type": "string",
24359          "uniqueItems": true
24360        },
24361        {
24362          "description": "object name and auth scope, such as for teams and projects",
24363          "in": "path",
24364          "name": "namespace",
24365          "required": true,
24366          "type": "string",
24367          "uniqueItems": true
24368        },
24369        {
24370          "description": "If 'true', then the output is pretty printed.",
24371          "in": "query",
24372          "name": "pretty",
24373          "type": "string",
24374          "uniqueItems": true
24375        }
24376      ],
24377      "patch": {
24378        "consumes": [
24379          "application/json-patch+json",
24380          "application/merge-patch+json",
24381          "application/strategic-merge-patch+json",
24382          "application/apply-patch+yaml"
24383        ],
24384        "description": "partially update status of the specified ReplicationController",
24385        "operationId": "patchCoreV1NamespacedReplicationControllerStatus",
24386        "parameters": [
24387          {
24388            "in": "body",
24389            "name": "body",
24390            "required": true,
24391            "schema": {
24392              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
24393            }
24394          },
24395          {
24396            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
24397            "in": "query",
24398            "name": "dryRun",
24399            "type": "string",
24400            "uniqueItems": true
24401          },
24402          {
24403            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
24404            "in": "query",
24405            "name": "fieldManager",
24406            "type": "string",
24407            "uniqueItems": true
24408          },
24409          {
24410            "description": "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.",
24411            "in": "query",
24412            "name": "force",
24413            "type": "boolean",
24414            "uniqueItems": true
24415          }
24416        ],
24417        "produces": [
24418          "application/json",
24419          "application/yaml",
24420          "application/vnd.kubernetes.protobuf"
24421        ],
24422        "responses": {
24423          "200": {
24424            "description": "OK",
24425            "schema": {
24426              "$ref": "#/definitions/io.k8s.api.core.v1.ReplicationController"
24427            }
24428          },
24429          "201": {
24430            "description": "Created",
24431            "schema": {
24432              "$ref": "#/definitions/io.k8s.api.core.v1.ReplicationController"
24433            }
24434          },
24435          "401": {
24436            "description": "Unauthorized"
24437          }
24438        },
24439        "schemes": [
24440          "https"
24441        ],
24442        "tags": [
24443          "core_v1"
24444        ],
24445        "x-kubernetes-action": "patch",
24446        "x-kubernetes-group-version-kind": {
24447          "group": "",
24448          "kind": "ReplicationController",
24449          "version": "v1"
24450        }
24451      },
24452      "put": {
24453        "consumes": [
24454          "*/*"
24455        ],
24456        "description": "replace status of the specified ReplicationController",
24457        "operationId": "replaceCoreV1NamespacedReplicationControllerStatus",
24458        "parameters": [
24459          {
24460            "in": "body",
24461            "name": "body",
24462            "required": true,
24463            "schema": {
24464              "$ref": "#/definitions/io.k8s.api.core.v1.ReplicationController"
24465            }
24466          },
24467          {
24468            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
24469            "in": "query",
24470            "name": "dryRun",
24471            "type": "string",
24472            "uniqueItems": true
24473          },
24474          {
24475            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
24476            "in": "query",
24477            "name": "fieldManager",
24478            "type": "string",
24479            "uniqueItems": true
24480          }
24481        ],
24482        "produces": [
24483          "application/json",
24484          "application/yaml",
24485          "application/vnd.kubernetes.protobuf"
24486        ],
24487        "responses": {
24488          "200": {
24489            "description": "OK",
24490            "schema": {
24491              "$ref": "#/definitions/io.k8s.api.core.v1.ReplicationController"
24492            }
24493          },
24494          "201": {
24495            "description": "Created",
24496            "schema": {
24497              "$ref": "#/definitions/io.k8s.api.core.v1.ReplicationController"
24498            }
24499          },
24500          "401": {
24501            "description": "Unauthorized"
24502          }
24503        },
24504        "schemes": [
24505          "https"
24506        ],
24507        "tags": [
24508          "core_v1"
24509        ],
24510        "x-kubernetes-action": "put",
24511        "x-kubernetes-group-version-kind": {
24512          "group": "",
24513          "kind": "ReplicationController",
24514          "version": "v1"
24515        }
24516      }
24517    },
24518    "/api/v1/namespaces/{namespace}/resourcequotas": {
24519      "delete": {
24520        "consumes": [
24521          "*/*"
24522        ],
24523        "description": "delete collection of ResourceQuota",
24524        "operationId": "deleteCoreV1CollectionNamespacedResourceQuota",
24525        "parameters": [
24526          {
24527            "in": "body",
24528            "name": "body",
24529            "schema": {
24530              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
24531            }
24532          },
24533          {
24534            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
24535            "in": "query",
24536            "name": "continue",
24537            "type": "string",
24538            "uniqueItems": true
24539          },
24540          {
24541            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
24542            "in": "query",
24543            "name": "dryRun",
24544            "type": "string",
24545            "uniqueItems": true
24546          },
24547          {
24548            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
24549            "in": "query",
24550            "name": "fieldSelector",
24551            "type": "string",
24552            "uniqueItems": true
24553          },
24554          {
24555            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
24556            "in": "query",
24557            "name": "gracePeriodSeconds",
24558            "type": "integer",
24559            "uniqueItems": true
24560          },
24561          {
24562            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
24563            "in": "query",
24564            "name": "labelSelector",
24565            "type": "string",
24566            "uniqueItems": true
24567          },
24568          {
24569            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
24570            "in": "query",
24571            "name": "limit",
24572            "type": "integer",
24573            "uniqueItems": true
24574          },
24575          {
24576            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
24577            "in": "query",
24578            "name": "orphanDependents",
24579            "type": "boolean",
24580            "uniqueItems": true
24581          },
24582          {
24583            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
24584            "in": "query",
24585            "name": "propagationPolicy",
24586            "type": "string",
24587            "uniqueItems": true
24588          },
24589          {
24590            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
24591            "in": "query",
24592            "name": "resourceVersion",
24593            "type": "string",
24594            "uniqueItems": true
24595          },
24596          {
24597            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
24598            "in": "query",
24599            "name": "resourceVersionMatch",
24600            "type": "string",
24601            "uniqueItems": true
24602          },
24603          {
24604            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
24605            "in": "query",
24606            "name": "timeoutSeconds",
24607            "type": "integer",
24608            "uniqueItems": true
24609          }
24610        ],
24611        "produces": [
24612          "application/json",
24613          "application/yaml",
24614          "application/vnd.kubernetes.protobuf"
24615        ],
24616        "responses": {
24617          "200": {
24618            "description": "OK",
24619            "schema": {
24620              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
24621            }
24622          },
24623          "401": {
24624            "description": "Unauthorized"
24625          }
24626        },
24627        "schemes": [
24628          "https"
24629        ],
24630        "tags": [
24631          "core_v1"
24632        ],
24633        "x-kubernetes-action": "deletecollection",
24634        "x-kubernetes-group-version-kind": {
24635          "group": "",
24636          "kind": "ResourceQuota",
24637          "version": "v1"
24638        }
24639      },
24640      "get": {
24641        "consumes": [
24642          "*/*"
24643        ],
24644        "description": "list or watch objects of kind ResourceQuota",
24645        "operationId": "listCoreV1NamespacedResourceQuota",
24646        "parameters": [
24647          {
24648            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
24649            "in": "query",
24650            "name": "allowWatchBookmarks",
24651            "type": "boolean",
24652            "uniqueItems": true
24653          },
24654          {
24655            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
24656            "in": "query",
24657            "name": "continue",
24658            "type": "string",
24659            "uniqueItems": true
24660          },
24661          {
24662            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
24663            "in": "query",
24664            "name": "fieldSelector",
24665            "type": "string",
24666            "uniqueItems": true
24667          },
24668          {
24669            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
24670            "in": "query",
24671            "name": "labelSelector",
24672            "type": "string",
24673            "uniqueItems": true
24674          },
24675          {
24676            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
24677            "in": "query",
24678            "name": "limit",
24679            "type": "integer",
24680            "uniqueItems": true
24681          },
24682          {
24683            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
24684            "in": "query",
24685            "name": "resourceVersion",
24686            "type": "string",
24687            "uniqueItems": true
24688          },
24689          {
24690            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
24691            "in": "query",
24692            "name": "resourceVersionMatch",
24693            "type": "string",
24694            "uniqueItems": true
24695          },
24696          {
24697            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
24698            "in": "query",
24699            "name": "timeoutSeconds",
24700            "type": "integer",
24701            "uniqueItems": true
24702          },
24703          {
24704            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
24705            "in": "query",
24706            "name": "watch",
24707            "type": "boolean",
24708            "uniqueItems": true
24709          }
24710        ],
24711        "produces": [
24712          "application/json",
24713          "application/yaml",
24714          "application/vnd.kubernetes.protobuf",
24715          "application/json;stream=watch",
24716          "application/vnd.kubernetes.protobuf;stream=watch"
24717        ],
24718        "responses": {
24719          "200": {
24720            "description": "OK",
24721            "schema": {
24722              "$ref": "#/definitions/io.k8s.api.core.v1.ResourceQuotaList"
24723            }
24724          },
24725          "401": {
24726            "description": "Unauthorized"
24727          }
24728        },
24729        "schemes": [
24730          "https"
24731        ],
24732        "tags": [
24733          "core_v1"
24734        ],
24735        "x-kubernetes-action": "list",
24736        "x-kubernetes-group-version-kind": {
24737          "group": "",
24738          "kind": "ResourceQuota",
24739          "version": "v1"
24740        }
24741      },
24742      "parameters": [
24743        {
24744          "description": "object name and auth scope, such as for teams and projects",
24745          "in": "path",
24746          "name": "namespace",
24747          "required": true,
24748          "type": "string",
24749          "uniqueItems": true
24750        },
24751        {
24752          "description": "If 'true', then the output is pretty printed.",
24753          "in": "query",
24754          "name": "pretty",
24755          "type": "string",
24756          "uniqueItems": true
24757        }
24758      ],
24759      "post": {
24760        "consumes": [
24761          "*/*"
24762        ],
24763        "description": "create a ResourceQuota",
24764        "operationId": "createCoreV1NamespacedResourceQuota",
24765        "parameters": [
24766          {
24767            "in": "body",
24768            "name": "body",
24769            "required": true,
24770            "schema": {
24771              "$ref": "#/definitions/io.k8s.api.core.v1.ResourceQuota"
24772            }
24773          },
24774          {
24775            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
24776            "in": "query",
24777            "name": "dryRun",
24778            "type": "string",
24779            "uniqueItems": true
24780          },
24781          {
24782            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
24783            "in": "query",
24784            "name": "fieldManager",
24785            "type": "string",
24786            "uniqueItems": true
24787          }
24788        ],
24789        "produces": [
24790          "application/json",
24791          "application/yaml",
24792          "application/vnd.kubernetes.protobuf"
24793        ],
24794        "responses": {
24795          "200": {
24796            "description": "OK",
24797            "schema": {
24798              "$ref": "#/definitions/io.k8s.api.core.v1.ResourceQuota"
24799            }
24800          },
24801          "201": {
24802            "description": "Created",
24803            "schema": {
24804              "$ref": "#/definitions/io.k8s.api.core.v1.ResourceQuota"
24805            }
24806          },
24807          "202": {
24808            "description": "Accepted",
24809            "schema": {
24810              "$ref": "#/definitions/io.k8s.api.core.v1.ResourceQuota"
24811            }
24812          },
24813          "401": {
24814            "description": "Unauthorized"
24815          }
24816        },
24817        "schemes": [
24818          "https"
24819        ],
24820        "tags": [
24821          "core_v1"
24822        ],
24823        "x-kubernetes-action": "post",
24824        "x-kubernetes-group-version-kind": {
24825          "group": "",
24826          "kind": "ResourceQuota",
24827          "version": "v1"
24828        }
24829      }
24830    },
24831    "/api/v1/namespaces/{namespace}/resourcequotas/{name}": {
24832      "delete": {
24833        "consumes": [
24834          "*/*"
24835        ],
24836        "description": "delete a ResourceQuota",
24837        "operationId": "deleteCoreV1NamespacedResourceQuota",
24838        "parameters": [
24839          {
24840            "in": "body",
24841            "name": "body",
24842            "schema": {
24843              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
24844            }
24845          },
24846          {
24847            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
24848            "in": "query",
24849            "name": "dryRun",
24850            "type": "string",
24851            "uniqueItems": true
24852          },
24853          {
24854            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
24855            "in": "query",
24856            "name": "gracePeriodSeconds",
24857            "type": "integer",
24858            "uniqueItems": true
24859          },
24860          {
24861            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
24862            "in": "query",
24863            "name": "orphanDependents",
24864            "type": "boolean",
24865            "uniqueItems": true
24866          },
24867          {
24868            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
24869            "in": "query",
24870            "name": "propagationPolicy",
24871            "type": "string",
24872            "uniqueItems": true
24873          }
24874        ],
24875        "produces": [
24876          "application/json",
24877          "application/yaml",
24878          "application/vnd.kubernetes.protobuf"
24879        ],
24880        "responses": {
24881          "200": {
24882            "description": "OK",
24883            "schema": {
24884              "$ref": "#/definitions/io.k8s.api.core.v1.ResourceQuota"
24885            }
24886          },
24887          "202": {
24888            "description": "Accepted",
24889            "schema": {
24890              "$ref": "#/definitions/io.k8s.api.core.v1.ResourceQuota"
24891            }
24892          },
24893          "401": {
24894            "description": "Unauthorized"
24895          }
24896        },
24897        "schemes": [
24898          "https"
24899        ],
24900        "tags": [
24901          "core_v1"
24902        ],
24903        "x-kubernetes-action": "delete",
24904        "x-kubernetes-group-version-kind": {
24905          "group": "",
24906          "kind": "ResourceQuota",
24907          "version": "v1"
24908        }
24909      },
24910      "get": {
24911        "consumes": [
24912          "*/*"
24913        ],
24914        "description": "read the specified ResourceQuota",
24915        "operationId": "readCoreV1NamespacedResourceQuota",
24916        "produces": [
24917          "application/json",
24918          "application/yaml",
24919          "application/vnd.kubernetes.protobuf"
24920        ],
24921        "responses": {
24922          "200": {
24923            "description": "OK",
24924            "schema": {
24925              "$ref": "#/definitions/io.k8s.api.core.v1.ResourceQuota"
24926            }
24927          },
24928          "401": {
24929            "description": "Unauthorized"
24930          }
24931        },
24932        "schemes": [
24933          "https"
24934        ],
24935        "tags": [
24936          "core_v1"
24937        ],
24938        "x-kubernetes-action": "get",
24939        "x-kubernetes-group-version-kind": {
24940          "group": "",
24941          "kind": "ResourceQuota",
24942          "version": "v1"
24943        }
24944      },
24945      "parameters": [
24946        {
24947          "description": "name of the ResourceQuota",
24948          "in": "path",
24949          "name": "name",
24950          "required": true,
24951          "type": "string",
24952          "uniqueItems": true
24953        },
24954        {
24955          "description": "object name and auth scope, such as for teams and projects",
24956          "in": "path",
24957          "name": "namespace",
24958          "required": true,
24959          "type": "string",
24960          "uniqueItems": true
24961        },
24962        {
24963          "description": "If 'true', then the output is pretty printed.",
24964          "in": "query",
24965          "name": "pretty",
24966          "type": "string",
24967          "uniqueItems": true
24968        }
24969      ],
24970      "patch": {
24971        "consumes": [
24972          "application/json-patch+json",
24973          "application/merge-patch+json",
24974          "application/strategic-merge-patch+json",
24975          "application/apply-patch+yaml"
24976        ],
24977        "description": "partially update the specified ResourceQuota",
24978        "operationId": "patchCoreV1NamespacedResourceQuota",
24979        "parameters": [
24980          {
24981            "in": "body",
24982            "name": "body",
24983            "required": true,
24984            "schema": {
24985              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
24986            }
24987          },
24988          {
24989            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
24990            "in": "query",
24991            "name": "dryRun",
24992            "type": "string",
24993            "uniqueItems": true
24994          },
24995          {
24996            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
24997            "in": "query",
24998            "name": "fieldManager",
24999            "type": "string",
25000            "uniqueItems": true
25001          },
25002          {
25003            "description": "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.",
25004            "in": "query",
25005            "name": "force",
25006            "type": "boolean",
25007            "uniqueItems": true
25008          }
25009        ],
25010        "produces": [
25011          "application/json",
25012          "application/yaml",
25013          "application/vnd.kubernetes.protobuf"
25014        ],
25015        "responses": {
25016          "200": {
25017            "description": "OK",
25018            "schema": {
25019              "$ref": "#/definitions/io.k8s.api.core.v1.ResourceQuota"
25020            }
25021          },
25022          "201": {
25023            "description": "Created",
25024            "schema": {
25025              "$ref": "#/definitions/io.k8s.api.core.v1.ResourceQuota"
25026            }
25027          },
25028          "401": {
25029            "description": "Unauthorized"
25030          }
25031        },
25032        "schemes": [
25033          "https"
25034        ],
25035        "tags": [
25036          "core_v1"
25037        ],
25038        "x-kubernetes-action": "patch",
25039        "x-kubernetes-group-version-kind": {
25040          "group": "",
25041          "kind": "ResourceQuota",
25042          "version": "v1"
25043        }
25044      },
25045      "put": {
25046        "consumes": [
25047          "*/*"
25048        ],
25049        "description": "replace the specified ResourceQuota",
25050        "operationId": "replaceCoreV1NamespacedResourceQuota",
25051        "parameters": [
25052          {
25053            "in": "body",
25054            "name": "body",
25055            "required": true,
25056            "schema": {
25057              "$ref": "#/definitions/io.k8s.api.core.v1.ResourceQuota"
25058            }
25059          },
25060          {
25061            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
25062            "in": "query",
25063            "name": "dryRun",
25064            "type": "string",
25065            "uniqueItems": true
25066          },
25067          {
25068            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
25069            "in": "query",
25070            "name": "fieldManager",
25071            "type": "string",
25072            "uniqueItems": true
25073          }
25074        ],
25075        "produces": [
25076          "application/json",
25077          "application/yaml",
25078          "application/vnd.kubernetes.protobuf"
25079        ],
25080        "responses": {
25081          "200": {
25082            "description": "OK",
25083            "schema": {
25084              "$ref": "#/definitions/io.k8s.api.core.v1.ResourceQuota"
25085            }
25086          },
25087          "201": {
25088            "description": "Created",
25089            "schema": {
25090              "$ref": "#/definitions/io.k8s.api.core.v1.ResourceQuota"
25091            }
25092          },
25093          "401": {
25094            "description": "Unauthorized"
25095          }
25096        },
25097        "schemes": [
25098          "https"
25099        ],
25100        "tags": [
25101          "core_v1"
25102        ],
25103        "x-kubernetes-action": "put",
25104        "x-kubernetes-group-version-kind": {
25105          "group": "",
25106          "kind": "ResourceQuota",
25107          "version": "v1"
25108        }
25109      }
25110    },
25111    "/api/v1/namespaces/{namespace}/resourcequotas/{name}/status": {
25112      "get": {
25113        "consumes": [
25114          "*/*"
25115        ],
25116        "description": "read status of the specified ResourceQuota",
25117        "operationId": "readCoreV1NamespacedResourceQuotaStatus",
25118        "produces": [
25119          "application/json",
25120          "application/yaml",
25121          "application/vnd.kubernetes.protobuf"
25122        ],
25123        "responses": {
25124          "200": {
25125            "description": "OK",
25126            "schema": {
25127              "$ref": "#/definitions/io.k8s.api.core.v1.ResourceQuota"
25128            }
25129          },
25130          "401": {
25131            "description": "Unauthorized"
25132          }
25133        },
25134        "schemes": [
25135          "https"
25136        ],
25137        "tags": [
25138          "core_v1"
25139        ],
25140        "x-kubernetes-action": "get",
25141        "x-kubernetes-group-version-kind": {
25142          "group": "",
25143          "kind": "ResourceQuota",
25144          "version": "v1"
25145        }
25146      },
25147      "parameters": [
25148        {
25149          "description": "name of the ResourceQuota",
25150          "in": "path",
25151          "name": "name",
25152          "required": true,
25153          "type": "string",
25154          "uniqueItems": true
25155        },
25156        {
25157          "description": "object name and auth scope, such as for teams and projects",
25158          "in": "path",
25159          "name": "namespace",
25160          "required": true,
25161          "type": "string",
25162          "uniqueItems": true
25163        },
25164        {
25165          "description": "If 'true', then the output is pretty printed.",
25166          "in": "query",
25167          "name": "pretty",
25168          "type": "string",
25169          "uniqueItems": true
25170        }
25171      ],
25172      "patch": {
25173        "consumes": [
25174          "application/json-patch+json",
25175          "application/merge-patch+json",
25176          "application/strategic-merge-patch+json",
25177          "application/apply-patch+yaml"
25178        ],
25179        "description": "partially update status of the specified ResourceQuota",
25180        "operationId": "patchCoreV1NamespacedResourceQuotaStatus",
25181        "parameters": [
25182          {
25183            "in": "body",
25184            "name": "body",
25185            "required": true,
25186            "schema": {
25187              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
25188            }
25189          },
25190          {
25191            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
25192            "in": "query",
25193            "name": "dryRun",
25194            "type": "string",
25195            "uniqueItems": true
25196          },
25197          {
25198            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
25199            "in": "query",
25200            "name": "fieldManager",
25201            "type": "string",
25202            "uniqueItems": true
25203          },
25204          {
25205            "description": "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.",
25206            "in": "query",
25207            "name": "force",
25208            "type": "boolean",
25209            "uniqueItems": true
25210          }
25211        ],
25212        "produces": [
25213          "application/json",
25214          "application/yaml",
25215          "application/vnd.kubernetes.protobuf"
25216        ],
25217        "responses": {
25218          "200": {
25219            "description": "OK",
25220            "schema": {
25221              "$ref": "#/definitions/io.k8s.api.core.v1.ResourceQuota"
25222            }
25223          },
25224          "201": {
25225            "description": "Created",
25226            "schema": {
25227              "$ref": "#/definitions/io.k8s.api.core.v1.ResourceQuota"
25228            }
25229          },
25230          "401": {
25231            "description": "Unauthorized"
25232          }
25233        },
25234        "schemes": [
25235          "https"
25236        ],
25237        "tags": [
25238          "core_v1"
25239        ],
25240        "x-kubernetes-action": "patch",
25241        "x-kubernetes-group-version-kind": {
25242          "group": "",
25243          "kind": "ResourceQuota",
25244          "version": "v1"
25245        }
25246      },
25247      "put": {
25248        "consumes": [
25249          "*/*"
25250        ],
25251        "description": "replace status of the specified ResourceQuota",
25252        "operationId": "replaceCoreV1NamespacedResourceQuotaStatus",
25253        "parameters": [
25254          {
25255            "in": "body",
25256            "name": "body",
25257            "required": true,
25258            "schema": {
25259              "$ref": "#/definitions/io.k8s.api.core.v1.ResourceQuota"
25260            }
25261          },
25262          {
25263            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
25264            "in": "query",
25265            "name": "dryRun",
25266            "type": "string",
25267            "uniqueItems": true
25268          },
25269          {
25270            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
25271            "in": "query",
25272            "name": "fieldManager",
25273            "type": "string",
25274            "uniqueItems": true
25275          }
25276        ],
25277        "produces": [
25278          "application/json",
25279          "application/yaml",
25280          "application/vnd.kubernetes.protobuf"
25281        ],
25282        "responses": {
25283          "200": {
25284            "description": "OK",
25285            "schema": {
25286              "$ref": "#/definitions/io.k8s.api.core.v1.ResourceQuota"
25287            }
25288          },
25289          "201": {
25290            "description": "Created",
25291            "schema": {
25292              "$ref": "#/definitions/io.k8s.api.core.v1.ResourceQuota"
25293            }
25294          },
25295          "401": {
25296            "description": "Unauthorized"
25297          }
25298        },
25299        "schemes": [
25300          "https"
25301        ],
25302        "tags": [
25303          "core_v1"
25304        ],
25305        "x-kubernetes-action": "put",
25306        "x-kubernetes-group-version-kind": {
25307          "group": "",
25308          "kind": "ResourceQuota",
25309          "version": "v1"
25310        }
25311      }
25312    },
25313    "/api/v1/namespaces/{namespace}/secrets": {
25314      "delete": {
25315        "consumes": [
25316          "*/*"
25317        ],
25318        "description": "delete collection of Secret",
25319        "operationId": "deleteCoreV1CollectionNamespacedSecret",
25320        "parameters": [
25321          {
25322            "in": "body",
25323            "name": "body",
25324            "schema": {
25325              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
25326            }
25327          },
25328          {
25329            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
25330            "in": "query",
25331            "name": "continue",
25332            "type": "string",
25333            "uniqueItems": true
25334          },
25335          {
25336            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
25337            "in": "query",
25338            "name": "dryRun",
25339            "type": "string",
25340            "uniqueItems": true
25341          },
25342          {
25343            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
25344            "in": "query",
25345            "name": "fieldSelector",
25346            "type": "string",
25347            "uniqueItems": true
25348          },
25349          {
25350            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
25351            "in": "query",
25352            "name": "gracePeriodSeconds",
25353            "type": "integer",
25354            "uniqueItems": true
25355          },
25356          {
25357            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
25358            "in": "query",
25359            "name": "labelSelector",
25360            "type": "string",
25361            "uniqueItems": true
25362          },
25363          {
25364            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
25365            "in": "query",
25366            "name": "limit",
25367            "type": "integer",
25368            "uniqueItems": true
25369          },
25370          {
25371            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
25372            "in": "query",
25373            "name": "orphanDependents",
25374            "type": "boolean",
25375            "uniqueItems": true
25376          },
25377          {
25378            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
25379            "in": "query",
25380            "name": "propagationPolicy",
25381            "type": "string",
25382            "uniqueItems": true
25383          },
25384          {
25385            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
25386            "in": "query",
25387            "name": "resourceVersion",
25388            "type": "string",
25389            "uniqueItems": true
25390          },
25391          {
25392            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
25393            "in": "query",
25394            "name": "resourceVersionMatch",
25395            "type": "string",
25396            "uniqueItems": true
25397          },
25398          {
25399            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
25400            "in": "query",
25401            "name": "timeoutSeconds",
25402            "type": "integer",
25403            "uniqueItems": true
25404          }
25405        ],
25406        "produces": [
25407          "application/json",
25408          "application/yaml",
25409          "application/vnd.kubernetes.protobuf"
25410        ],
25411        "responses": {
25412          "200": {
25413            "description": "OK",
25414            "schema": {
25415              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
25416            }
25417          },
25418          "401": {
25419            "description": "Unauthorized"
25420          }
25421        },
25422        "schemes": [
25423          "https"
25424        ],
25425        "tags": [
25426          "core_v1"
25427        ],
25428        "x-kubernetes-action": "deletecollection",
25429        "x-kubernetes-group-version-kind": {
25430          "group": "",
25431          "kind": "Secret",
25432          "version": "v1"
25433        }
25434      },
25435      "get": {
25436        "consumes": [
25437          "*/*"
25438        ],
25439        "description": "list or watch objects of kind Secret",
25440        "operationId": "listCoreV1NamespacedSecret",
25441        "parameters": [
25442          {
25443            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
25444            "in": "query",
25445            "name": "allowWatchBookmarks",
25446            "type": "boolean",
25447            "uniqueItems": true
25448          },
25449          {
25450            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
25451            "in": "query",
25452            "name": "continue",
25453            "type": "string",
25454            "uniqueItems": true
25455          },
25456          {
25457            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
25458            "in": "query",
25459            "name": "fieldSelector",
25460            "type": "string",
25461            "uniqueItems": true
25462          },
25463          {
25464            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
25465            "in": "query",
25466            "name": "labelSelector",
25467            "type": "string",
25468            "uniqueItems": true
25469          },
25470          {
25471            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
25472            "in": "query",
25473            "name": "limit",
25474            "type": "integer",
25475            "uniqueItems": true
25476          },
25477          {
25478            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
25479            "in": "query",
25480            "name": "resourceVersion",
25481            "type": "string",
25482            "uniqueItems": true
25483          },
25484          {
25485            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
25486            "in": "query",
25487            "name": "resourceVersionMatch",
25488            "type": "string",
25489            "uniqueItems": true
25490          },
25491          {
25492            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
25493            "in": "query",
25494            "name": "timeoutSeconds",
25495            "type": "integer",
25496            "uniqueItems": true
25497          },
25498          {
25499            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
25500            "in": "query",
25501            "name": "watch",
25502            "type": "boolean",
25503            "uniqueItems": true
25504          }
25505        ],
25506        "produces": [
25507          "application/json",
25508          "application/yaml",
25509          "application/vnd.kubernetes.protobuf",
25510          "application/json;stream=watch",
25511          "application/vnd.kubernetes.protobuf;stream=watch"
25512        ],
25513        "responses": {
25514          "200": {
25515            "description": "OK",
25516            "schema": {
25517              "$ref": "#/definitions/io.k8s.api.core.v1.SecretList"
25518            }
25519          },
25520          "401": {
25521            "description": "Unauthorized"
25522          }
25523        },
25524        "schemes": [
25525          "https"
25526        ],
25527        "tags": [
25528          "core_v1"
25529        ],
25530        "x-kubernetes-action": "list",
25531        "x-kubernetes-group-version-kind": {
25532          "group": "",
25533          "kind": "Secret",
25534          "version": "v1"
25535        }
25536      },
25537      "parameters": [
25538        {
25539          "description": "object name and auth scope, such as for teams and projects",
25540          "in": "path",
25541          "name": "namespace",
25542          "required": true,
25543          "type": "string",
25544          "uniqueItems": true
25545        },
25546        {
25547          "description": "If 'true', then the output is pretty printed.",
25548          "in": "query",
25549          "name": "pretty",
25550          "type": "string",
25551          "uniqueItems": true
25552        }
25553      ],
25554      "post": {
25555        "consumes": [
25556          "*/*"
25557        ],
25558        "description": "create a Secret",
25559        "operationId": "createCoreV1NamespacedSecret",
25560        "parameters": [
25561          {
25562            "in": "body",
25563            "name": "body",
25564            "required": true,
25565            "schema": {
25566              "$ref": "#/definitions/io.k8s.api.core.v1.Secret"
25567            }
25568          },
25569          {
25570            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
25571            "in": "query",
25572            "name": "dryRun",
25573            "type": "string",
25574            "uniqueItems": true
25575          },
25576          {
25577            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
25578            "in": "query",
25579            "name": "fieldManager",
25580            "type": "string",
25581            "uniqueItems": true
25582          }
25583        ],
25584        "produces": [
25585          "application/json",
25586          "application/yaml",
25587          "application/vnd.kubernetes.protobuf"
25588        ],
25589        "responses": {
25590          "200": {
25591            "description": "OK",
25592            "schema": {
25593              "$ref": "#/definitions/io.k8s.api.core.v1.Secret"
25594            }
25595          },
25596          "201": {
25597            "description": "Created",
25598            "schema": {
25599              "$ref": "#/definitions/io.k8s.api.core.v1.Secret"
25600            }
25601          },
25602          "202": {
25603            "description": "Accepted",
25604            "schema": {
25605              "$ref": "#/definitions/io.k8s.api.core.v1.Secret"
25606            }
25607          },
25608          "401": {
25609            "description": "Unauthorized"
25610          }
25611        },
25612        "schemes": [
25613          "https"
25614        ],
25615        "tags": [
25616          "core_v1"
25617        ],
25618        "x-kubernetes-action": "post",
25619        "x-kubernetes-group-version-kind": {
25620          "group": "",
25621          "kind": "Secret",
25622          "version": "v1"
25623        }
25624      }
25625    },
25626    "/api/v1/namespaces/{namespace}/secrets/{name}": {
25627      "delete": {
25628        "consumes": [
25629          "*/*"
25630        ],
25631        "description": "delete a Secret",
25632        "operationId": "deleteCoreV1NamespacedSecret",
25633        "parameters": [
25634          {
25635            "in": "body",
25636            "name": "body",
25637            "schema": {
25638              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
25639            }
25640          },
25641          {
25642            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
25643            "in": "query",
25644            "name": "dryRun",
25645            "type": "string",
25646            "uniqueItems": true
25647          },
25648          {
25649            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
25650            "in": "query",
25651            "name": "gracePeriodSeconds",
25652            "type": "integer",
25653            "uniqueItems": true
25654          },
25655          {
25656            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
25657            "in": "query",
25658            "name": "orphanDependents",
25659            "type": "boolean",
25660            "uniqueItems": true
25661          },
25662          {
25663            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
25664            "in": "query",
25665            "name": "propagationPolicy",
25666            "type": "string",
25667            "uniqueItems": true
25668          }
25669        ],
25670        "produces": [
25671          "application/json",
25672          "application/yaml",
25673          "application/vnd.kubernetes.protobuf"
25674        ],
25675        "responses": {
25676          "200": {
25677            "description": "OK",
25678            "schema": {
25679              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
25680            }
25681          },
25682          "202": {
25683            "description": "Accepted",
25684            "schema": {
25685              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
25686            }
25687          },
25688          "401": {
25689            "description": "Unauthorized"
25690          }
25691        },
25692        "schemes": [
25693          "https"
25694        ],
25695        "tags": [
25696          "core_v1"
25697        ],
25698        "x-kubernetes-action": "delete",
25699        "x-kubernetes-group-version-kind": {
25700          "group": "",
25701          "kind": "Secret",
25702          "version": "v1"
25703        }
25704      },
25705      "get": {
25706        "consumes": [
25707          "*/*"
25708        ],
25709        "description": "read the specified Secret",
25710        "operationId": "readCoreV1NamespacedSecret",
25711        "produces": [
25712          "application/json",
25713          "application/yaml",
25714          "application/vnd.kubernetes.protobuf"
25715        ],
25716        "responses": {
25717          "200": {
25718            "description": "OK",
25719            "schema": {
25720              "$ref": "#/definitions/io.k8s.api.core.v1.Secret"
25721            }
25722          },
25723          "401": {
25724            "description": "Unauthorized"
25725          }
25726        },
25727        "schemes": [
25728          "https"
25729        ],
25730        "tags": [
25731          "core_v1"
25732        ],
25733        "x-kubernetes-action": "get",
25734        "x-kubernetes-group-version-kind": {
25735          "group": "",
25736          "kind": "Secret",
25737          "version": "v1"
25738        }
25739      },
25740      "parameters": [
25741        {
25742          "description": "name of the Secret",
25743          "in": "path",
25744          "name": "name",
25745          "required": true,
25746          "type": "string",
25747          "uniqueItems": true
25748        },
25749        {
25750          "description": "object name and auth scope, such as for teams and projects",
25751          "in": "path",
25752          "name": "namespace",
25753          "required": true,
25754          "type": "string",
25755          "uniqueItems": true
25756        },
25757        {
25758          "description": "If 'true', then the output is pretty printed.",
25759          "in": "query",
25760          "name": "pretty",
25761          "type": "string",
25762          "uniqueItems": true
25763        }
25764      ],
25765      "patch": {
25766        "consumes": [
25767          "application/json-patch+json",
25768          "application/merge-patch+json",
25769          "application/strategic-merge-patch+json",
25770          "application/apply-patch+yaml"
25771        ],
25772        "description": "partially update the specified Secret",
25773        "operationId": "patchCoreV1NamespacedSecret",
25774        "parameters": [
25775          {
25776            "in": "body",
25777            "name": "body",
25778            "required": true,
25779            "schema": {
25780              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
25781            }
25782          },
25783          {
25784            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
25785            "in": "query",
25786            "name": "dryRun",
25787            "type": "string",
25788            "uniqueItems": true
25789          },
25790          {
25791            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
25792            "in": "query",
25793            "name": "fieldManager",
25794            "type": "string",
25795            "uniqueItems": true
25796          },
25797          {
25798            "description": "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.",
25799            "in": "query",
25800            "name": "force",
25801            "type": "boolean",
25802            "uniqueItems": true
25803          }
25804        ],
25805        "produces": [
25806          "application/json",
25807          "application/yaml",
25808          "application/vnd.kubernetes.protobuf"
25809        ],
25810        "responses": {
25811          "200": {
25812            "description": "OK",
25813            "schema": {
25814              "$ref": "#/definitions/io.k8s.api.core.v1.Secret"
25815            }
25816          },
25817          "201": {
25818            "description": "Created",
25819            "schema": {
25820              "$ref": "#/definitions/io.k8s.api.core.v1.Secret"
25821            }
25822          },
25823          "401": {
25824            "description": "Unauthorized"
25825          }
25826        },
25827        "schemes": [
25828          "https"
25829        ],
25830        "tags": [
25831          "core_v1"
25832        ],
25833        "x-kubernetes-action": "patch",
25834        "x-kubernetes-group-version-kind": {
25835          "group": "",
25836          "kind": "Secret",
25837          "version": "v1"
25838        }
25839      },
25840      "put": {
25841        "consumes": [
25842          "*/*"
25843        ],
25844        "description": "replace the specified Secret",
25845        "operationId": "replaceCoreV1NamespacedSecret",
25846        "parameters": [
25847          {
25848            "in": "body",
25849            "name": "body",
25850            "required": true,
25851            "schema": {
25852              "$ref": "#/definitions/io.k8s.api.core.v1.Secret"
25853            }
25854          },
25855          {
25856            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
25857            "in": "query",
25858            "name": "dryRun",
25859            "type": "string",
25860            "uniqueItems": true
25861          },
25862          {
25863            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
25864            "in": "query",
25865            "name": "fieldManager",
25866            "type": "string",
25867            "uniqueItems": true
25868          }
25869        ],
25870        "produces": [
25871          "application/json",
25872          "application/yaml",
25873          "application/vnd.kubernetes.protobuf"
25874        ],
25875        "responses": {
25876          "200": {
25877            "description": "OK",
25878            "schema": {
25879              "$ref": "#/definitions/io.k8s.api.core.v1.Secret"
25880            }
25881          },
25882          "201": {
25883            "description": "Created",
25884            "schema": {
25885              "$ref": "#/definitions/io.k8s.api.core.v1.Secret"
25886            }
25887          },
25888          "401": {
25889            "description": "Unauthorized"
25890          }
25891        },
25892        "schemes": [
25893          "https"
25894        ],
25895        "tags": [
25896          "core_v1"
25897        ],
25898        "x-kubernetes-action": "put",
25899        "x-kubernetes-group-version-kind": {
25900          "group": "",
25901          "kind": "Secret",
25902          "version": "v1"
25903        }
25904      }
25905    },
25906    "/api/v1/namespaces/{namespace}/serviceaccounts": {
25907      "delete": {
25908        "consumes": [
25909          "*/*"
25910        ],
25911        "description": "delete collection of ServiceAccount",
25912        "operationId": "deleteCoreV1CollectionNamespacedServiceAccount",
25913        "parameters": [
25914          {
25915            "in": "body",
25916            "name": "body",
25917            "schema": {
25918              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
25919            }
25920          },
25921          {
25922            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
25923            "in": "query",
25924            "name": "continue",
25925            "type": "string",
25926            "uniqueItems": true
25927          },
25928          {
25929            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
25930            "in": "query",
25931            "name": "dryRun",
25932            "type": "string",
25933            "uniqueItems": true
25934          },
25935          {
25936            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
25937            "in": "query",
25938            "name": "fieldSelector",
25939            "type": "string",
25940            "uniqueItems": true
25941          },
25942          {
25943            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
25944            "in": "query",
25945            "name": "gracePeriodSeconds",
25946            "type": "integer",
25947            "uniqueItems": true
25948          },
25949          {
25950            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
25951            "in": "query",
25952            "name": "labelSelector",
25953            "type": "string",
25954            "uniqueItems": true
25955          },
25956          {
25957            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
25958            "in": "query",
25959            "name": "limit",
25960            "type": "integer",
25961            "uniqueItems": true
25962          },
25963          {
25964            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
25965            "in": "query",
25966            "name": "orphanDependents",
25967            "type": "boolean",
25968            "uniqueItems": true
25969          },
25970          {
25971            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
25972            "in": "query",
25973            "name": "propagationPolicy",
25974            "type": "string",
25975            "uniqueItems": true
25976          },
25977          {
25978            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
25979            "in": "query",
25980            "name": "resourceVersion",
25981            "type": "string",
25982            "uniqueItems": true
25983          },
25984          {
25985            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
25986            "in": "query",
25987            "name": "resourceVersionMatch",
25988            "type": "string",
25989            "uniqueItems": true
25990          },
25991          {
25992            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
25993            "in": "query",
25994            "name": "timeoutSeconds",
25995            "type": "integer",
25996            "uniqueItems": true
25997          }
25998        ],
25999        "produces": [
26000          "application/json",
26001          "application/yaml",
26002          "application/vnd.kubernetes.protobuf"
26003        ],
26004        "responses": {
26005          "200": {
26006            "description": "OK",
26007            "schema": {
26008              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
26009            }
26010          },
26011          "401": {
26012            "description": "Unauthorized"
26013          }
26014        },
26015        "schemes": [
26016          "https"
26017        ],
26018        "tags": [
26019          "core_v1"
26020        ],
26021        "x-kubernetes-action": "deletecollection",
26022        "x-kubernetes-group-version-kind": {
26023          "group": "",
26024          "kind": "ServiceAccount",
26025          "version": "v1"
26026        }
26027      },
26028      "get": {
26029        "consumes": [
26030          "*/*"
26031        ],
26032        "description": "list or watch objects of kind ServiceAccount",
26033        "operationId": "listCoreV1NamespacedServiceAccount",
26034        "parameters": [
26035          {
26036            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
26037            "in": "query",
26038            "name": "allowWatchBookmarks",
26039            "type": "boolean",
26040            "uniqueItems": true
26041          },
26042          {
26043            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
26044            "in": "query",
26045            "name": "continue",
26046            "type": "string",
26047            "uniqueItems": true
26048          },
26049          {
26050            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
26051            "in": "query",
26052            "name": "fieldSelector",
26053            "type": "string",
26054            "uniqueItems": true
26055          },
26056          {
26057            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
26058            "in": "query",
26059            "name": "labelSelector",
26060            "type": "string",
26061            "uniqueItems": true
26062          },
26063          {
26064            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
26065            "in": "query",
26066            "name": "limit",
26067            "type": "integer",
26068            "uniqueItems": true
26069          },
26070          {
26071            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
26072            "in": "query",
26073            "name": "resourceVersion",
26074            "type": "string",
26075            "uniqueItems": true
26076          },
26077          {
26078            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
26079            "in": "query",
26080            "name": "resourceVersionMatch",
26081            "type": "string",
26082            "uniqueItems": true
26083          },
26084          {
26085            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
26086            "in": "query",
26087            "name": "timeoutSeconds",
26088            "type": "integer",
26089            "uniqueItems": true
26090          },
26091          {
26092            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
26093            "in": "query",
26094            "name": "watch",
26095            "type": "boolean",
26096            "uniqueItems": true
26097          }
26098        ],
26099        "produces": [
26100          "application/json",
26101          "application/yaml",
26102          "application/vnd.kubernetes.protobuf",
26103          "application/json;stream=watch",
26104          "application/vnd.kubernetes.protobuf;stream=watch"
26105        ],
26106        "responses": {
26107          "200": {
26108            "description": "OK",
26109            "schema": {
26110              "$ref": "#/definitions/io.k8s.api.core.v1.ServiceAccountList"
26111            }
26112          },
26113          "401": {
26114            "description": "Unauthorized"
26115          }
26116        },
26117        "schemes": [
26118          "https"
26119        ],
26120        "tags": [
26121          "core_v1"
26122        ],
26123        "x-kubernetes-action": "list",
26124        "x-kubernetes-group-version-kind": {
26125          "group": "",
26126          "kind": "ServiceAccount",
26127          "version": "v1"
26128        }
26129      },
26130      "parameters": [
26131        {
26132          "description": "object name and auth scope, such as for teams and projects",
26133          "in": "path",
26134          "name": "namespace",
26135          "required": true,
26136          "type": "string",
26137          "uniqueItems": true
26138        },
26139        {
26140          "description": "If 'true', then the output is pretty printed.",
26141          "in": "query",
26142          "name": "pretty",
26143          "type": "string",
26144          "uniqueItems": true
26145        }
26146      ],
26147      "post": {
26148        "consumes": [
26149          "*/*"
26150        ],
26151        "description": "create a ServiceAccount",
26152        "operationId": "createCoreV1NamespacedServiceAccount",
26153        "parameters": [
26154          {
26155            "in": "body",
26156            "name": "body",
26157            "required": true,
26158            "schema": {
26159              "$ref": "#/definitions/io.k8s.api.core.v1.ServiceAccount"
26160            }
26161          },
26162          {
26163            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
26164            "in": "query",
26165            "name": "dryRun",
26166            "type": "string",
26167            "uniqueItems": true
26168          },
26169          {
26170            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
26171            "in": "query",
26172            "name": "fieldManager",
26173            "type": "string",
26174            "uniqueItems": true
26175          }
26176        ],
26177        "produces": [
26178          "application/json",
26179          "application/yaml",
26180          "application/vnd.kubernetes.protobuf"
26181        ],
26182        "responses": {
26183          "200": {
26184            "description": "OK",
26185            "schema": {
26186              "$ref": "#/definitions/io.k8s.api.core.v1.ServiceAccount"
26187            }
26188          },
26189          "201": {
26190            "description": "Created",
26191            "schema": {
26192              "$ref": "#/definitions/io.k8s.api.core.v1.ServiceAccount"
26193            }
26194          },
26195          "202": {
26196            "description": "Accepted",
26197            "schema": {
26198              "$ref": "#/definitions/io.k8s.api.core.v1.ServiceAccount"
26199            }
26200          },
26201          "401": {
26202            "description": "Unauthorized"
26203          }
26204        },
26205        "schemes": [
26206          "https"
26207        ],
26208        "tags": [
26209          "core_v1"
26210        ],
26211        "x-kubernetes-action": "post",
26212        "x-kubernetes-group-version-kind": {
26213          "group": "",
26214          "kind": "ServiceAccount",
26215          "version": "v1"
26216        }
26217      }
26218    },
26219    "/api/v1/namespaces/{namespace}/serviceaccounts/{name}": {
26220      "delete": {
26221        "consumes": [
26222          "*/*"
26223        ],
26224        "description": "delete a ServiceAccount",
26225        "operationId": "deleteCoreV1NamespacedServiceAccount",
26226        "parameters": [
26227          {
26228            "in": "body",
26229            "name": "body",
26230            "schema": {
26231              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
26232            }
26233          },
26234          {
26235            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
26236            "in": "query",
26237            "name": "dryRun",
26238            "type": "string",
26239            "uniqueItems": true
26240          },
26241          {
26242            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
26243            "in": "query",
26244            "name": "gracePeriodSeconds",
26245            "type": "integer",
26246            "uniqueItems": true
26247          },
26248          {
26249            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
26250            "in": "query",
26251            "name": "orphanDependents",
26252            "type": "boolean",
26253            "uniqueItems": true
26254          },
26255          {
26256            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
26257            "in": "query",
26258            "name": "propagationPolicy",
26259            "type": "string",
26260            "uniqueItems": true
26261          }
26262        ],
26263        "produces": [
26264          "application/json",
26265          "application/yaml",
26266          "application/vnd.kubernetes.protobuf"
26267        ],
26268        "responses": {
26269          "200": {
26270            "description": "OK",
26271            "schema": {
26272              "$ref": "#/definitions/io.k8s.api.core.v1.ServiceAccount"
26273            }
26274          },
26275          "202": {
26276            "description": "Accepted",
26277            "schema": {
26278              "$ref": "#/definitions/io.k8s.api.core.v1.ServiceAccount"
26279            }
26280          },
26281          "401": {
26282            "description": "Unauthorized"
26283          }
26284        },
26285        "schemes": [
26286          "https"
26287        ],
26288        "tags": [
26289          "core_v1"
26290        ],
26291        "x-kubernetes-action": "delete",
26292        "x-kubernetes-group-version-kind": {
26293          "group": "",
26294          "kind": "ServiceAccount",
26295          "version": "v1"
26296        }
26297      },
26298      "get": {
26299        "consumes": [
26300          "*/*"
26301        ],
26302        "description": "read the specified ServiceAccount",
26303        "operationId": "readCoreV1NamespacedServiceAccount",
26304        "produces": [
26305          "application/json",
26306          "application/yaml",
26307          "application/vnd.kubernetes.protobuf"
26308        ],
26309        "responses": {
26310          "200": {
26311            "description": "OK",
26312            "schema": {
26313              "$ref": "#/definitions/io.k8s.api.core.v1.ServiceAccount"
26314            }
26315          },
26316          "401": {
26317            "description": "Unauthorized"
26318          }
26319        },
26320        "schemes": [
26321          "https"
26322        ],
26323        "tags": [
26324          "core_v1"
26325        ],
26326        "x-kubernetes-action": "get",
26327        "x-kubernetes-group-version-kind": {
26328          "group": "",
26329          "kind": "ServiceAccount",
26330          "version": "v1"
26331        }
26332      },
26333      "parameters": [
26334        {
26335          "description": "name of the ServiceAccount",
26336          "in": "path",
26337          "name": "name",
26338          "required": true,
26339          "type": "string",
26340          "uniqueItems": true
26341        },
26342        {
26343          "description": "object name and auth scope, such as for teams and projects",
26344          "in": "path",
26345          "name": "namespace",
26346          "required": true,
26347          "type": "string",
26348          "uniqueItems": true
26349        },
26350        {
26351          "description": "If 'true', then the output is pretty printed.",
26352          "in": "query",
26353          "name": "pretty",
26354          "type": "string",
26355          "uniqueItems": true
26356        }
26357      ],
26358      "patch": {
26359        "consumes": [
26360          "application/json-patch+json",
26361          "application/merge-patch+json",
26362          "application/strategic-merge-patch+json",
26363          "application/apply-patch+yaml"
26364        ],
26365        "description": "partially update the specified ServiceAccount",
26366        "operationId": "patchCoreV1NamespacedServiceAccount",
26367        "parameters": [
26368          {
26369            "in": "body",
26370            "name": "body",
26371            "required": true,
26372            "schema": {
26373              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
26374            }
26375          },
26376          {
26377            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
26378            "in": "query",
26379            "name": "dryRun",
26380            "type": "string",
26381            "uniqueItems": true
26382          },
26383          {
26384            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
26385            "in": "query",
26386            "name": "fieldManager",
26387            "type": "string",
26388            "uniqueItems": true
26389          },
26390          {
26391            "description": "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.",
26392            "in": "query",
26393            "name": "force",
26394            "type": "boolean",
26395            "uniqueItems": true
26396          }
26397        ],
26398        "produces": [
26399          "application/json",
26400          "application/yaml",
26401          "application/vnd.kubernetes.protobuf"
26402        ],
26403        "responses": {
26404          "200": {
26405            "description": "OK",
26406            "schema": {
26407              "$ref": "#/definitions/io.k8s.api.core.v1.ServiceAccount"
26408            }
26409          },
26410          "201": {
26411            "description": "Created",
26412            "schema": {
26413              "$ref": "#/definitions/io.k8s.api.core.v1.ServiceAccount"
26414            }
26415          },
26416          "401": {
26417            "description": "Unauthorized"
26418          }
26419        },
26420        "schemes": [
26421          "https"
26422        ],
26423        "tags": [
26424          "core_v1"
26425        ],
26426        "x-kubernetes-action": "patch",
26427        "x-kubernetes-group-version-kind": {
26428          "group": "",
26429          "kind": "ServiceAccount",
26430          "version": "v1"
26431        }
26432      },
26433      "put": {
26434        "consumes": [
26435          "*/*"
26436        ],
26437        "description": "replace the specified ServiceAccount",
26438        "operationId": "replaceCoreV1NamespacedServiceAccount",
26439        "parameters": [
26440          {
26441            "in": "body",
26442            "name": "body",
26443            "required": true,
26444            "schema": {
26445              "$ref": "#/definitions/io.k8s.api.core.v1.ServiceAccount"
26446            }
26447          },
26448          {
26449            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
26450            "in": "query",
26451            "name": "dryRun",
26452            "type": "string",
26453            "uniqueItems": true
26454          },
26455          {
26456            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
26457            "in": "query",
26458            "name": "fieldManager",
26459            "type": "string",
26460            "uniqueItems": true
26461          }
26462        ],
26463        "produces": [
26464          "application/json",
26465          "application/yaml",
26466          "application/vnd.kubernetes.protobuf"
26467        ],
26468        "responses": {
26469          "200": {
26470            "description": "OK",
26471            "schema": {
26472              "$ref": "#/definitions/io.k8s.api.core.v1.ServiceAccount"
26473            }
26474          },
26475          "201": {
26476            "description": "Created",
26477            "schema": {
26478              "$ref": "#/definitions/io.k8s.api.core.v1.ServiceAccount"
26479            }
26480          },
26481          "401": {
26482            "description": "Unauthorized"
26483          }
26484        },
26485        "schemes": [
26486          "https"
26487        ],
26488        "tags": [
26489          "core_v1"
26490        ],
26491        "x-kubernetes-action": "put",
26492        "x-kubernetes-group-version-kind": {
26493          "group": "",
26494          "kind": "ServiceAccount",
26495          "version": "v1"
26496        }
26497      }
26498    },
26499    "/api/v1/namespaces/{namespace}/serviceaccounts/{name}/token": {
26500      "parameters": [
26501        {
26502          "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
26503          "in": "query",
26504          "name": "dryRun",
26505          "type": "string",
26506          "uniqueItems": true
26507        },
26508        {
26509          "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
26510          "in": "query",
26511          "name": "fieldManager",
26512          "type": "string",
26513          "uniqueItems": true
26514        },
26515        {
26516          "description": "name of the TokenRequest",
26517          "in": "path",
26518          "name": "name",
26519          "required": true,
26520          "type": "string",
26521          "uniqueItems": true
26522        },
26523        {
26524          "description": "object name and auth scope, such as for teams and projects",
26525          "in": "path",
26526          "name": "namespace",
26527          "required": true,
26528          "type": "string",
26529          "uniqueItems": true
26530        },
26531        {
26532          "description": "If 'true', then the output is pretty printed.",
26533          "in": "query",
26534          "name": "pretty",
26535          "type": "string",
26536          "uniqueItems": true
26537        }
26538      ],
26539      "post": {
26540        "consumes": [
26541          "*/*"
26542        ],
26543        "description": "create token of a ServiceAccount",
26544        "operationId": "createCoreV1NamespacedServiceAccountToken",
26545        "parameters": [
26546          {
26547            "in": "body",
26548            "name": "body",
26549            "required": true,
26550            "schema": {
26551              "$ref": "#/definitions/io.k8s.api.authentication.v1.TokenRequest"
26552            }
26553          }
26554        ],
26555        "produces": [
26556          "application/json",
26557          "application/yaml",
26558          "application/vnd.kubernetes.protobuf"
26559        ],
26560        "responses": {
26561          "200": {
26562            "description": "OK",
26563            "schema": {
26564              "$ref": "#/definitions/io.k8s.api.authentication.v1.TokenRequest"
26565            }
26566          },
26567          "201": {
26568            "description": "Created",
26569            "schema": {
26570              "$ref": "#/definitions/io.k8s.api.authentication.v1.TokenRequest"
26571            }
26572          },
26573          "202": {
26574            "description": "Accepted",
26575            "schema": {
26576              "$ref": "#/definitions/io.k8s.api.authentication.v1.TokenRequest"
26577            }
26578          },
26579          "401": {
26580            "description": "Unauthorized"
26581          }
26582        },
26583        "schemes": [
26584          "https"
26585        ],
26586        "tags": [
26587          "core_v1"
26588        ],
26589        "x-kubernetes-action": "post",
26590        "x-kubernetes-group-version-kind": {
26591          "group": "authentication.k8s.io",
26592          "kind": "TokenRequest",
26593          "version": "v1"
26594        }
26595      }
26596    },
26597    "/api/v1/namespaces/{namespace}/services": {
26598      "get": {
26599        "consumes": [
26600          "*/*"
26601        ],
26602        "description": "list or watch objects of kind Service",
26603        "operationId": "listCoreV1NamespacedService",
26604        "parameters": [
26605          {
26606            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
26607            "in": "query",
26608            "name": "allowWatchBookmarks",
26609            "type": "boolean",
26610            "uniqueItems": true
26611          },
26612          {
26613            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
26614            "in": "query",
26615            "name": "continue",
26616            "type": "string",
26617            "uniqueItems": true
26618          },
26619          {
26620            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
26621            "in": "query",
26622            "name": "fieldSelector",
26623            "type": "string",
26624            "uniqueItems": true
26625          },
26626          {
26627            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
26628            "in": "query",
26629            "name": "labelSelector",
26630            "type": "string",
26631            "uniqueItems": true
26632          },
26633          {
26634            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
26635            "in": "query",
26636            "name": "limit",
26637            "type": "integer",
26638            "uniqueItems": true
26639          },
26640          {
26641            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
26642            "in": "query",
26643            "name": "resourceVersion",
26644            "type": "string",
26645            "uniqueItems": true
26646          },
26647          {
26648            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
26649            "in": "query",
26650            "name": "resourceVersionMatch",
26651            "type": "string",
26652            "uniqueItems": true
26653          },
26654          {
26655            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
26656            "in": "query",
26657            "name": "timeoutSeconds",
26658            "type": "integer",
26659            "uniqueItems": true
26660          },
26661          {
26662            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
26663            "in": "query",
26664            "name": "watch",
26665            "type": "boolean",
26666            "uniqueItems": true
26667          }
26668        ],
26669        "produces": [
26670          "application/json",
26671          "application/yaml",
26672          "application/vnd.kubernetes.protobuf",
26673          "application/json;stream=watch",
26674          "application/vnd.kubernetes.protobuf;stream=watch"
26675        ],
26676        "responses": {
26677          "200": {
26678            "description": "OK",
26679            "schema": {
26680              "$ref": "#/definitions/io.k8s.api.core.v1.ServiceList"
26681            }
26682          },
26683          "401": {
26684            "description": "Unauthorized"
26685          }
26686        },
26687        "schemes": [
26688          "https"
26689        ],
26690        "tags": [
26691          "core_v1"
26692        ],
26693        "x-kubernetes-action": "list",
26694        "x-kubernetes-group-version-kind": {
26695          "group": "",
26696          "kind": "Service",
26697          "version": "v1"
26698        }
26699      },
26700      "parameters": [
26701        {
26702          "description": "object name and auth scope, such as for teams and projects",
26703          "in": "path",
26704          "name": "namespace",
26705          "required": true,
26706          "type": "string",
26707          "uniqueItems": true
26708        },
26709        {
26710          "description": "If 'true', then the output is pretty printed.",
26711          "in": "query",
26712          "name": "pretty",
26713          "type": "string",
26714          "uniqueItems": true
26715        }
26716      ],
26717      "post": {
26718        "consumes": [
26719          "*/*"
26720        ],
26721        "description": "create a Service",
26722        "operationId": "createCoreV1NamespacedService",
26723        "parameters": [
26724          {
26725            "in": "body",
26726            "name": "body",
26727            "required": true,
26728            "schema": {
26729              "$ref": "#/definitions/io.k8s.api.core.v1.Service"
26730            }
26731          },
26732          {
26733            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
26734            "in": "query",
26735            "name": "dryRun",
26736            "type": "string",
26737            "uniqueItems": true
26738          },
26739          {
26740            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
26741            "in": "query",
26742            "name": "fieldManager",
26743            "type": "string",
26744            "uniqueItems": true
26745          }
26746        ],
26747        "produces": [
26748          "application/json",
26749          "application/yaml",
26750          "application/vnd.kubernetes.protobuf"
26751        ],
26752        "responses": {
26753          "200": {
26754            "description": "OK",
26755            "schema": {
26756              "$ref": "#/definitions/io.k8s.api.core.v1.Service"
26757            }
26758          },
26759          "201": {
26760            "description": "Created",
26761            "schema": {
26762              "$ref": "#/definitions/io.k8s.api.core.v1.Service"
26763            }
26764          },
26765          "202": {
26766            "description": "Accepted",
26767            "schema": {
26768              "$ref": "#/definitions/io.k8s.api.core.v1.Service"
26769            }
26770          },
26771          "401": {
26772            "description": "Unauthorized"
26773          }
26774        },
26775        "schemes": [
26776          "https"
26777        ],
26778        "tags": [
26779          "core_v1"
26780        ],
26781        "x-kubernetes-action": "post",
26782        "x-kubernetes-group-version-kind": {
26783          "group": "",
26784          "kind": "Service",
26785          "version": "v1"
26786        }
26787      }
26788    },
26789    "/api/v1/namespaces/{namespace}/services/{name}": {
26790      "delete": {
26791        "consumes": [
26792          "*/*"
26793        ],
26794        "description": "delete a Service",
26795        "operationId": "deleteCoreV1NamespacedService",
26796        "parameters": [
26797          {
26798            "in": "body",
26799            "name": "body",
26800            "schema": {
26801              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
26802            }
26803          },
26804          {
26805            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
26806            "in": "query",
26807            "name": "dryRun",
26808            "type": "string",
26809            "uniqueItems": true
26810          },
26811          {
26812            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
26813            "in": "query",
26814            "name": "gracePeriodSeconds",
26815            "type": "integer",
26816            "uniqueItems": true
26817          },
26818          {
26819            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
26820            "in": "query",
26821            "name": "orphanDependents",
26822            "type": "boolean",
26823            "uniqueItems": true
26824          },
26825          {
26826            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
26827            "in": "query",
26828            "name": "propagationPolicy",
26829            "type": "string",
26830            "uniqueItems": true
26831          }
26832        ],
26833        "produces": [
26834          "application/json",
26835          "application/yaml",
26836          "application/vnd.kubernetes.protobuf"
26837        ],
26838        "responses": {
26839          "200": {
26840            "description": "OK",
26841            "schema": {
26842              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
26843            }
26844          },
26845          "202": {
26846            "description": "Accepted",
26847            "schema": {
26848              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
26849            }
26850          },
26851          "401": {
26852            "description": "Unauthorized"
26853          }
26854        },
26855        "schemes": [
26856          "https"
26857        ],
26858        "tags": [
26859          "core_v1"
26860        ],
26861        "x-kubernetes-action": "delete",
26862        "x-kubernetes-group-version-kind": {
26863          "group": "",
26864          "kind": "Service",
26865          "version": "v1"
26866        }
26867      },
26868      "get": {
26869        "consumes": [
26870          "*/*"
26871        ],
26872        "description": "read the specified Service",
26873        "operationId": "readCoreV1NamespacedService",
26874        "produces": [
26875          "application/json",
26876          "application/yaml",
26877          "application/vnd.kubernetes.protobuf"
26878        ],
26879        "responses": {
26880          "200": {
26881            "description": "OK",
26882            "schema": {
26883              "$ref": "#/definitions/io.k8s.api.core.v1.Service"
26884            }
26885          },
26886          "401": {
26887            "description": "Unauthorized"
26888          }
26889        },
26890        "schemes": [
26891          "https"
26892        ],
26893        "tags": [
26894          "core_v1"
26895        ],
26896        "x-kubernetes-action": "get",
26897        "x-kubernetes-group-version-kind": {
26898          "group": "",
26899          "kind": "Service",
26900          "version": "v1"
26901        }
26902      },
26903      "parameters": [
26904        {
26905          "description": "name of the Service",
26906          "in": "path",
26907          "name": "name",
26908          "required": true,
26909          "type": "string",
26910          "uniqueItems": true
26911        },
26912        {
26913          "description": "object name and auth scope, such as for teams and projects",
26914          "in": "path",
26915          "name": "namespace",
26916          "required": true,
26917          "type": "string",
26918          "uniqueItems": true
26919        },
26920        {
26921          "description": "If 'true', then the output is pretty printed.",
26922          "in": "query",
26923          "name": "pretty",
26924          "type": "string",
26925          "uniqueItems": true
26926        }
26927      ],
26928      "patch": {
26929        "consumes": [
26930          "application/json-patch+json",
26931          "application/merge-patch+json",
26932          "application/strategic-merge-patch+json",
26933          "application/apply-patch+yaml"
26934        ],
26935        "description": "partially update the specified Service",
26936        "operationId": "patchCoreV1NamespacedService",
26937        "parameters": [
26938          {
26939            "in": "body",
26940            "name": "body",
26941            "required": true,
26942            "schema": {
26943              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
26944            }
26945          },
26946          {
26947            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
26948            "in": "query",
26949            "name": "dryRun",
26950            "type": "string",
26951            "uniqueItems": true
26952          },
26953          {
26954            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
26955            "in": "query",
26956            "name": "fieldManager",
26957            "type": "string",
26958            "uniqueItems": true
26959          },
26960          {
26961            "description": "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.",
26962            "in": "query",
26963            "name": "force",
26964            "type": "boolean",
26965            "uniqueItems": true
26966          }
26967        ],
26968        "produces": [
26969          "application/json",
26970          "application/yaml",
26971          "application/vnd.kubernetes.protobuf"
26972        ],
26973        "responses": {
26974          "200": {
26975            "description": "OK",
26976            "schema": {
26977              "$ref": "#/definitions/io.k8s.api.core.v1.Service"
26978            }
26979          },
26980          "201": {
26981            "description": "Created",
26982            "schema": {
26983              "$ref": "#/definitions/io.k8s.api.core.v1.Service"
26984            }
26985          },
26986          "401": {
26987            "description": "Unauthorized"
26988          }
26989        },
26990        "schemes": [
26991          "https"
26992        ],
26993        "tags": [
26994          "core_v1"
26995        ],
26996        "x-kubernetes-action": "patch",
26997        "x-kubernetes-group-version-kind": {
26998          "group": "",
26999          "kind": "Service",
27000          "version": "v1"
27001        }
27002      },
27003      "put": {
27004        "consumes": [
27005          "*/*"
27006        ],
27007        "description": "replace the specified Service",
27008        "operationId": "replaceCoreV1NamespacedService",
27009        "parameters": [
27010          {
27011            "in": "body",
27012            "name": "body",
27013            "required": true,
27014            "schema": {
27015              "$ref": "#/definitions/io.k8s.api.core.v1.Service"
27016            }
27017          },
27018          {
27019            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
27020            "in": "query",
27021            "name": "dryRun",
27022            "type": "string",
27023            "uniqueItems": true
27024          },
27025          {
27026            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
27027            "in": "query",
27028            "name": "fieldManager",
27029            "type": "string",
27030            "uniqueItems": true
27031          }
27032        ],
27033        "produces": [
27034          "application/json",
27035          "application/yaml",
27036          "application/vnd.kubernetes.protobuf"
27037        ],
27038        "responses": {
27039          "200": {
27040            "description": "OK",
27041            "schema": {
27042              "$ref": "#/definitions/io.k8s.api.core.v1.Service"
27043            }
27044          },
27045          "201": {
27046            "description": "Created",
27047            "schema": {
27048              "$ref": "#/definitions/io.k8s.api.core.v1.Service"
27049            }
27050          },
27051          "401": {
27052            "description": "Unauthorized"
27053          }
27054        },
27055        "schemes": [
27056          "https"
27057        ],
27058        "tags": [
27059          "core_v1"
27060        ],
27061        "x-kubernetes-action": "put",
27062        "x-kubernetes-group-version-kind": {
27063          "group": "",
27064          "kind": "Service",
27065          "version": "v1"
27066        }
27067      }
27068    },
27069    "/api/v1/namespaces/{namespace}/services/{name}/proxy": {
27070      "delete": {
27071        "consumes": [
27072          "*/*"
27073        ],
27074        "description": "connect DELETE requests to proxy of Service",
27075        "operationId": "connectCoreV1DeleteNamespacedServiceProxy",
27076        "produces": [
27077          "*/*"
27078        ],
27079        "responses": {
27080          "200": {
27081            "description": "OK",
27082            "schema": {
27083              "type": "string"
27084            }
27085          },
27086          "401": {
27087            "description": "Unauthorized"
27088          }
27089        },
27090        "schemes": [
27091          "https"
27092        ],
27093        "tags": [
27094          "core_v1"
27095        ],
27096        "x-kubernetes-action": "connect",
27097        "x-kubernetes-group-version-kind": {
27098          "group": "",
27099          "kind": "ServiceProxyOptions",
27100          "version": "v1"
27101        }
27102      },
27103      "get": {
27104        "consumes": [
27105          "*/*"
27106        ],
27107        "description": "connect GET requests to proxy of Service",
27108        "operationId": "connectCoreV1GetNamespacedServiceProxy",
27109        "produces": [
27110          "*/*"
27111        ],
27112        "responses": {
27113          "200": {
27114            "description": "OK",
27115            "schema": {
27116              "type": "string"
27117            }
27118          },
27119          "401": {
27120            "description": "Unauthorized"
27121          }
27122        },
27123        "schemes": [
27124          "https"
27125        ],
27126        "tags": [
27127          "core_v1"
27128        ],
27129        "x-kubernetes-action": "connect",
27130        "x-kubernetes-group-version-kind": {
27131          "group": "",
27132          "kind": "ServiceProxyOptions",
27133          "version": "v1"
27134        }
27135      },
27136      "head": {
27137        "consumes": [
27138          "*/*"
27139        ],
27140        "description": "connect HEAD requests to proxy of Service",
27141        "operationId": "connectCoreV1HeadNamespacedServiceProxy",
27142        "produces": [
27143          "*/*"
27144        ],
27145        "responses": {
27146          "200": {
27147            "description": "OK",
27148            "schema": {
27149              "type": "string"
27150            }
27151          },
27152          "401": {
27153            "description": "Unauthorized"
27154          }
27155        },
27156        "schemes": [
27157          "https"
27158        ],
27159        "tags": [
27160          "core_v1"
27161        ],
27162        "x-kubernetes-action": "connect",
27163        "x-kubernetes-group-version-kind": {
27164          "group": "",
27165          "kind": "ServiceProxyOptions",
27166          "version": "v1"
27167        }
27168      },
27169      "options": {
27170        "consumes": [
27171          "*/*"
27172        ],
27173        "description": "connect OPTIONS requests to proxy of Service",
27174        "operationId": "connectCoreV1OptionsNamespacedServiceProxy",
27175        "produces": [
27176          "*/*"
27177        ],
27178        "responses": {
27179          "200": {
27180            "description": "OK",
27181            "schema": {
27182              "type": "string"
27183            }
27184          },
27185          "401": {
27186            "description": "Unauthorized"
27187          }
27188        },
27189        "schemes": [
27190          "https"
27191        ],
27192        "tags": [
27193          "core_v1"
27194        ],
27195        "x-kubernetes-action": "connect",
27196        "x-kubernetes-group-version-kind": {
27197          "group": "",
27198          "kind": "ServiceProxyOptions",
27199          "version": "v1"
27200        }
27201      },
27202      "parameters": [
27203        {
27204          "description": "name of the ServiceProxyOptions",
27205          "in": "path",
27206          "name": "name",
27207          "required": true,
27208          "type": "string",
27209          "uniqueItems": true
27210        },
27211        {
27212          "description": "object name and auth scope, such as for teams and projects",
27213          "in": "path",
27214          "name": "namespace",
27215          "required": true,
27216          "type": "string",
27217          "uniqueItems": true
27218        },
27219        {
27220          "description": "Path is the part of URLs that include service endpoints, suffixes, and parameters to use for the current proxy request to service. For example, the whole request URL is http://localhost/api/v1/namespaces/kube-system/services/elasticsearch-logging/_search?q=user:kimchy. Path is _search?q=user:kimchy.",
27221          "in": "query",
27222          "name": "path",
27223          "type": "string",
27224          "uniqueItems": true
27225        }
27226      ],
27227      "patch": {
27228        "consumes": [
27229          "*/*"
27230        ],
27231        "description": "connect PATCH requests to proxy of Service",
27232        "operationId": "connectCoreV1PatchNamespacedServiceProxy",
27233        "produces": [
27234          "*/*"
27235        ],
27236        "responses": {
27237          "200": {
27238            "description": "OK",
27239            "schema": {
27240              "type": "string"
27241            }
27242          },
27243          "401": {
27244            "description": "Unauthorized"
27245          }
27246        },
27247        "schemes": [
27248          "https"
27249        ],
27250        "tags": [
27251          "core_v1"
27252        ],
27253        "x-kubernetes-action": "connect",
27254        "x-kubernetes-group-version-kind": {
27255          "group": "",
27256          "kind": "ServiceProxyOptions",
27257          "version": "v1"
27258        }
27259      },
27260      "post": {
27261        "consumes": [
27262          "*/*"
27263        ],
27264        "description": "connect POST requests to proxy of Service",
27265        "operationId": "connectCoreV1PostNamespacedServiceProxy",
27266        "produces": [
27267          "*/*"
27268        ],
27269        "responses": {
27270          "200": {
27271            "description": "OK",
27272            "schema": {
27273              "type": "string"
27274            }
27275          },
27276          "401": {
27277            "description": "Unauthorized"
27278          }
27279        },
27280        "schemes": [
27281          "https"
27282        ],
27283        "tags": [
27284          "core_v1"
27285        ],
27286        "x-kubernetes-action": "connect",
27287        "x-kubernetes-group-version-kind": {
27288          "group": "",
27289          "kind": "ServiceProxyOptions",
27290          "version": "v1"
27291        }
27292      },
27293      "put": {
27294        "consumes": [
27295          "*/*"
27296        ],
27297        "description": "connect PUT requests to proxy of Service",
27298        "operationId": "connectCoreV1PutNamespacedServiceProxy",
27299        "produces": [
27300          "*/*"
27301        ],
27302        "responses": {
27303          "200": {
27304            "description": "OK",
27305            "schema": {
27306              "type": "string"
27307            }
27308          },
27309          "401": {
27310            "description": "Unauthorized"
27311          }
27312        },
27313        "schemes": [
27314          "https"
27315        ],
27316        "tags": [
27317          "core_v1"
27318        ],
27319        "x-kubernetes-action": "connect",
27320        "x-kubernetes-group-version-kind": {
27321          "group": "",
27322          "kind": "ServiceProxyOptions",
27323          "version": "v1"
27324        }
27325      }
27326    },
27327    "/api/v1/namespaces/{namespace}/services/{name}/proxy/{path}": {
27328      "delete": {
27329        "consumes": [
27330          "*/*"
27331        ],
27332        "description": "connect DELETE requests to proxy of Service",
27333        "operationId": "connectCoreV1DeleteNamespacedServiceProxyWithPath",
27334        "produces": [
27335          "*/*"
27336        ],
27337        "responses": {
27338          "200": {
27339            "description": "OK",
27340            "schema": {
27341              "type": "string"
27342            }
27343          },
27344          "401": {
27345            "description": "Unauthorized"
27346          }
27347        },
27348        "schemes": [
27349          "https"
27350        ],
27351        "tags": [
27352          "core_v1"
27353        ],
27354        "x-kubernetes-action": "connect",
27355        "x-kubernetes-group-version-kind": {
27356          "group": "",
27357          "kind": "ServiceProxyOptions",
27358          "version": "v1"
27359        }
27360      },
27361      "get": {
27362        "consumes": [
27363          "*/*"
27364        ],
27365        "description": "connect GET requests to proxy of Service",
27366        "operationId": "connectCoreV1GetNamespacedServiceProxyWithPath",
27367        "produces": [
27368          "*/*"
27369        ],
27370        "responses": {
27371          "200": {
27372            "description": "OK",
27373            "schema": {
27374              "type": "string"
27375            }
27376          },
27377          "401": {
27378            "description": "Unauthorized"
27379          }
27380        },
27381        "schemes": [
27382          "https"
27383        ],
27384        "tags": [
27385          "core_v1"
27386        ],
27387        "x-kubernetes-action": "connect",
27388        "x-kubernetes-group-version-kind": {
27389          "group": "",
27390          "kind": "ServiceProxyOptions",
27391          "version": "v1"
27392        }
27393      },
27394      "head": {
27395        "consumes": [
27396          "*/*"
27397        ],
27398        "description": "connect HEAD requests to proxy of Service",
27399        "operationId": "connectCoreV1HeadNamespacedServiceProxyWithPath",
27400        "produces": [
27401          "*/*"
27402        ],
27403        "responses": {
27404          "200": {
27405            "description": "OK",
27406            "schema": {
27407              "type": "string"
27408            }
27409          },
27410          "401": {
27411            "description": "Unauthorized"
27412          }
27413        },
27414        "schemes": [
27415          "https"
27416        ],
27417        "tags": [
27418          "core_v1"
27419        ],
27420        "x-kubernetes-action": "connect",
27421        "x-kubernetes-group-version-kind": {
27422          "group": "",
27423          "kind": "ServiceProxyOptions",
27424          "version": "v1"
27425        }
27426      },
27427      "options": {
27428        "consumes": [
27429          "*/*"
27430        ],
27431        "description": "connect OPTIONS requests to proxy of Service",
27432        "operationId": "connectCoreV1OptionsNamespacedServiceProxyWithPath",
27433        "produces": [
27434          "*/*"
27435        ],
27436        "responses": {
27437          "200": {
27438            "description": "OK",
27439            "schema": {
27440              "type": "string"
27441            }
27442          },
27443          "401": {
27444            "description": "Unauthorized"
27445          }
27446        },
27447        "schemes": [
27448          "https"
27449        ],
27450        "tags": [
27451          "core_v1"
27452        ],
27453        "x-kubernetes-action": "connect",
27454        "x-kubernetes-group-version-kind": {
27455          "group": "",
27456          "kind": "ServiceProxyOptions",
27457          "version": "v1"
27458        }
27459      },
27460      "parameters": [
27461        {
27462          "description": "name of the ServiceProxyOptions",
27463          "in": "path",
27464          "name": "name",
27465          "required": true,
27466          "type": "string",
27467          "uniqueItems": true
27468        },
27469        {
27470          "description": "object name and auth scope, such as for teams and projects",
27471          "in": "path",
27472          "name": "namespace",
27473          "required": true,
27474          "type": "string",
27475          "uniqueItems": true
27476        },
27477        {
27478          "description": "path to the resource",
27479          "in": "path",
27480          "name": "path",
27481          "required": true,
27482          "type": "string",
27483          "uniqueItems": true
27484        },
27485        {
27486          "description": "Path is the part of URLs that include service endpoints, suffixes, and parameters to use for the current proxy request to service. For example, the whole request URL is http://localhost/api/v1/namespaces/kube-system/services/elasticsearch-logging/_search?q=user:kimchy. Path is _search?q=user:kimchy.",
27487          "in": "query",
27488          "name": "path",
27489          "type": "string",
27490          "uniqueItems": true
27491        }
27492      ],
27493      "patch": {
27494        "consumes": [
27495          "*/*"
27496        ],
27497        "description": "connect PATCH requests to proxy of Service",
27498        "operationId": "connectCoreV1PatchNamespacedServiceProxyWithPath",
27499        "produces": [
27500          "*/*"
27501        ],
27502        "responses": {
27503          "200": {
27504            "description": "OK",
27505            "schema": {
27506              "type": "string"
27507            }
27508          },
27509          "401": {
27510            "description": "Unauthorized"
27511          }
27512        },
27513        "schemes": [
27514          "https"
27515        ],
27516        "tags": [
27517          "core_v1"
27518        ],
27519        "x-kubernetes-action": "connect",
27520        "x-kubernetes-group-version-kind": {
27521          "group": "",
27522          "kind": "ServiceProxyOptions",
27523          "version": "v1"
27524        }
27525      },
27526      "post": {
27527        "consumes": [
27528          "*/*"
27529        ],
27530        "description": "connect POST requests to proxy of Service",
27531        "operationId": "connectCoreV1PostNamespacedServiceProxyWithPath",
27532        "produces": [
27533          "*/*"
27534        ],
27535        "responses": {
27536          "200": {
27537            "description": "OK",
27538            "schema": {
27539              "type": "string"
27540            }
27541          },
27542          "401": {
27543            "description": "Unauthorized"
27544          }
27545        },
27546        "schemes": [
27547          "https"
27548        ],
27549        "tags": [
27550          "core_v1"
27551        ],
27552        "x-kubernetes-action": "connect",
27553        "x-kubernetes-group-version-kind": {
27554          "group": "",
27555          "kind": "ServiceProxyOptions",
27556          "version": "v1"
27557        }
27558      },
27559      "put": {
27560        "consumes": [
27561          "*/*"
27562        ],
27563        "description": "connect PUT requests to proxy of Service",
27564        "operationId": "connectCoreV1PutNamespacedServiceProxyWithPath",
27565        "produces": [
27566          "*/*"
27567        ],
27568        "responses": {
27569          "200": {
27570            "description": "OK",
27571            "schema": {
27572              "type": "string"
27573            }
27574          },
27575          "401": {
27576            "description": "Unauthorized"
27577          }
27578        },
27579        "schemes": [
27580          "https"
27581        ],
27582        "tags": [
27583          "core_v1"
27584        ],
27585        "x-kubernetes-action": "connect",
27586        "x-kubernetes-group-version-kind": {
27587          "group": "",
27588          "kind": "ServiceProxyOptions",
27589          "version": "v1"
27590        }
27591      }
27592    },
27593    "/api/v1/namespaces/{namespace}/services/{name}/status": {
27594      "get": {
27595        "consumes": [
27596          "*/*"
27597        ],
27598        "description": "read status of the specified Service",
27599        "operationId": "readCoreV1NamespacedServiceStatus",
27600        "produces": [
27601          "application/json",
27602          "application/yaml",
27603          "application/vnd.kubernetes.protobuf"
27604        ],
27605        "responses": {
27606          "200": {
27607            "description": "OK",
27608            "schema": {
27609              "$ref": "#/definitions/io.k8s.api.core.v1.Service"
27610            }
27611          },
27612          "401": {
27613            "description": "Unauthorized"
27614          }
27615        },
27616        "schemes": [
27617          "https"
27618        ],
27619        "tags": [
27620          "core_v1"
27621        ],
27622        "x-kubernetes-action": "get",
27623        "x-kubernetes-group-version-kind": {
27624          "group": "",
27625          "kind": "Service",
27626          "version": "v1"
27627        }
27628      },
27629      "parameters": [
27630        {
27631          "description": "name of the Service",
27632          "in": "path",
27633          "name": "name",
27634          "required": true,
27635          "type": "string",
27636          "uniqueItems": true
27637        },
27638        {
27639          "description": "object name and auth scope, such as for teams and projects",
27640          "in": "path",
27641          "name": "namespace",
27642          "required": true,
27643          "type": "string",
27644          "uniqueItems": true
27645        },
27646        {
27647          "description": "If 'true', then the output is pretty printed.",
27648          "in": "query",
27649          "name": "pretty",
27650          "type": "string",
27651          "uniqueItems": true
27652        }
27653      ],
27654      "patch": {
27655        "consumes": [
27656          "application/json-patch+json",
27657          "application/merge-patch+json",
27658          "application/strategic-merge-patch+json",
27659          "application/apply-patch+yaml"
27660        ],
27661        "description": "partially update status of the specified Service",
27662        "operationId": "patchCoreV1NamespacedServiceStatus",
27663        "parameters": [
27664          {
27665            "in": "body",
27666            "name": "body",
27667            "required": true,
27668            "schema": {
27669              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
27670            }
27671          },
27672          {
27673            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
27674            "in": "query",
27675            "name": "dryRun",
27676            "type": "string",
27677            "uniqueItems": true
27678          },
27679          {
27680            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
27681            "in": "query",
27682            "name": "fieldManager",
27683            "type": "string",
27684            "uniqueItems": true
27685          },
27686          {
27687            "description": "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.",
27688            "in": "query",
27689            "name": "force",
27690            "type": "boolean",
27691            "uniqueItems": true
27692          }
27693        ],
27694        "produces": [
27695          "application/json",
27696          "application/yaml",
27697          "application/vnd.kubernetes.protobuf"
27698        ],
27699        "responses": {
27700          "200": {
27701            "description": "OK",
27702            "schema": {
27703              "$ref": "#/definitions/io.k8s.api.core.v1.Service"
27704            }
27705          },
27706          "201": {
27707            "description": "Created",
27708            "schema": {
27709              "$ref": "#/definitions/io.k8s.api.core.v1.Service"
27710            }
27711          },
27712          "401": {
27713            "description": "Unauthorized"
27714          }
27715        },
27716        "schemes": [
27717          "https"
27718        ],
27719        "tags": [
27720          "core_v1"
27721        ],
27722        "x-kubernetes-action": "patch",
27723        "x-kubernetes-group-version-kind": {
27724          "group": "",
27725          "kind": "Service",
27726          "version": "v1"
27727        }
27728      },
27729      "put": {
27730        "consumes": [
27731          "*/*"
27732        ],
27733        "description": "replace status of the specified Service",
27734        "operationId": "replaceCoreV1NamespacedServiceStatus",
27735        "parameters": [
27736          {
27737            "in": "body",
27738            "name": "body",
27739            "required": true,
27740            "schema": {
27741              "$ref": "#/definitions/io.k8s.api.core.v1.Service"
27742            }
27743          },
27744          {
27745            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
27746            "in": "query",
27747            "name": "dryRun",
27748            "type": "string",
27749            "uniqueItems": true
27750          },
27751          {
27752            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
27753            "in": "query",
27754            "name": "fieldManager",
27755            "type": "string",
27756            "uniqueItems": true
27757          }
27758        ],
27759        "produces": [
27760          "application/json",
27761          "application/yaml",
27762          "application/vnd.kubernetes.protobuf"
27763        ],
27764        "responses": {
27765          "200": {
27766            "description": "OK",
27767            "schema": {
27768              "$ref": "#/definitions/io.k8s.api.core.v1.Service"
27769            }
27770          },
27771          "201": {
27772            "description": "Created",
27773            "schema": {
27774              "$ref": "#/definitions/io.k8s.api.core.v1.Service"
27775            }
27776          },
27777          "401": {
27778            "description": "Unauthorized"
27779          }
27780        },
27781        "schemes": [
27782          "https"
27783        ],
27784        "tags": [
27785          "core_v1"
27786        ],
27787        "x-kubernetes-action": "put",
27788        "x-kubernetes-group-version-kind": {
27789          "group": "",
27790          "kind": "Service",
27791          "version": "v1"
27792        }
27793      }
27794    },
27795    "/api/v1/namespaces/{name}": {
27796      "delete": {
27797        "consumes": [
27798          "*/*"
27799        ],
27800        "description": "delete a Namespace",
27801        "operationId": "deleteCoreV1Namespace",
27802        "parameters": [
27803          {
27804            "in": "body",
27805            "name": "body",
27806            "schema": {
27807              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
27808            }
27809          },
27810          {
27811            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
27812            "in": "query",
27813            "name": "dryRun",
27814            "type": "string",
27815            "uniqueItems": true
27816          },
27817          {
27818            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
27819            "in": "query",
27820            "name": "gracePeriodSeconds",
27821            "type": "integer",
27822            "uniqueItems": true
27823          },
27824          {
27825            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
27826            "in": "query",
27827            "name": "orphanDependents",
27828            "type": "boolean",
27829            "uniqueItems": true
27830          },
27831          {
27832            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
27833            "in": "query",
27834            "name": "propagationPolicy",
27835            "type": "string",
27836            "uniqueItems": true
27837          }
27838        ],
27839        "produces": [
27840          "application/json",
27841          "application/yaml",
27842          "application/vnd.kubernetes.protobuf"
27843        ],
27844        "responses": {
27845          "200": {
27846            "description": "OK",
27847            "schema": {
27848              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
27849            }
27850          },
27851          "202": {
27852            "description": "Accepted",
27853            "schema": {
27854              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
27855            }
27856          },
27857          "401": {
27858            "description": "Unauthorized"
27859          }
27860        },
27861        "schemes": [
27862          "https"
27863        ],
27864        "tags": [
27865          "core_v1"
27866        ],
27867        "x-kubernetes-action": "delete",
27868        "x-kubernetes-group-version-kind": {
27869          "group": "",
27870          "kind": "Namespace",
27871          "version": "v1"
27872        }
27873      },
27874      "get": {
27875        "consumes": [
27876          "*/*"
27877        ],
27878        "description": "read the specified Namespace",
27879        "operationId": "readCoreV1Namespace",
27880        "produces": [
27881          "application/json",
27882          "application/yaml",
27883          "application/vnd.kubernetes.protobuf"
27884        ],
27885        "responses": {
27886          "200": {
27887            "description": "OK",
27888            "schema": {
27889              "$ref": "#/definitions/io.k8s.api.core.v1.Namespace"
27890            }
27891          },
27892          "401": {
27893            "description": "Unauthorized"
27894          }
27895        },
27896        "schemes": [
27897          "https"
27898        ],
27899        "tags": [
27900          "core_v1"
27901        ],
27902        "x-kubernetes-action": "get",
27903        "x-kubernetes-group-version-kind": {
27904          "group": "",
27905          "kind": "Namespace",
27906          "version": "v1"
27907        }
27908      },
27909      "parameters": [
27910        {
27911          "description": "name of the Namespace",
27912          "in": "path",
27913          "name": "name",
27914          "required": true,
27915          "type": "string",
27916          "uniqueItems": true
27917        },
27918        {
27919          "description": "If 'true', then the output is pretty printed.",
27920          "in": "query",
27921          "name": "pretty",
27922          "type": "string",
27923          "uniqueItems": true
27924        }
27925      ],
27926      "patch": {
27927        "consumes": [
27928          "application/json-patch+json",
27929          "application/merge-patch+json",
27930          "application/strategic-merge-patch+json",
27931          "application/apply-patch+yaml"
27932        ],
27933        "description": "partially update the specified Namespace",
27934        "operationId": "patchCoreV1Namespace",
27935        "parameters": [
27936          {
27937            "in": "body",
27938            "name": "body",
27939            "required": true,
27940            "schema": {
27941              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
27942            }
27943          },
27944          {
27945            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
27946            "in": "query",
27947            "name": "dryRun",
27948            "type": "string",
27949            "uniqueItems": true
27950          },
27951          {
27952            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
27953            "in": "query",
27954            "name": "fieldManager",
27955            "type": "string",
27956            "uniqueItems": true
27957          },
27958          {
27959            "description": "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.",
27960            "in": "query",
27961            "name": "force",
27962            "type": "boolean",
27963            "uniqueItems": true
27964          }
27965        ],
27966        "produces": [
27967          "application/json",
27968          "application/yaml",
27969          "application/vnd.kubernetes.protobuf"
27970        ],
27971        "responses": {
27972          "200": {
27973            "description": "OK",
27974            "schema": {
27975              "$ref": "#/definitions/io.k8s.api.core.v1.Namespace"
27976            }
27977          },
27978          "201": {
27979            "description": "Created",
27980            "schema": {
27981              "$ref": "#/definitions/io.k8s.api.core.v1.Namespace"
27982            }
27983          },
27984          "401": {
27985            "description": "Unauthorized"
27986          }
27987        },
27988        "schemes": [
27989          "https"
27990        ],
27991        "tags": [
27992          "core_v1"
27993        ],
27994        "x-kubernetes-action": "patch",
27995        "x-kubernetes-group-version-kind": {
27996          "group": "",
27997          "kind": "Namespace",
27998          "version": "v1"
27999        }
28000      },
28001      "put": {
28002        "consumes": [
28003          "*/*"
28004        ],
28005        "description": "replace the specified Namespace",
28006        "operationId": "replaceCoreV1Namespace",
28007        "parameters": [
28008          {
28009            "in": "body",
28010            "name": "body",
28011            "required": true,
28012            "schema": {
28013              "$ref": "#/definitions/io.k8s.api.core.v1.Namespace"
28014            }
28015          },
28016          {
28017            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
28018            "in": "query",
28019            "name": "dryRun",
28020            "type": "string",
28021            "uniqueItems": true
28022          },
28023          {
28024            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
28025            "in": "query",
28026            "name": "fieldManager",
28027            "type": "string",
28028            "uniqueItems": true
28029          }
28030        ],
28031        "produces": [
28032          "application/json",
28033          "application/yaml",
28034          "application/vnd.kubernetes.protobuf"
28035        ],
28036        "responses": {
28037          "200": {
28038            "description": "OK",
28039            "schema": {
28040              "$ref": "#/definitions/io.k8s.api.core.v1.Namespace"
28041            }
28042          },
28043          "201": {
28044            "description": "Created",
28045            "schema": {
28046              "$ref": "#/definitions/io.k8s.api.core.v1.Namespace"
28047            }
28048          },
28049          "401": {
28050            "description": "Unauthorized"
28051          }
28052        },
28053        "schemes": [
28054          "https"
28055        ],
28056        "tags": [
28057          "core_v1"
28058        ],
28059        "x-kubernetes-action": "put",
28060        "x-kubernetes-group-version-kind": {
28061          "group": "",
28062          "kind": "Namespace",
28063          "version": "v1"
28064        }
28065      }
28066    },
28067    "/api/v1/namespaces/{name}/finalize": {
28068      "parameters": [
28069        {
28070          "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
28071          "in": "query",
28072          "name": "dryRun",
28073          "type": "string",
28074          "uniqueItems": true
28075        },
28076        {
28077          "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
28078          "in": "query",
28079          "name": "fieldManager",
28080          "type": "string",
28081          "uniqueItems": true
28082        },
28083        {
28084          "description": "name of the Namespace",
28085          "in": "path",
28086          "name": "name",
28087          "required": true,
28088          "type": "string",
28089          "uniqueItems": true
28090        },
28091        {
28092          "description": "If 'true', then the output is pretty printed.",
28093          "in": "query",
28094          "name": "pretty",
28095          "type": "string",
28096          "uniqueItems": true
28097        }
28098      ],
28099      "put": {
28100        "consumes": [
28101          "*/*"
28102        ],
28103        "description": "replace finalize of the specified Namespace",
28104        "operationId": "replaceCoreV1NamespaceFinalize",
28105        "parameters": [
28106          {
28107            "in": "body",
28108            "name": "body",
28109            "required": true,
28110            "schema": {
28111              "$ref": "#/definitions/io.k8s.api.core.v1.Namespace"
28112            }
28113          }
28114        ],
28115        "produces": [
28116          "application/json",
28117          "application/yaml",
28118          "application/vnd.kubernetes.protobuf"
28119        ],
28120        "responses": {
28121          "200": {
28122            "description": "OK",
28123            "schema": {
28124              "$ref": "#/definitions/io.k8s.api.core.v1.Namespace"
28125            }
28126          },
28127          "201": {
28128            "description": "Created",
28129            "schema": {
28130              "$ref": "#/definitions/io.k8s.api.core.v1.Namespace"
28131            }
28132          },
28133          "401": {
28134            "description": "Unauthorized"
28135          }
28136        },
28137        "schemes": [
28138          "https"
28139        ],
28140        "tags": [
28141          "core_v1"
28142        ],
28143        "x-kubernetes-action": "put",
28144        "x-kubernetes-group-version-kind": {
28145          "group": "",
28146          "kind": "Namespace",
28147          "version": "v1"
28148        }
28149      }
28150    },
28151    "/api/v1/namespaces/{name}/status": {
28152      "get": {
28153        "consumes": [
28154          "*/*"
28155        ],
28156        "description": "read status of the specified Namespace",
28157        "operationId": "readCoreV1NamespaceStatus",
28158        "produces": [
28159          "application/json",
28160          "application/yaml",
28161          "application/vnd.kubernetes.protobuf"
28162        ],
28163        "responses": {
28164          "200": {
28165            "description": "OK",
28166            "schema": {
28167              "$ref": "#/definitions/io.k8s.api.core.v1.Namespace"
28168            }
28169          },
28170          "401": {
28171            "description": "Unauthorized"
28172          }
28173        },
28174        "schemes": [
28175          "https"
28176        ],
28177        "tags": [
28178          "core_v1"
28179        ],
28180        "x-kubernetes-action": "get",
28181        "x-kubernetes-group-version-kind": {
28182          "group": "",
28183          "kind": "Namespace",
28184          "version": "v1"
28185        }
28186      },
28187      "parameters": [
28188        {
28189          "description": "name of the Namespace",
28190          "in": "path",
28191          "name": "name",
28192          "required": true,
28193          "type": "string",
28194          "uniqueItems": true
28195        },
28196        {
28197          "description": "If 'true', then the output is pretty printed.",
28198          "in": "query",
28199          "name": "pretty",
28200          "type": "string",
28201          "uniqueItems": true
28202        }
28203      ],
28204      "patch": {
28205        "consumes": [
28206          "application/json-patch+json",
28207          "application/merge-patch+json",
28208          "application/strategic-merge-patch+json",
28209          "application/apply-patch+yaml"
28210        ],
28211        "description": "partially update status of the specified Namespace",
28212        "operationId": "patchCoreV1NamespaceStatus",
28213        "parameters": [
28214          {
28215            "in": "body",
28216            "name": "body",
28217            "required": true,
28218            "schema": {
28219              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
28220            }
28221          },
28222          {
28223            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
28224            "in": "query",
28225            "name": "dryRun",
28226            "type": "string",
28227            "uniqueItems": true
28228          },
28229          {
28230            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
28231            "in": "query",
28232            "name": "fieldManager",
28233            "type": "string",
28234            "uniqueItems": true
28235          },
28236          {
28237            "description": "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.",
28238            "in": "query",
28239            "name": "force",
28240            "type": "boolean",
28241            "uniqueItems": true
28242          }
28243        ],
28244        "produces": [
28245          "application/json",
28246          "application/yaml",
28247          "application/vnd.kubernetes.protobuf"
28248        ],
28249        "responses": {
28250          "200": {
28251            "description": "OK",
28252            "schema": {
28253              "$ref": "#/definitions/io.k8s.api.core.v1.Namespace"
28254            }
28255          },
28256          "201": {
28257            "description": "Created",
28258            "schema": {
28259              "$ref": "#/definitions/io.k8s.api.core.v1.Namespace"
28260            }
28261          },
28262          "401": {
28263            "description": "Unauthorized"
28264          }
28265        },
28266        "schemes": [
28267          "https"
28268        ],
28269        "tags": [
28270          "core_v1"
28271        ],
28272        "x-kubernetes-action": "patch",
28273        "x-kubernetes-group-version-kind": {
28274          "group": "",
28275          "kind": "Namespace",
28276          "version": "v1"
28277        }
28278      },
28279      "put": {
28280        "consumes": [
28281          "*/*"
28282        ],
28283        "description": "replace status of the specified Namespace",
28284        "operationId": "replaceCoreV1NamespaceStatus",
28285        "parameters": [
28286          {
28287            "in": "body",
28288            "name": "body",
28289            "required": true,
28290            "schema": {
28291              "$ref": "#/definitions/io.k8s.api.core.v1.Namespace"
28292            }
28293          },
28294          {
28295            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
28296            "in": "query",
28297            "name": "dryRun",
28298            "type": "string",
28299            "uniqueItems": true
28300          },
28301          {
28302            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
28303            "in": "query",
28304            "name": "fieldManager",
28305            "type": "string",
28306            "uniqueItems": true
28307          }
28308        ],
28309        "produces": [
28310          "application/json",
28311          "application/yaml",
28312          "application/vnd.kubernetes.protobuf"
28313        ],
28314        "responses": {
28315          "200": {
28316            "description": "OK",
28317            "schema": {
28318              "$ref": "#/definitions/io.k8s.api.core.v1.Namespace"
28319            }
28320          },
28321          "201": {
28322            "description": "Created",
28323            "schema": {
28324              "$ref": "#/definitions/io.k8s.api.core.v1.Namespace"
28325            }
28326          },
28327          "401": {
28328            "description": "Unauthorized"
28329          }
28330        },
28331        "schemes": [
28332          "https"
28333        ],
28334        "tags": [
28335          "core_v1"
28336        ],
28337        "x-kubernetes-action": "put",
28338        "x-kubernetes-group-version-kind": {
28339          "group": "",
28340          "kind": "Namespace",
28341          "version": "v1"
28342        }
28343      }
28344    },
28345    "/api/v1/nodes": {
28346      "delete": {
28347        "consumes": [
28348          "*/*"
28349        ],
28350        "description": "delete collection of Node",
28351        "operationId": "deleteCoreV1CollectionNode",
28352        "parameters": [
28353          {
28354            "in": "body",
28355            "name": "body",
28356            "schema": {
28357              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
28358            }
28359          },
28360          {
28361            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
28362            "in": "query",
28363            "name": "continue",
28364            "type": "string",
28365            "uniqueItems": true
28366          },
28367          {
28368            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
28369            "in": "query",
28370            "name": "dryRun",
28371            "type": "string",
28372            "uniqueItems": true
28373          },
28374          {
28375            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
28376            "in": "query",
28377            "name": "fieldSelector",
28378            "type": "string",
28379            "uniqueItems": true
28380          },
28381          {
28382            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
28383            "in": "query",
28384            "name": "gracePeriodSeconds",
28385            "type": "integer",
28386            "uniqueItems": true
28387          },
28388          {
28389            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
28390            "in": "query",
28391            "name": "labelSelector",
28392            "type": "string",
28393            "uniqueItems": true
28394          },
28395          {
28396            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
28397            "in": "query",
28398            "name": "limit",
28399            "type": "integer",
28400            "uniqueItems": true
28401          },
28402          {
28403            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
28404            "in": "query",
28405            "name": "orphanDependents",
28406            "type": "boolean",
28407            "uniqueItems": true
28408          },
28409          {
28410            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
28411            "in": "query",
28412            "name": "propagationPolicy",
28413            "type": "string",
28414            "uniqueItems": true
28415          },
28416          {
28417            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
28418            "in": "query",
28419            "name": "resourceVersion",
28420            "type": "string",
28421            "uniqueItems": true
28422          },
28423          {
28424            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
28425            "in": "query",
28426            "name": "resourceVersionMatch",
28427            "type": "string",
28428            "uniqueItems": true
28429          },
28430          {
28431            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
28432            "in": "query",
28433            "name": "timeoutSeconds",
28434            "type": "integer",
28435            "uniqueItems": true
28436          }
28437        ],
28438        "produces": [
28439          "application/json",
28440          "application/yaml",
28441          "application/vnd.kubernetes.protobuf"
28442        ],
28443        "responses": {
28444          "200": {
28445            "description": "OK",
28446            "schema": {
28447              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
28448            }
28449          },
28450          "401": {
28451            "description": "Unauthorized"
28452          }
28453        },
28454        "schemes": [
28455          "https"
28456        ],
28457        "tags": [
28458          "core_v1"
28459        ],
28460        "x-kubernetes-action": "deletecollection",
28461        "x-kubernetes-group-version-kind": {
28462          "group": "",
28463          "kind": "Node",
28464          "version": "v1"
28465        }
28466      },
28467      "get": {
28468        "consumes": [
28469          "*/*"
28470        ],
28471        "description": "list or watch objects of kind Node",
28472        "operationId": "listCoreV1Node",
28473        "parameters": [
28474          {
28475            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
28476            "in": "query",
28477            "name": "allowWatchBookmarks",
28478            "type": "boolean",
28479            "uniqueItems": true
28480          },
28481          {
28482            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
28483            "in": "query",
28484            "name": "continue",
28485            "type": "string",
28486            "uniqueItems": true
28487          },
28488          {
28489            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
28490            "in": "query",
28491            "name": "fieldSelector",
28492            "type": "string",
28493            "uniqueItems": true
28494          },
28495          {
28496            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
28497            "in": "query",
28498            "name": "labelSelector",
28499            "type": "string",
28500            "uniqueItems": true
28501          },
28502          {
28503            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
28504            "in": "query",
28505            "name": "limit",
28506            "type": "integer",
28507            "uniqueItems": true
28508          },
28509          {
28510            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
28511            "in": "query",
28512            "name": "resourceVersion",
28513            "type": "string",
28514            "uniqueItems": true
28515          },
28516          {
28517            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
28518            "in": "query",
28519            "name": "resourceVersionMatch",
28520            "type": "string",
28521            "uniqueItems": true
28522          },
28523          {
28524            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
28525            "in": "query",
28526            "name": "timeoutSeconds",
28527            "type": "integer",
28528            "uniqueItems": true
28529          },
28530          {
28531            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
28532            "in": "query",
28533            "name": "watch",
28534            "type": "boolean",
28535            "uniqueItems": true
28536          }
28537        ],
28538        "produces": [
28539          "application/json",
28540          "application/yaml",
28541          "application/vnd.kubernetes.protobuf",
28542          "application/json;stream=watch",
28543          "application/vnd.kubernetes.protobuf;stream=watch"
28544        ],
28545        "responses": {
28546          "200": {
28547            "description": "OK",
28548            "schema": {
28549              "$ref": "#/definitions/io.k8s.api.core.v1.NodeList"
28550            }
28551          },
28552          "401": {
28553            "description": "Unauthorized"
28554          }
28555        },
28556        "schemes": [
28557          "https"
28558        ],
28559        "tags": [
28560          "core_v1"
28561        ],
28562        "x-kubernetes-action": "list",
28563        "x-kubernetes-group-version-kind": {
28564          "group": "",
28565          "kind": "Node",
28566          "version": "v1"
28567        }
28568      },
28569      "parameters": [
28570        {
28571          "description": "If 'true', then the output is pretty printed.",
28572          "in": "query",
28573          "name": "pretty",
28574          "type": "string",
28575          "uniqueItems": true
28576        }
28577      ],
28578      "post": {
28579        "consumes": [
28580          "*/*"
28581        ],
28582        "description": "create a Node",
28583        "operationId": "createCoreV1Node",
28584        "parameters": [
28585          {
28586            "in": "body",
28587            "name": "body",
28588            "required": true,
28589            "schema": {
28590              "$ref": "#/definitions/io.k8s.api.core.v1.Node"
28591            }
28592          },
28593          {
28594            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
28595            "in": "query",
28596            "name": "dryRun",
28597            "type": "string",
28598            "uniqueItems": true
28599          },
28600          {
28601            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
28602            "in": "query",
28603            "name": "fieldManager",
28604            "type": "string",
28605            "uniqueItems": true
28606          }
28607        ],
28608        "produces": [
28609          "application/json",
28610          "application/yaml",
28611          "application/vnd.kubernetes.protobuf"
28612        ],
28613        "responses": {
28614          "200": {
28615            "description": "OK",
28616            "schema": {
28617              "$ref": "#/definitions/io.k8s.api.core.v1.Node"
28618            }
28619          },
28620          "201": {
28621            "description": "Created",
28622            "schema": {
28623              "$ref": "#/definitions/io.k8s.api.core.v1.Node"
28624            }
28625          },
28626          "202": {
28627            "description": "Accepted",
28628            "schema": {
28629              "$ref": "#/definitions/io.k8s.api.core.v1.Node"
28630            }
28631          },
28632          "401": {
28633            "description": "Unauthorized"
28634          }
28635        },
28636        "schemes": [
28637          "https"
28638        ],
28639        "tags": [
28640          "core_v1"
28641        ],
28642        "x-kubernetes-action": "post",
28643        "x-kubernetes-group-version-kind": {
28644          "group": "",
28645          "kind": "Node",
28646          "version": "v1"
28647        }
28648      }
28649    },
28650    "/api/v1/nodes/{name}": {
28651      "delete": {
28652        "consumes": [
28653          "*/*"
28654        ],
28655        "description": "delete a Node",
28656        "operationId": "deleteCoreV1Node",
28657        "parameters": [
28658          {
28659            "in": "body",
28660            "name": "body",
28661            "schema": {
28662              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
28663            }
28664          },
28665          {
28666            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
28667            "in": "query",
28668            "name": "dryRun",
28669            "type": "string",
28670            "uniqueItems": true
28671          },
28672          {
28673            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
28674            "in": "query",
28675            "name": "gracePeriodSeconds",
28676            "type": "integer",
28677            "uniqueItems": true
28678          },
28679          {
28680            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
28681            "in": "query",
28682            "name": "orphanDependents",
28683            "type": "boolean",
28684            "uniqueItems": true
28685          },
28686          {
28687            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
28688            "in": "query",
28689            "name": "propagationPolicy",
28690            "type": "string",
28691            "uniqueItems": true
28692          }
28693        ],
28694        "produces": [
28695          "application/json",
28696          "application/yaml",
28697          "application/vnd.kubernetes.protobuf"
28698        ],
28699        "responses": {
28700          "200": {
28701            "description": "OK",
28702            "schema": {
28703              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
28704            }
28705          },
28706          "202": {
28707            "description": "Accepted",
28708            "schema": {
28709              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
28710            }
28711          },
28712          "401": {
28713            "description": "Unauthorized"
28714          }
28715        },
28716        "schemes": [
28717          "https"
28718        ],
28719        "tags": [
28720          "core_v1"
28721        ],
28722        "x-kubernetes-action": "delete",
28723        "x-kubernetes-group-version-kind": {
28724          "group": "",
28725          "kind": "Node",
28726          "version": "v1"
28727        }
28728      },
28729      "get": {
28730        "consumes": [
28731          "*/*"
28732        ],
28733        "description": "read the specified Node",
28734        "operationId": "readCoreV1Node",
28735        "produces": [
28736          "application/json",
28737          "application/yaml",
28738          "application/vnd.kubernetes.protobuf"
28739        ],
28740        "responses": {
28741          "200": {
28742            "description": "OK",
28743            "schema": {
28744              "$ref": "#/definitions/io.k8s.api.core.v1.Node"
28745            }
28746          },
28747          "401": {
28748            "description": "Unauthorized"
28749          }
28750        },
28751        "schemes": [
28752          "https"
28753        ],
28754        "tags": [
28755          "core_v1"
28756        ],
28757        "x-kubernetes-action": "get",
28758        "x-kubernetes-group-version-kind": {
28759          "group": "",
28760          "kind": "Node",
28761          "version": "v1"
28762        }
28763      },
28764      "parameters": [
28765        {
28766          "description": "name of the Node",
28767          "in": "path",
28768          "name": "name",
28769          "required": true,
28770          "type": "string",
28771          "uniqueItems": true
28772        },
28773        {
28774          "description": "If 'true', then the output is pretty printed.",
28775          "in": "query",
28776          "name": "pretty",
28777          "type": "string",
28778          "uniqueItems": true
28779        }
28780      ],
28781      "patch": {
28782        "consumes": [
28783          "application/json-patch+json",
28784          "application/merge-patch+json",
28785          "application/strategic-merge-patch+json",
28786          "application/apply-patch+yaml"
28787        ],
28788        "description": "partially update the specified Node",
28789        "operationId": "patchCoreV1Node",
28790        "parameters": [
28791          {
28792            "in": "body",
28793            "name": "body",
28794            "required": true,
28795            "schema": {
28796              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
28797            }
28798          },
28799          {
28800            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
28801            "in": "query",
28802            "name": "dryRun",
28803            "type": "string",
28804            "uniqueItems": true
28805          },
28806          {
28807            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
28808            "in": "query",
28809            "name": "fieldManager",
28810            "type": "string",
28811            "uniqueItems": true
28812          },
28813          {
28814            "description": "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.",
28815            "in": "query",
28816            "name": "force",
28817            "type": "boolean",
28818            "uniqueItems": true
28819          }
28820        ],
28821        "produces": [
28822          "application/json",
28823          "application/yaml",
28824          "application/vnd.kubernetes.protobuf"
28825        ],
28826        "responses": {
28827          "200": {
28828            "description": "OK",
28829            "schema": {
28830              "$ref": "#/definitions/io.k8s.api.core.v1.Node"
28831            }
28832          },
28833          "201": {
28834            "description": "Created",
28835            "schema": {
28836              "$ref": "#/definitions/io.k8s.api.core.v1.Node"
28837            }
28838          },
28839          "401": {
28840            "description": "Unauthorized"
28841          }
28842        },
28843        "schemes": [
28844          "https"
28845        ],
28846        "tags": [
28847          "core_v1"
28848        ],
28849        "x-kubernetes-action": "patch",
28850        "x-kubernetes-group-version-kind": {
28851          "group": "",
28852          "kind": "Node",
28853          "version": "v1"
28854        }
28855      },
28856      "put": {
28857        "consumes": [
28858          "*/*"
28859        ],
28860        "description": "replace the specified Node",
28861        "operationId": "replaceCoreV1Node",
28862        "parameters": [
28863          {
28864            "in": "body",
28865            "name": "body",
28866            "required": true,
28867            "schema": {
28868              "$ref": "#/definitions/io.k8s.api.core.v1.Node"
28869            }
28870          },
28871          {
28872            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
28873            "in": "query",
28874            "name": "dryRun",
28875            "type": "string",
28876            "uniqueItems": true
28877          },
28878          {
28879            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
28880            "in": "query",
28881            "name": "fieldManager",
28882            "type": "string",
28883            "uniqueItems": true
28884          }
28885        ],
28886        "produces": [
28887          "application/json",
28888          "application/yaml",
28889          "application/vnd.kubernetes.protobuf"
28890        ],
28891        "responses": {
28892          "200": {
28893            "description": "OK",
28894            "schema": {
28895              "$ref": "#/definitions/io.k8s.api.core.v1.Node"
28896            }
28897          },
28898          "201": {
28899            "description": "Created",
28900            "schema": {
28901              "$ref": "#/definitions/io.k8s.api.core.v1.Node"
28902            }
28903          },
28904          "401": {
28905            "description": "Unauthorized"
28906          }
28907        },
28908        "schemes": [
28909          "https"
28910        ],
28911        "tags": [
28912          "core_v1"
28913        ],
28914        "x-kubernetes-action": "put",
28915        "x-kubernetes-group-version-kind": {
28916          "group": "",
28917          "kind": "Node",
28918          "version": "v1"
28919        }
28920      }
28921    },
28922    "/api/v1/nodes/{name}/proxy": {
28923      "delete": {
28924        "consumes": [
28925          "*/*"
28926        ],
28927        "description": "connect DELETE requests to proxy of Node",
28928        "operationId": "connectCoreV1DeleteNodeProxy",
28929        "produces": [
28930          "*/*"
28931        ],
28932        "responses": {
28933          "200": {
28934            "description": "OK",
28935            "schema": {
28936              "type": "string"
28937            }
28938          },
28939          "401": {
28940            "description": "Unauthorized"
28941          }
28942        },
28943        "schemes": [
28944          "https"
28945        ],
28946        "tags": [
28947          "core_v1"
28948        ],
28949        "x-kubernetes-action": "connect",
28950        "x-kubernetes-group-version-kind": {
28951          "group": "",
28952          "kind": "NodeProxyOptions",
28953          "version": "v1"
28954        }
28955      },
28956      "get": {
28957        "consumes": [
28958          "*/*"
28959        ],
28960        "description": "connect GET requests to proxy of Node",
28961        "operationId": "connectCoreV1GetNodeProxy",
28962        "produces": [
28963          "*/*"
28964        ],
28965        "responses": {
28966          "200": {
28967            "description": "OK",
28968            "schema": {
28969              "type": "string"
28970            }
28971          },
28972          "401": {
28973            "description": "Unauthorized"
28974          }
28975        },
28976        "schemes": [
28977          "https"
28978        ],
28979        "tags": [
28980          "core_v1"
28981        ],
28982        "x-kubernetes-action": "connect",
28983        "x-kubernetes-group-version-kind": {
28984          "group": "",
28985          "kind": "NodeProxyOptions",
28986          "version": "v1"
28987        }
28988      },
28989      "head": {
28990        "consumes": [
28991          "*/*"
28992        ],
28993        "description": "connect HEAD requests to proxy of Node",
28994        "operationId": "connectCoreV1HeadNodeProxy",
28995        "produces": [
28996          "*/*"
28997        ],
28998        "responses": {
28999          "200": {
29000            "description": "OK",
29001            "schema": {
29002              "type": "string"
29003            }
29004          },
29005          "401": {
29006            "description": "Unauthorized"
29007          }
29008        },
29009        "schemes": [
29010          "https"
29011        ],
29012        "tags": [
29013          "core_v1"
29014        ],
29015        "x-kubernetes-action": "connect",
29016        "x-kubernetes-group-version-kind": {
29017          "group": "",
29018          "kind": "NodeProxyOptions",
29019          "version": "v1"
29020        }
29021      },
29022      "options": {
29023        "consumes": [
29024          "*/*"
29025        ],
29026        "description": "connect OPTIONS requests to proxy of Node",
29027        "operationId": "connectCoreV1OptionsNodeProxy",
29028        "produces": [
29029          "*/*"
29030        ],
29031        "responses": {
29032          "200": {
29033            "description": "OK",
29034            "schema": {
29035              "type": "string"
29036            }
29037          },
29038          "401": {
29039            "description": "Unauthorized"
29040          }
29041        },
29042        "schemes": [
29043          "https"
29044        ],
29045        "tags": [
29046          "core_v1"
29047        ],
29048        "x-kubernetes-action": "connect",
29049        "x-kubernetes-group-version-kind": {
29050          "group": "",
29051          "kind": "NodeProxyOptions",
29052          "version": "v1"
29053        }
29054      },
29055      "parameters": [
29056        {
29057          "description": "name of the NodeProxyOptions",
29058          "in": "path",
29059          "name": "name",
29060          "required": true,
29061          "type": "string",
29062          "uniqueItems": true
29063        },
29064        {
29065          "description": "Path is the URL path to use for the current proxy request to node.",
29066          "in": "query",
29067          "name": "path",
29068          "type": "string",
29069          "uniqueItems": true
29070        }
29071      ],
29072      "patch": {
29073        "consumes": [
29074          "*/*"
29075        ],
29076        "description": "connect PATCH requests to proxy of Node",
29077        "operationId": "connectCoreV1PatchNodeProxy",
29078        "produces": [
29079          "*/*"
29080        ],
29081        "responses": {
29082          "200": {
29083            "description": "OK",
29084            "schema": {
29085              "type": "string"
29086            }
29087          },
29088          "401": {
29089            "description": "Unauthorized"
29090          }
29091        },
29092        "schemes": [
29093          "https"
29094        ],
29095        "tags": [
29096          "core_v1"
29097        ],
29098        "x-kubernetes-action": "connect",
29099        "x-kubernetes-group-version-kind": {
29100          "group": "",
29101          "kind": "NodeProxyOptions",
29102          "version": "v1"
29103        }
29104      },
29105      "post": {
29106        "consumes": [
29107          "*/*"
29108        ],
29109        "description": "connect POST requests to proxy of Node",
29110        "operationId": "connectCoreV1PostNodeProxy",
29111        "produces": [
29112          "*/*"
29113        ],
29114        "responses": {
29115          "200": {
29116            "description": "OK",
29117            "schema": {
29118              "type": "string"
29119            }
29120          },
29121          "401": {
29122            "description": "Unauthorized"
29123          }
29124        },
29125        "schemes": [
29126          "https"
29127        ],
29128        "tags": [
29129          "core_v1"
29130        ],
29131        "x-kubernetes-action": "connect",
29132        "x-kubernetes-group-version-kind": {
29133          "group": "",
29134          "kind": "NodeProxyOptions",
29135          "version": "v1"
29136        }
29137      },
29138      "put": {
29139        "consumes": [
29140          "*/*"
29141        ],
29142        "description": "connect PUT requests to proxy of Node",
29143        "operationId": "connectCoreV1PutNodeProxy",
29144        "produces": [
29145          "*/*"
29146        ],
29147        "responses": {
29148          "200": {
29149            "description": "OK",
29150            "schema": {
29151              "type": "string"
29152            }
29153          },
29154          "401": {
29155            "description": "Unauthorized"
29156          }
29157        },
29158        "schemes": [
29159          "https"
29160        ],
29161        "tags": [
29162          "core_v1"
29163        ],
29164        "x-kubernetes-action": "connect",
29165        "x-kubernetes-group-version-kind": {
29166          "group": "",
29167          "kind": "NodeProxyOptions",
29168          "version": "v1"
29169        }
29170      }
29171    },
29172    "/api/v1/nodes/{name}/proxy/{path}": {
29173      "delete": {
29174        "consumes": [
29175          "*/*"
29176        ],
29177        "description": "connect DELETE requests to proxy of Node",
29178        "operationId": "connectCoreV1DeleteNodeProxyWithPath",
29179        "produces": [
29180          "*/*"
29181        ],
29182        "responses": {
29183          "200": {
29184            "description": "OK",
29185            "schema": {
29186              "type": "string"
29187            }
29188          },
29189          "401": {
29190            "description": "Unauthorized"
29191          }
29192        },
29193        "schemes": [
29194          "https"
29195        ],
29196        "tags": [
29197          "core_v1"
29198        ],
29199        "x-kubernetes-action": "connect",
29200        "x-kubernetes-group-version-kind": {
29201          "group": "",
29202          "kind": "NodeProxyOptions",
29203          "version": "v1"
29204        }
29205      },
29206      "get": {
29207        "consumes": [
29208          "*/*"
29209        ],
29210        "description": "connect GET requests to proxy of Node",
29211        "operationId": "connectCoreV1GetNodeProxyWithPath",
29212        "produces": [
29213          "*/*"
29214        ],
29215        "responses": {
29216          "200": {
29217            "description": "OK",
29218            "schema": {
29219              "type": "string"
29220            }
29221          },
29222          "401": {
29223            "description": "Unauthorized"
29224          }
29225        },
29226        "schemes": [
29227          "https"
29228        ],
29229        "tags": [
29230          "core_v1"
29231        ],
29232        "x-kubernetes-action": "connect",
29233        "x-kubernetes-group-version-kind": {
29234          "group": "",
29235          "kind": "NodeProxyOptions",
29236          "version": "v1"
29237        }
29238      },
29239      "head": {
29240        "consumes": [
29241          "*/*"
29242        ],
29243        "description": "connect HEAD requests to proxy of Node",
29244        "operationId": "connectCoreV1HeadNodeProxyWithPath",
29245        "produces": [
29246          "*/*"
29247        ],
29248        "responses": {
29249          "200": {
29250            "description": "OK",
29251            "schema": {
29252              "type": "string"
29253            }
29254          },
29255          "401": {
29256            "description": "Unauthorized"
29257          }
29258        },
29259        "schemes": [
29260          "https"
29261        ],
29262        "tags": [
29263          "core_v1"
29264        ],
29265        "x-kubernetes-action": "connect",
29266        "x-kubernetes-group-version-kind": {
29267          "group": "",
29268          "kind": "NodeProxyOptions",
29269          "version": "v1"
29270        }
29271      },
29272      "options": {
29273        "consumes": [
29274          "*/*"
29275        ],
29276        "description": "connect OPTIONS requests to proxy of Node",
29277        "operationId": "connectCoreV1OptionsNodeProxyWithPath",
29278        "produces": [
29279          "*/*"
29280        ],
29281        "responses": {
29282          "200": {
29283            "description": "OK",
29284            "schema": {
29285              "type": "string"
29286            }
29287          },
29288          "401": {
29289            "description": "Unauthorized"
29290          }
29291        },
29292        "schemes": [
29293          "https"
29294        ],
29295        "tags": [
29296          "core_v1"
29297        ],
29298        "x-kubernetes-action": "connect",
29299        "x-kubernetes-group-version-kind": {
29300          "group": "",
29301          "kind": "NodeProxyOptions",
29302          "version": "v1"
29303        }
29304      },
29305      "parameters": [
29306        {
29307          "description": "name of the NodeProxyOptions",
29308          "in": "path",
29309          "name": "name",
29310          "required": true,
29311          "type": "string",
29312          "uniqueItems": true
29313        },
29314        {
29315          "description": "path to the resource",
29316          "in": "path",
29317          "name": "path",
29318          "required": true,
29319          "type": "string",
29320          "uniqueItems": true
29321        },
29322        {
29323          "description": "Path is the URL path to use for the current proxy request to node.",
29324          "in": "query",
29325          "name": "path",
29326          "type": "string",
29327          "uniqueItems": true
29328        }
29329      ],
29330      "patch": {
29331        "consumes": [
29332          "*/*"
29333        ],
29334        "description": "connect PATCH requests to proxy of Node",
29335        "operationId": "connectCoreV1PatchNodeProxyWithPath",
29336        "produces": [
29337          "*/*"
29338        ],
29339        "responses": {
29340          "200": {
29341            "description": "OK",
29342            "schema": {
29343              "type": "string"
29344            }
29345          },
29346          "401": {
29347            "description": "Unauthorized"
29348          }
29349        },
29350        "schemes": [
29351          "https"
29352        ],
29353        "tags": [
29354          "core_v1"
29355        ],
29356        "x-kubernetes-action": "connect",
29357        "x-kubernetes-group-version-kind": {
29358          "group": "",
29359          "kind": "NodeProxyOptions",
29360          "version": "v1"
29361        }
29362      },
29363      "post": {
29364        "consumes": [
29365          "*/*"
29366        ],
29367        "description": "connect POST requests to proxy of Node",
29368        "operationId": "connectCoreV1PostNodeProxyWithPath",
29369        "produces": [
29370          "*/*"
29371        ],
29372        "responses": {
29373          "200": {
29374            "description": "OK",
29375            "schema": {
29376              "type": "string"
29377            }
29378          },
29379          "401": {
29380            "description": "Unauthorized"
29381          }
29382        },
29383        "schemes": [
29384          "https"
29385        ],
29386        "tags": [
29387          "core_v1"
29388        ],
29389        "x-kubernetes-action": "connect",
29390        "x-kubernetes-group-version-kind": {
29391          "group": "",
29392          "kind": "NodeProxyOptions",
29393          "version": "v1"
29394        }
29395      },
29396      "put": {
29397        "consumes": [
29398          "*/*"
29399        ],
29400        "description": "connect PUT requests to proxy of Node",
29401        "operationId": "connectCoreV1PutNodeProxyWithPath",
29402        "produces": [
29403          "*/*"
29404        ],
29405        "responses": {
29406          "200": {
29407            "description": "OK",
29408            "schema": {
29409              "type": "string"
29410            }
29411          },
29412          "401": {
29413            "description": "Unauthorized"
29414          }
29415        },
29416        "schemes": [
29417          "https"
29418        ],
29419        "tags": [
29420          "core_v1"
29421        ],
29422        "x-kubernetes-action": "connect",
29423        "x-kubernetes-group-version-kind": {
29424          "group": "",
29425          "kind": "NodeProxyOptions",
29426          "version": "v1"
29427        }
29428      }
29429    },
29430    "/api/v1/nodes/{name}/status": {
29431      "get": {
29432        "consumes": [
29433          "*/*"
29434        ],
29435        "description": "read status of the specified Node",
29436        "operationId": "readCoreV1NodeStatus",
29437        "produces": [
29438          "application/json",
29439          "application/yaml",
29440          "application/vnd.kubernetes.protobuf"
29441        ],
29442        "responses": {
29443          "200": {
29444            "description": "OK",
29445            "schema": {
29446              "$ref": "#/definitions/io.k8s.api.core.v1.Node"
29447            }
29448          },
29449          "401": {
29450            "description": "Unauthorized"
29451          }
29452        },
29453        "schemes": [
29454          "https"
29455        ],
29456        "tags": [
29457          "core_v1"
29458        ],
29459        "x-kubernetes-action": "get",
29460        "x-kubernetes-group-version-kind": {
29461          "group": "",
29462          "kind": "Node",
29463          "version": "v1"
29464        }
29465      },
29466      "parameters": [
29467        {
29468          "description": "name of the Node",
29469          "in": "path",
29470          "name": "name",
29471          "required": true,
29472          "type": "string",
29473          "uniqueItems": true
29474        },
29475        {
29476          "description": "If 'true', then the output is pretty printed.",
29477          "in": "query",
29478          "name": "pretty",
29479          "type": "string",
29480          "uniqueItems": true
29481        }
29482      ],
29483      "patch": {
29484        "consumes": [
29485          "application/json-patch+json",
29486          "application/merge-patch+json",
29487          "application/strategic-merge-patch+json",
29488          "application/apply-patch+yaml"
29489        ],
29490        "description": "partially update status of the specified Node",
29491        "operationId": "patchCoreV1NodeStatus",
29492        "parameters": [
29493          {
29494            "in": "body",
29495            "name": "body",
29496            "required": true,
29497            "schema": {
29498              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
29499            }
29500          },
29501          {
29502            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
29503            "in": "query",
29504            "name": "dryRun",
29505            "type": "string",
29506            "uniqueItems": true
29507          },
29508          {
29509            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
29510            "in": "query",
29511            "name": "fieldManager",
29512            "type": "string",
29513            "uniqueItems": true
29514          },
29515          {
29516            "description": "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.",
29517            "in": "query",
29518            "name": "force",
29519            "type": "boolean",
29520            "uniqueItems": true
29521          }
29522        ],
29523        "produces": [
29524          "application/json",
29525          "application/yaml",
29526          "application/vnd.kubernetes.protobuf"
29527        ],
29528        "responses": {
29529          "200": {
29530            "description": "OK",
29531            "schema": {
29532              "$ref": "#/definitions/io.k8s.api.core.v1.Node"
29533            }
29534          },
29535          "201": {
29536            "description": "Created",
29537            "schema": {
29538              "$ref": "#/definitions/io.k8s.api.core.v1.Node"
29539            }
29540          },
29541          "401": {
29542            "description": "Unauthorized"
29543          }
29544        },
29545        "schemes": [
29546          "https"
29547        ],
29548        "tags": [
29549          "core_v1"
29550        ],
29551        "x-kubernetes-action": "patch",
29552        "x-kubernetes-group-version-kind": {
29553          "group": "",
29554          "kind": "Node",
29555          "version": "v1"
29556        }
29557      },
29558      "put": {
29559        "consumes": [
29560          "*/*"
29561        ],
29562        "description": "replace status of the specified Node",
29563        "operationId": "replaceCoreV1NodeStatus",
29564        "parameters": [
29565          {
29566            "in": "body",
29567            "name": "body",
29568            "required": true,
29569            "schema": {
29570              "$ref": "#/definitions/io.k8s.api.core.v1.Node"
29571            }
29572          },
29573          {
29574            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
29575            "in": "query",
29576            "name": "dryRun",
29577            "type": "string",
29578            "uniqueItems": true
29579          },
29580          {
29581            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
29582            "in": "query",
29583            "name": "fieldManager",
29584            "type": "string",
29585            "uniqueItems": true
29586          }
29587        ],
29588        "produces": [
29589          "application/json",
29590          "application/yaml",
29591          "application/vnd.kubernetes.protobuf"
29592        ],
29593        "responses": {
29594          "200": {
29595            "description": "OK",
29596            "schema": {
29597              "$ref": "#/definitions/io.k8s.api.core.v1.Node"
29598            }
29599          },
29600          "201": {
29601            "description": "Created",
29602            "schema": {
29603              "$ref": "#/definitions/io.k8s.api.core.v1.Node"
29604            }
29605          },
29606          "401": {
29607            "description": "Unauthorized"
29608          }
29609        },
29610        "schemes": [
29611          "https"
29612        ],
29613        "tags": [
29614          "core_v1"
29615        ],
29616        "x-kubernetes-action": "put",
29617        "x-kubernetes-group-version-kind": {
29618          "group": "",
29619          "kind": "Node",
29620          "version": "v1"
29621        }
29622      }
29623    },
29624    "/api/v1/persistentvolumeclaims": {
29625      "get": {
29626        "consumes": [
29627          "*/*"
29628        ],
29629        "description": "list or watch objects of kind PersistentVolumeClaim",
29630        "operationId": "listCoreV1PersistentVolumeClaimForAllNamespaces",
29631        "produces": [
29632          "application/json",
29633          "application/yaml",
29634          "application/vnd.kubernetes.protobuf",
29635          "application/json;stream=watch",
29636          "application/vnd.kubernetes.protobuf;stream=watch"
29637        ],
29638        "responses": {
29639          "200": {
29640            "description": "OK",
29641            "schema": {
29642              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaimList"
29643            }
29644          },
29645          "401": {
29646            "description": "Unauthorized"
29647          }
29648        },
29649        "schemes": [
29650          "https"
29651        ],
29652        "tags": [
29653          "core_v1"
29654        ],
29655        "x-kubernetes-action": "list",
29656        "x-kubernetes-group-version-kind": {
29657          "group": "",
29658          "kind": "PersistentVolumeClaim",
29659          "version": "v1"
29660        }
29661      },
29662      "parameters": [
29663        {
29664          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
29665          "in": "query",
29666          "name": "allowWatchBookmarks",
29667          "type": "boolean",
29668          "uniqueItems": true
29669        },
29670        {
29671          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
29672          "in": "query",
29673          "name": "continue",
29674          "type": "string",
29675          "uniqueItems": true
29676        },
29677        {
29678          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
29679          "in": "query",
29680          "name": "fieldSelector",
29681          "type": "string",
29682          "uniqueItems": true
29683        },
29684        {
29685          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
29686          "in": "query",
29687          "name": "labelSelector",
29688          "type": "string",
29689          "uniqueItems": true
29690        },
29691        {
29692          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
29693          "in": "query",
29694          "name": "limit",
29695          "type": "integer",
29696          "uniqueItems": true
29697        },
29698        {
29699          "description": "If 'true', then the output is pretty printed.",
29700          "in": "query",
29701          "name": "pretty",
29702          "type": "string",
29703          "uniqueItems": true
29704        },
29705        {
29706          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
29707          "in": "query",
29708          "name": "resourceVersion",
29709          "type": "string",
29710          "uniqueItems": true
29711        },
29712        {
29713          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
29714          "in": "query",
29715          "name": "resourceVersionMatch",
29716          "type": "string",
29717          "uniqueItems": true
29718        },
29719        {
29720          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
29721          "in": "query",
29722          "name": "timeoutSeconds",
29723          "type": "integer",
29724          "uniqueItems": true
29725        },
29726        {
29727          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
29728          "in": "query",
29729          "name": "watch",
29730          "type": "boolean",
29731          "uniqueItems": true
29732        }
29733      ]
29734    },
29735    "/api/v1/persistentvolumes": {
29736      "delete": {
29737        "consumes": [
29738          "*/*"
29739        ],
29740        "description": "delete collection of PersistentVolume",
29741        "operationId": "deleteCoreV1CollectionPersistentVolume",
29742        "parameters": [
29743          {
29744            "in": "body",
29745            "name": "body",
29746            "schema": {
29747              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
29748            }
29749          },
29750          {
29751            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
29752            "in": "query",
29753            "name": "continue",
29754            "type": "string",
29755            "uniqueItems": true
29756          },
29757          {
29758            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
29759            "in": "query",
29760            "name": "dryRun",
29761            "type": "string",
29762            "uniqueItems": true
29763          },
29764          {
29765            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
29766            "in": "query",
29767            "name": "fieldSelector",
29768            "type": "string",
29769            "uniqueItems": true
29770          },
29771          {
29772            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
29773            "in": "query",
29774            "name": "gracePeriodSeconds",
29775            "type": "integer",
29776            "uniqueItems": true
29777          },
29778          {
29779            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
29780            "in": "query",
29781            "name": "labelSelector",
29782            "type": "string",
29783            "uniqueItems": true
29784          },
29785          {
29786            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
29787            "in": "query",
29788            "name": "limit",
29789            "type": "integer",
29790            "uniqueItems": true
29791          },
29792          {
29793            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
29794            "in": "query",
29795            "name": "orphanDependents",
29796            "type": "boolean",
29797            "uniqueItems": true
29798          },
29799          {
29800            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
29801            "in": "query",
29802            "name": "propagationPolicy",
29803            "type": "string",
29804            "uniqueItems": true
29805          },
29806          {
29807            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
29808            "in": "query",
29809            "name": "resourceVersion",
29810            "type": "string",
29811            "uniqueItems": true
29812          },
29813          {
29814            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
29815            "in": "query",
29816            "name": "resourceVersionMatch",
29817            "type": "string",
29818            "uniqueItems": true
29819          },
29820          {
29821            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
29822            "in": "query",
29823            "name": "timeoutSeconds",
29824            "type": "integer",
29825            "uniqueItems": true
29826          }
29827        ],
29828        "produces": [
29829          "application/json",
29830          "application/yaml",
29831          "application/vnd.kubernetes.protobuf"
29832        ],
29833        "responses": {
29834          "200": {
29835            "description": "OK",
29836            "schema": {
29837              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
29838            }
29839          },
29840          "401": {
29841            "description": "Unauthorized"
29842          }
29843        },
29844        "schemes": [
29845          "https"
29846        ],
29847        "tags": [
29848          "core_v1"
29849        ],
29850        "x-kubernetes-action": "deletecollection",
29851        "x-kubernetes-group-version-kind": {
29852          "group": "",
29853          "kind": "PersistentVolume",
29854          "version": "v1"
29855        }
29856      },
29857      "get": {
29858        "consumes": [
29859          "*/*"
29860        ],
29861        "description": "list or watch objects of kind PersistentVolume",
29862        "operationId": "listCoreV1PersistentVolume",
29863        "parameters": [
29864          {
29865            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
29866            "in": "query",
29867            "name": "allowWatchBookmarks",
29868            "type": "boolean",
29869            "uniqueItems": true
29870          },
29871          {
29872            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
29873            "in": "query",
29874            "name": "continue",
29875            "type": "string",
29876            "uniqueItems": true
29877          },
29878          {
29879            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
29880            "in": "query",
29881            "name": "fieldSelector",
29882            "type": "string",
29883            "uniqueItems": true
29884          },
29885          {
29886            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
29887            "in": "query",
29888            "name": "labelSelector",
29889            "type": "string",
29890            "uniqueItems": true
29891          },
29892          {
29893            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
29894            "in": "query",
29895            "name": "limit",
29896            "type": "integer",
29897            "uniqueItems": true
29898          },
29899          {
29900            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
29901            "in": "query",
29902            "name": "resourceVersion",
29903            "type": "string",
29904            "uniqueItems": true
29905          },
29906          {
29907            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
29908            "in": "query",
29909            "name": "resourceVersionMatch",
29910            "type": "string",
29911            "uniqueItems": true
29912          },
29913          {
29914            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
29915            "in": "query",
29916            "name": "timeoutSeconds",
29917            "type": "integer",
29918            "uniqueItems": true
29919          },
29920          {
29921            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
29922            "in": "query",
29923            "name": "watch",
29924            "type": "boolean",
29925            "uniqueItems": true
29926          }
29927        ],
29928        "produces": [
29929          "application/json",
29930          "application/yaml",
29931          "application/vnd.kubernetes.protobuf",
29932          "application/json;stream=watch",
29933          "application/vnd.kubernetes.protobuf;stream=watch"
29934        ],
29935        "responses": {
29936          "200": {
29937            "description": "OK",
29938            "schema": {
29939              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeList"
29940            }
29941          },
29942          "401": {
29943            "description": "Unauthorized"
29944          }
29945        },
29946        "schemes": [
29947          "https"
29948        ],
29949        "tags": [
29950          "core_v1"
29951        ],
29952        "x-kubernetes-action": "list",
29953        "x-kubernetes-group-version-kind": {
29954          "group": "",
29955          "kind": "PersistentVolume",
29956          "version": "v1"
29957        }
29958      },
29959      "parameters": [
29960        {
29961          "description": "If 'true', then the output is pretty printed.",
29962          "in": "query",
29963          "name": "pretty",
29964          "type": "string",
29965          "uniqueItems": true
29966        }
29967      ],
29968      "post": {
29969        "consumes": [
29970          "*/*"
29971        ],
29972        "description": "create a PersistentVolume",
29973        "operationId": "createCoreV1PersistentVolume",
29974        "parameters": [
29975          {
29976            "in": "body",
29977            "name": "body",
29978            "required": true,
29979            "schema": {
29980              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolume"
29981            }
29982          },
29983          {
29984            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
29985            "in": "query",
29986            "name": "dryRun",
29987            "type": "string",
29988            "uniqueItems": true
29989          },
29990          {
29991            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
29992            "in": "query",
29993            "name": "fieldManager",
29994            "type": "string",
29995            "uniqueItems": true
29996          }
29997        ],
29998        "produces": [
29999          "application/json",
30000          "application/yaml",
30001          "application/vnd.kubernetes.protobuf"
30002        ],
30003        "responses": {
30004          "200": {
30005            "description": "OK",
30006            "schema": {
30007              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolume"
30008            }
30009          },
30010          "201": {
30011            "description": "Created",
30012            "schema": {
30013              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolume"
30014            }
30015          },
30016          "202": {
30017            "description": "Accepted",
30018            "schema": {
30019              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolume"
30020            }
30021          },
30022          "401": {
30023            "description": "Unauthorized"
30024          }
30025        },
30026        "schemes": [
30027          "https"
30028        ],
30029        "tags": [
30030          "core_v1"
30031        ],
30032        "x-kubernetes-action": "post",
30033        "x-kubernetes-group-version-kind": {
30034          "group": "",
30035          "kind": "PersistentVolume",
30036          "version": "v1"
30037        }
30038      }
30039    },
30040    "/api/v1/persistentvolumes/{name}": {
30041      "delete": {
30042        "consumes": [
30043          "*/*"
30044        ],
30045        "description": "delete a PersistentVolume",
30046        "operationId": "deleteCoreV1PersistentVolume",
30047        "parameters": [
30048          {
30049            "in": "body",
30050            "name": "body",
30051            "schema": {
30052              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
30053            }
30054          },
30055          {
30056            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
30057            "in": "query",
30058            "name": "dryRun",
30059            "type": "string",
30060            "uniqueItems": true
30061          },
30062          {
30063            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
30064            "in": "query",
30065            "name": "gracePeriodSeconds",
30066            "type": "integer",
30067            "uniqueItems": true
30068          },
30069          {
30070            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
30071            "in": "query",
30072            "name": "orphanDependents",
30073            "type": "boolean",
30074            "uniqueItems": true
30075          },
30076          {
30077            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
30078            "in": "query",
30079            "name": "propagationPolicy",
30080            "type": "string",
30081            "uniqueItems": true
30082          }
30083        ],
30084        "produces": [
30085          "application/json",
30086          "application/yaml",
30087          "application/vnd.kubernetes.protobuf"
30088        ],
30089        "responses": {
30090          "200": {
30091            "description": "OK",
30092            "schema": {
30093              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolume"
30094            }
30095          },
30096          "202": {
30097            "description": "Accepted",
30098            "schema": {
30099              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolume"
30100            }
30101          },
30102          "401": {
30103            "description": "Unauthorized"
30104          }
30105        },
30106        "schemes": [
30107          "https"
30108        ],
30109        "tags": [
30110          "core_v1"
30111        ],
30112        "x-kubernetes-action": "delete",
30113        "x-kubernetes-group-version-kind": {
30114          "group": "",
30115          "kind": "PersistentVolume",
30116          "version": "v1"
30117        }
30118      },
30119      "get": {
30120        "consumes": [
30121          "*/*"
30122        ],
30123        "description": "read the specified PersistentVolume",
30124        "operationId": "readCoreV1PersistentVolume",
30125        "produces": [
30126          "application/json",
30127          "application/yaml",
30128          "application/vnd.kubernetes.protobuf"
30129        ],
30130        "responses": {
30131          "200": {
30132            "description": "OK",
30133            "schema": {
30134              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolume"
30135            }
30136          },
30137          "401": {
30138            "description": "Unauthorized"
30139          }
30140        },
30141        "schemes": [
30142          "https"
30143        ],
30144        "tags": [
30145          "core_v1"
30146        ],
30147        "x-kubernetes-action": "get",
30148        "x-kubernetes-group-version-kind": {
30149          "group": "",
30150          "kind": "PersistentVolume",
30151          "version": "v1"
30152        }
30153      },
30154      "parameters": [
30155        {
30156          "description": "name of the PersistentVolume",
30157          "in": "path",
30158          "name": "name",
30159          "required": true,
30160          "type": "string",
30161          "uniqueItems": true
30162        },
30163        {
30164          "description": "If 'true', then the output is pretty printed.",
30165          "in": "query",
30166          "name": "pretty",
30167          "type": "string",
30168          "uniqueItems": true
30169        }
30170      ],
30171      "patch": {
30172        "consumes": [
30173          "application/json-patch+json",
30174          "application/merge-patch+json",
30175          "application/strategic-merge-patch+json",
30176          "application/apply-patch+yaml"
30177        ],
30178        "description": "partially update the specified PersistentVolume",
30179        "operationId": "patchCoreV1PersistentVolume",
30180        "parameters": [
30181          {
30182            "in": "body",
30183            "name": "body",
30184            "required": true,
30185            "schema": {
30186              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
30187            }
30188          },
30189          {
30190            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
30191            "in": "query",
30192            "name": "dryRun",
30193            "type": "string",
30194            "uniqueItems": true
30195          },
30196          {
30197            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
30198            "in": "query",
30199            "name": "fieldManager",
30200            "type": "string",
30201            "uniqueItems": true
30202          },
30203          {
30204            "description": "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.",
30205            "in": "query",
30206            "name": "force",
30207            "type": "boolean",
30208            "uniqueItems": true
30209          }
30210        ],
30211        "produces": [
30212          "application/json",
30213          "application/yaml",
30214          "application/vnd.kubernetes.protobuf"
30215        ],
30216        "responses": {
30217          "200": {
30218            "description": "OK",
30219            "schema": {
30220              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolume"
30221            }
30222          },
30223          "201": {
30224            "description": "Created",
30225            "schema": {
30226              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolume"
30227            }
30228          },
30229          "401": {
30230            "description": "Unauthorized"
30231          }
30232        },
30233        "schemes": [
30234          "https"
30235        ],
30236        "tags": [
30237          "core_v1"
30238        ],
30239        "x-kubernetes-action": "patch",
30240        "x-kubernetes-group-version-kind": {
30241          "group": "",
30242          "kind": "PersistentVolume",
30243          "version": "v1"
30244        }
30245      },
30246      "put": {
30247        "consumes": [
30248          "*/*"
30249        ],
30250        "description": "replace the specified PersistentVolume",
30251        "operationId": "replaceCoreV1PersistentVolume",
30252        "parameters": [
30253          {
30254            "in": "body",
30255            "name": "body",
30256            "required": true,
30257            "schema": {
30258              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolume"
30259            }
30260          },
30261          {
30262            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
30263            "in": "query",
30264            "name": "dryRun",
30265            "type": "string",
30266            "uniqueItems": true
30267          },
30268          {
30269            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
30270            "in": "query",
30271            "name": "fieldManager",
30272            "type": "string",
30273            "uniqueItems": true
30274          }
30275        ],
30276        "produces": [
30277          "application/json",
30278          "application/yaml",
30279          "application/vnd.kubernetes.protobuf"
30280        ],
30281        "responses": {
30282          "200": {
30283            "description": "OK",
30284            "schema": {
30285              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolume"
30286            }
30287          },
30288          "201": {
30289            "description": "Created",
30290            "schema": {
30291              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolume"
30292            }
30293          },
30294          "401": {
30295            "description": "Unauthorized"
30296          }
30297        },
30298        "schemes": [
30299          "https"
30300        ],
30301        "tags": [
30302          "core_v1"
30303        ],
30304        "x-kubernetes-action": "put",
30305        "x-kubernetes-group-version-kind": {
30306          "group": "",
30307          "kind": "PersistentVolume",
30308          "version": "v1"
30309        }
30310      }
30311    },
30312    "/api/v1/persistentvolumes/{name}/status": {
30313      "get": {
30314        "consumes": [
30315          "*/*"
30316        ],
30317        "description": "read status of the specified PersistentVolume",
30318        "operationId": "readCoreV1PersistentVolumeStatus",
30319        "produces": [
30320          "application/json",
30321          "application/yaml",
30322          "application/vnd.kubernetes.protobuf"
30323        ],
30324        "responses": {
30325          "200": {
30326            "description": "OK",
30327            "schema": {
30328              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolume"
30329            }
30330          },
30331          "401": {
30332            "description": "Unauthorized"
30333          }
30334        },
30335        "schemes": [
30336          "https"
30337        ],
30338        "tags": [
30339          "core_v1"
30340        ],
30341        "x-kubernetes-action": "get",
30342        "x-kubernetes-group-version-kind": {
30343          "group": "",
30344          "kind": "PersistentVolume",
30345          "version": "v1"
30346        }
30347      },
30348      "parameters": [
30349        {
30350          "description": "name of the PersistentVolume",
30351          "in": "path",
30352          "name": "name",
30353          "required": true,
30354          "type": "string",
30355          "uniqueItems": true
30356        },
30357        {
30358          "description": "If 'true', then the output is pretty printed.",
30359          "in": "query",
30360          "name": "pretty",
30361          "type": "string",
30362          "uniqueItems": true
30363        }
30364      ],
30365      "patch": {
30366        "consumes": [
30367          "application/json-patch+json",
30368          "application/merge-patch+json",
30369          "application/strategic-merge-patch+json",
30370          "application/apply-patch+yaml"
30371        ],
30372        "description": "partially update status of the specified PersistentVolume",
30373        "operationId": "patchCoreV1PersistentVolumeStatus",
30374        "parameters": [
30375          {
30376            "in": "body",
30377            "name": "body",
30378            "required": true,
30379            "schema": {
30380              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
30381            }
30382          },
30383          {
30384            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
30385            "in": "query",
30386            "name": "dryRun",
30387            "type": "string",
30388            "uniqueItems": true
30389          },
30390          {
30391            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
30392            "in": "query",
30393            "name": "fieldManager",
30394            "type": "string",
30395            "uniqueItems": true
30396          },
30397          {
30398            "description": "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.",
30399            "in": "query",
30400            "name": "force",
30401            "type": "boolean",
30402            "uniqueItems": true
30403          }
30404        ],
30405        "produces": [
30406          "application/json",
30407          "application/yaml",
30408          "application/vnd.kubernetes.protobuf"
30409        ],
30410        "responses": {
30411          "200": {
30412            "description": "OK",
30413            "schema": {
30414              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolume"
30415            }
30416          },
30417          "201": {
30418            "description": "Created",
30419            "schema": {
30420              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolume"
30421            }
30422          },
30423          "401": {
30424            "description": "Unauthorized"
30425          }
30426        },
30427        "schemes": [
30428          "https"
30429        ],
30430        "tags": [
30431          "core_v1"
30432        ],
30433        "x-kubernetes-action": "patch",
30434        "x-kubernetes-group-version-kind": {
30435          "group": "",
30436          "kind": "PersistentVolume",
30437          "version": "v1"
30438        }
30439      },
30440      "put": {
30441        "consumes": [
30442          "*/*"
30443        ],
30444        "description": "replace status of the specified PersistentVolume",
30445        "operationId": "replaceCoreV1PersistentVolumeStatus",
30446        "parameters": [
30447          {
30448            "in": "body",
30449            "name": "body",
30450            "required": true,
30451            "schema": {
30452              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolume"
30453            }
30454          },
30455          {
30456            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
30457            "in": "query",
30458            "name": "dryRun",
30459            "type": "string",
30460            "uniqueItems": true
30461          },
30462          {
30463            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
30464            "in": "query",
30465            "name": "fieldManager",
30466            "type": "string",
30467            "uniqueItems": true
30468          }
30469        ],
30470        "produces": [
30471          "application/json",
30472          "application/yaml",
30473          "application/vnd.kubernetes.protobuf"
30474        ],
30475        "responses": {
30476          "200": {
30477            "description": "OK",
30478            "schema": {
30479              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolume"
30480            }
30481          },
30482          "201": {
30483            "description": "Created",
30484            "schema": {
30485              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolume"
30486            }
30487          },
30488          "401": {
30489            "description": "Unauthorized"
30490          }
30491        },
30492        "schemes": [
30493          "https"
30494        ],
30495        "tags": [
30496          "core_v1"
30497        ],
30498        "x-kubernetes-action": "put",
30499        "x-kubernetes-group-version-kind": {
30500          "group": "",
30501          "kind": "PersistentVolume",
30502          "version": "v1"
30503        }
30504      }
30505    },
30506    "/api/v1/pods": {
30507      "get": {
30508        "consumes": [
30509          "*/*"
30510        ],
30511        "description": "list or watch objects of kind Pod",
30512        "operationId": "listCoreV1PodForAllNamespaces",
30513        "produces": [
30514          "application/json",
30515          "application/yaml",
30516          "application/vnd.kubernetes.protobuf",
30517          "application/json;stream=watch",
30518          "application/vnd.kubernetes.protobuf;stream=watch"
30519        ],
30520        "responses": {
30521          "200": {
30522            "description": "OK",
30523            "schema": {
30524              "$ref": "#/definitions/io.k8s.api.core.v1.PodList"
30525            }
30526          },
30527          "401": {
30528            "description": "Unauthorized"
30529          }
30530        },
30531        "schemes": [
30532          "https"
30533        ],
30534        "tags": [
30535          "core_v1"
30536        ],
30537        "x-kubernetes-action": "list",
30538        "x-kubernetes-group-version-kind": {
30539          "group": "",
30540          "kind": "Pod",
30541          "version": "v1"
30542        }
30543      },
30544      "parameters": [
30545        {
30546          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
30547          "in": "query",
30548          "name": "allowWatchBookmarks",
30549          "type": "boolean",
30550          "uniqueItems": true
30551        },
30552        {
30553          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
30554          "in": "query",
30555          "name": "continue",
30556          "type": "string",
30557          "uniqueItems": true
30558        },
30559        {
30560          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
30561          "in": "query",
30562          "name": "fieldSelector",
30563          "type": "string",
30564          "uniqueItems": true
30565        },
30566        {
30567          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
30568          "in": "query",
30569          "name": "labelSelector",
30570          "type": "string",
30571          "uniqueItems": true
30572        },
30573        {
30574          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
30575          "in": "query",
30576          "name": "limit",
30577          "type": "integer",
30578          "uniqueItems": true
30579        },
30580        {
30581          "description": "If 'true', then the output is pretty printed.",
30582          "in": "query",
30583          "name": "pretty",
30584          "type": "string",
30585          "uniqueItems": true
30586        },
30587        {
30588          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
30589          "in": "query",
30590          "name": "resourceVersion",
30591          "type": "string",
30592          "uniqueItems": true
30593        },
30594        {
30595          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
30596          "in": "query",
30597          "name": "resourceVersionMatch",
30598          "type": "string",
30599          "uniqueItems": true
30600        },
30601        {
30602          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
30603          "in": "query",
30604          "name": "timeoutSeconds",
30605          "type": "integer",
30606          "uniqueItems": true
30607        },
30608        {
30609          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
30610          "in": "query",
30611          "name": "watch",
30612          "type": "boolean",
30613          "uniqueItems": true
30614        }
30615      ]
30616    },
30617    "/api/v1/podtemplates": {
30618      "get": {
30619        "consumes": [
30620          "*/*"
30621        ],
30622        "description": "list or watch objects of kind PodTemplate",
30623        "operationId": "listCoreV1PodTemplateForAllNamespaces",
30624        "produces": [
30625          "application/json",
30626          "application/yaml",
30627          "application/vnd.kubernetes.protobuf",
30628          "application/json;stream=watch",
30629          "application/vnd.kubernetes.protobuf;stream=watch"
30630        ],
30631        "responses": {
30632          "200": {
30633            "description": "OK",
30634            "schema": {
30635              "$ref": "#/definitions/io.k8s.api.core.v1.PodTemplateList"
30636            }
30637          },
30638          "401": {
30639            "description": "Unauthorized"
30640          }
30641        },
30642        "schemes": [
30643          "https"
30644        ],
30645        "tags": [
30646          "core_v1"
30647        ],
30648        "x-kubernetes-action": "list",
30649        "x-kubernetes-group-version-kind": {
30650          "group": "",
30651          "kind": "PodTemplate",
30652          "version": "v1"
30653        }
30654      },
30655      "parameters": [
30656        {
30657          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
30658          "in": "query",
30659          "name": "allowWatchBookmarks",
30660          "type": "boolean",
30661          "uniqueItems": true
30662        },
30663        {
30664          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
30665          "in": "query",
30666          "name": "continue",
30667          "type": "string",
30668          "uniqueItems": true
30669        },
30670        {
30671          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
30672          "in": "query",
30673          "name": "fieldSelector",
30674          "type": "string",
30675          "uniqueItems": true
30676        },
30677        {
30678          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
30679          "in": "query",
30680          "name": "labelSelector",
30681          "type": "string",
30682          "uniqueItems": true
30683        },
30684        {
30685          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
30686          "in": "query",
30687          "name": "limit",
30688          "type": "integer",
30689          "uniqueItems": true
30690        },
30691        {
30692          "description": "If 'true', then the output is pretty printed.",
30693          "in": "query",
30694          "name": "pretty",
30695          "type": "string",
30696          "uniqueItems": true
30697        },
30698        {
30699          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
30700          "in": "query",
30701          "name": "resourceVersion",
30702          "type": "string",
30703          "uniqueItems": true
30704        },
30705        {
30706          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
30707          "in": "query",
30708          "name": "resourceVersionMatch",
30709          "type": "string",
30710          "uniqueItems": true
30711        },
30712        {
30713          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
30714          "in": "query",
30715          "name": "timeoutSeconds",
30716          "type": "integer",
30717          "uniqueItems": true
30718        },
30719        {
30720          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
30721          "in": "query",
30722          "name": "watch",
30723          "type": "boolean",
30724          "uniqueItems": true
30725        }
30726      ]
30727    },
30728    "/api/v1/replicationcontrollers": {
30729      "get": {
30730        "consumes": [
30731          "*/*"
30732        ],
30733        "description": "list or watch objects of kind ReplicationController",
30734        "operationId": "listCoreV1ReplicationControllerForAllNamespaces",
30735        "produces": [
30736          "application/json",
30737          "application/yaml",
30738          "application/vnd.kubernetes.protobuf",
30739          "application/json;stream=watch",
30740          "application/vnd.kubernetes.protobuf;stream=watch"
30741        ],
30742        "responses": {
30743          "200": {
30744            "description": "OK",
30745            "schema": {
30746              "$ref": "#/definitions/io.k8s.api.core.v1.ReplicationControllerList"
30747            }
30748          },
30749          "401": {
30750            "description": "Unauthorized"
30751          }
30752        },
30753        "schemes": [
30754          "https"
30755        ],
30756        "tags": [
30757          "core_v1"
30758        ],
30759        "x-kubernetes-action": "list",
30760        "x-kubernetes-group-version-kind": {
30761          "group": "",
30762          "kind": "ReplicationController",
30763          "version": "v1"
30764        }
30765      },
30766      "parameters": [
30767        {
30768          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
30769          "in": "query",
30770          "name": "allowWatchBookmarks",
30771          "type": "boolean",
30772          "uniqueItems": true
30773        },
30774        {
30775          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
30776          "in": "query",
30777          "name": "continue",
30778          "type": "string",
30779          "uniqueItems": true
30780        },
30781        {
30782          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
30783          "in": "query",
30784          "name": "fieldSelector",
30785          "type": "string",
30786          "uniqueItems": true
30787        },
30788        {
30789          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
30790          "in": "query",
30791          "name": "labelSelector",
30792          "type": "string",
30793          "uniqueItems": true
30794        },
30795        {
30796          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
30797          "in": "query",
30798          "name": "limit",
30799          "type": "integer",
30800          "uniqueItems": true
30801        },
30802        {
30803          "description": "If 'true', then the output is pretty printed.",
30804          "in": "query",
30805          "name": "pretty",
30806          "type": "string",
30807          "uniqueItems": true
30808        },
30809        {
30810          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
30811          "in": "query",
30812          "name": "resourceVersion",
30813          "type": "string",
30814          "uniqueItems": true
30815        },
30816        {
30817          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
30818          "in": "query",
30819          "name": "resourceVersionMatch",
30820          "type": "string",
30821          "uniqueItems": true
30822        },
30823        {
30824          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
30825          "in": "query",
30826          "name": "timeoutSeconds",
30827          "type": "integer",
30828          "uniqueItems": true
30829        },
30830        {
30831          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
30832          "in": "query",
30833          "name": "watch",
30834          "type": "boolean",
30835          "uniqueItems": true
30836        }
30837      ]
30838    },
30839    "/api/v1/resourcequotas": {
30840      "get": {
30841        "consumes": [
30842          "*/*"
30843        ],
30844        "description": "list or watch objects of kind ResourceQuota",
30845        "operationId": "listCoreV1ResourceQuotaForAllNamespaces",
30846        "produces": [
30847          "application/json",
30848          "application/yaml",
30849          "application/vnd.kubernetes.protobuf",
30850          "application/json;stream=watch",
30851          "application/vnd.kubernetes.protobuf;stream=watch"
30852        ],
30853        "responses": {
30854          "200": {
30855            "description": "OK",
30856            "schema": {
30857              "$ref": "#/definitions/io.k8s.api.core.v1.ResourceQuotaList"
30858            }
30859          },
30860          "401": {
30861            "description": "Unauthorized"
30862          }
30863        },
30864        "schemes": [
30865          "https"
30866        ],
30867        "tags": [
30868          "core_v1"
30869        ],
30870        "x-kubernetes-action": "list",
30871        "x-kubernetes-group-version-kind": {
30872          "group": "",
30873          "kind": "ResourceQuota",
30874          "version": "v1"
30875        }
30876      },
30877      "parameters": [
30878        {
30879          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
30880          "in": "query",
30881          "name": "allowWatchBookmarks",
30882          "type": "boolean",
30883          "uniqueItems": true
30884        },
30885        {
30886          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
30887          "in": "query",
30888          "name": "continue",
30889          "type": "string",
30890          "uniqueItems": true
30891        },
30892        {
30893          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
30894          "in": "query",
30895          "name": "fieldSelector",
30896          "type": "string",
30897          "uniqueItems": true
30898        },
30899        {
30900          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
30901          "in": "query",
30902          "name": "labelSelector",
30903          "type": "string",
30904          "uniqueItems": true
30905        },
30906        {
30907          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
30908          "in": "query",
30909          "name": "limit",
30910          "type": "integer",
30911          "uniqueItems": true
30912        },
30913        {
30914          "description": "If 'true', then the output is pretty printed.",
30915          "in": "query",
30916          "name": "pretty",
30917          "type": "string",
30918          "uniqueItems": true
30919        },
30920        {
30921          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
30922          "in": "query",
30923          "name": "resourceVersion",
30924          "type": "string",
30925          "uniqueItems": true
30926        },
30927        {
30928          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
30929          "in": "query",
30930          "name": "resourceVersionMatch",
30931          "type": "string",
30932          "uniqueItems": true
30933        },
30934        {
30935          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
30936          "in": "query",
30937          "name": "timeoutSeconds",
30938          "type": "integer",
30939          "uniqueItems": true
30940        },
30941        {
30942          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
30943          "in": "query",
30944          "name": "watch",
30945          "type": "boolean",
30946          "uniqueItems": true
30947        }
30948      ]
30949    },
30950    "/api/v1/secrets": {
30951      "get": {
30952        "consumes": [
30953          "*/*"
30954        ],
30955        "description": "list or watch objects of kind Secret",
30956        "operationId": "listCoreV1SecretForAllNamespaces",
30957        "produces": [
30958          "application/json",
30959          "application/yaml",
30960          "application/vnd.kubernetes.protobuf",
30961          "application/json;stream=watch",
30962          "application/vnd.kubernetes.protobuf;stream=watch"
30963        ],
30964        "responses": {
30965          "200": {
30966            "description": "OK",
30967            "schema": {
30968              "$ref": "#/definitions/io.k8s.api.core.v1.SecretList"
30969            }
30970          },
30971          "401": {
30972            "description": "Unauthorized"
30973          }
30974        },
30975        "schemes": [
30976          "https"
30977        ],
30978        "tags": [
30979          "core_v1"
30980        ],
30981        "x-kubernetes-action": "list",
30982        "x-kubernetes-group-version-kind": {
30983          "group": "",
30984          "kind": "Secret",
30985          "version": "v1"
30986        }
30987      },
30988      "parameters": [
30989        {
30990          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
30991          "in": "query",
30992          "name": "allowWatchBookmarks",
30993          "type": "boolean",
30994          "uniqueItems": true
30995        },
30996        {
30997          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
30998          "in": "query",
30999          "name": "continue",
31000          "type": "string",
31001          "uniqueItems": true
31002        },
31003        {
31004          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
31005          "in": "query",
31006          "name": "fieldSelector",
31007          "type": "string",
31008          "uniqueItems": true
31009        },
31010        {
31011          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
31012          "in": "query",
31013          "name": "labelSelector",
31014          "type": "string",
31015          "uniqueItems": true
31016        },
31017        {
31018          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
31019          "in": "query",
31020          "name": "limit",
31021          "type": "integer",
31022          "uniqueItems": true
31023        },
31024        {
31025          "description": "If 'true', then the output is pretty printed.",
31026          "in": "query",
31027          "name": "pretty",
31028          "type": "string",
31029          "uniqueItems": true
31030        },
31031        {
31032          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
31033          "in": "query",
31034          "name": "resourceVersion",
31035          "type": "string",
31036          "uniqueItems": true
31037        },
31038        {
31039          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
31040          "in": "query",
31041          "name": "resourceVersionMatch",
31042          "type": "string",
31043          "uniqueItems": true
31044        },
31045        {
31046          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
31047          "in": "query",
31048          "name": "timeoutSeconds",
31049          "type": "integer",
31050          "uniqueItems": true
31051        },
31052        {
31053          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
31054          "in": "query",
31055          "name": "watch",
31056          "type": "boolean",
31057          "uniqueItems": true
31058        }
31059      ]
31060    },
31061    "/api/v1/serviceaccounts": {
31062      "get": {
31063        "consumes": [
31064          "*/*"
31065        ],
31066        "description": "list or watch objects of kind ServiceAccount",
31067        "operationId": "listCoreV1ServiceAccountForAllNamespaces",
31068        "produces": [
31069          "application/json",
31070          "application/yaml",
31071          "application/vnd.kubernetes.protobuf",
31072          "application/json;stream=watch",
31073          "application/vnd.kubernetes.protobuf;stream=watch"
31074        ],
31075        "responses": {
31076          "200": {
31077            "description": "OK",
31078            "schema": {
31079              "$ref": "#/definitions/io.k8s.api.core.v1.ServiceAccountList"
31080            }
31081          },
31082          "401": {
31083            "description": "Unauthorized"
31084          }
31085        },
31086        "schemes": [
31087          "https"
31088        ],
31089        "tags": [
31090          "core_v1"
31091        ],
31092        "x-kubernetes-action": "list",
31093        "x-kubernetes-group-version-kind": {
31094          "group": "",
31095          "kind": "ServiceAccount",
31096          "version": "v1"
31097        }
31098      },
31099      "parameters": [
31100        {
31101          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
31102          "in": "query",
31103          "name": "allowWatchBookmarks",
31104          "type": "boolean",
31105          "uniqueItems": true
31106        },
31107        {
31108          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
31109          "in": "query",
31110          "name": "continue",
31111          "type": "string",
31112          "uniqueItems": true
31113        },
31114        {
31115          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
31116          "in": "query",
31117          "name": "fieldSelector",
31118          "type": "string",
31119          "uniqueItems": true
31120        },
31121        {
31122          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
31123          "in": "query",
31124          "name": "labelSelector",
31125          "type": "string",
31126          "uniqueItems": true
31127        },
31128        {
31129          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
31130          "in": "query",
31131          "name": "limit",
31132          "type": "integer",
31133          "uniqueItems": true
31134        },
31135        {
31136          "description": "If 'true', then the output is pretty printed.",
31137          "in": "query",
31138          "name": "pretty",
31139          "type": "string",
31140          "uniqueItems": true
31141        },
31142        {
31143          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
31144          "in": "query",
31145          "name": "resourceVersion",
31146          "type": "string",
31147          "uniqueItems": true
31148        },
31149        {
31150          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
31151          "in": "query",
31152          "name": "resourceVersionMatch",
31153          "type": "string",
31154          "uniqueItems": true
31155        },
31156        {
31157          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
31158          "in": "query",
31159          "name": "timeoutSeconds",
31160          "type": "integer",
31161          "uniqueItems": true
31162        },
31163        {
31164          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
31165          "in": "query",
31166          "name": "watch",
31167          "type": "boolean",
31168          "uniqueItems": true
31169        }
31170      ]
31171    },
31172    "/api/v1/services": {
31173      "get": {
31174        "consumes": [
31175          "*/*"
31176        ],
31177        "description": "list or watch objects of kind Service",
31178        "operationId": "listCoreV1ServiceForAllNamespaces",
31179        "produces": [
31180          "application/json",
31181          "application/yaml",
31182          "application/vnd.kubernetes.protobuf",
31183          "application/json;stream=watch",
31184          "application/vnd.kubernetes.protobuf;stream=watch"
31185        ],
31186        "responses": {
31187          "200": {
31188            "description": "OK",
31189            "schema": {
31190              "$ref": "#/definitions/io.k8s.api.core.v1.ServiceList"
31191            }
31192          },
31193          "401": {
31194            "description": "Unauthorized"
31195          }
31196        },
31197        "schemes": [
31198          "https"
31199        ],
31200        "tags": [
31201          "core_v1"
31202        ],
31203        "x-kubernetes-action": "list",
31204        "x-kubernetes-group-version-kind": {
31205          "group": "",
31206          "kind": "Service",
31207          "version": "v1"
31208        }
31209      },
31210      "parameters": [
31211        {
31212          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
31213          "in": "query",
31214          "name": "allowWatchBookmarks",
31215          "type": "boolean",
31216          "uniqueItems": true
31217        },
31218        {
31219          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
31220          "in": "query",
31221          "name": "continue",
31222          "type": "string",
31223          "uniqueItems": true
31224        },
31225        {
31226          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
31227          "in": "query",
31228          "name": "fieldSelector",
31229          "type": "string",
31230          "uniqueItems": true
31231        },
31232        {
31233          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
31234          "in": "query",
31235          "name": "labelSelector",
31236          "type": "string",
31237          "uniqueItems": true
31238        },
31239        {
31240          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
31241          "in": "query",
31242          "name": "limit",
31243          "type": "integer",
31244          "uniqueItems": true
31245        },
31246        {
31247          "description": "If 'true', then the output is pretty printed.",
31248          "in": "query",
31249          "name": "pretty",
31250          "type": "string",
31251          "uniqueItems": true
31252        },
31253        {
31254          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
31255          "in": "query",
31256          "name": "resourceVersion",
31257          "type": "string",
31258          "uniqueItems": true
31259        },
31260        {
31261          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
31262          "in": "query",
31263          "name": "resourceVersionMatch",
31264          "type": "string",
31265          "uniqueItems": true
31266        },
31267        {
31268          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
31269          "in": "query",
31270          "name": "timeoutSeconds",
31271          "type": "integer",
31272          "uniqueItems": true
31273        },
31274        {
31275          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
31276          "in": "query",
31277          "name": "watch",
31278          "type": "boolean",
31279          "uniqueItems": true
31280        }
31281      ]
31282    },
31283    "/api/v1/watch/configmaps": {
31284      "get": {
31285        "consumes": [
31286          "*/*"
31287        ],
31288        "description": "watch individual changes to a list of ConfigMap. deprecated: use the 'watch' parameter with a list operation instead.",
31289        "operationId": "watchCoreV1ConfigMapListForAllNamespaces",
31290        "produces": [
31291          "application/json",
31292          "application/yaml",
31293          "application/vnd.kubernetes.protobuf",
31294          "application/json;stream=watch",
31295          "application/vnd.kubernetes.protobuf;stream=watch"
31296        ],
31297        "responses": {
31298          "200": {
31299            "description": "OK",
31300            "schema": {
31301              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
31302            }
31303          },
31304          "401": {
31305            "description": "Unauthorized"
31306          }
31307        },
31308        "schemes": [
31309          "https"
31310        ],
31311        "tags": [
31312          "core_v1"
31313        ],
31314        "x-kubernetes-action": "watchlist",
31315        "x-kubernetes-group-version-kind": {
31316          "group": "",
31317          "kind": "ConfigMap",
31318          "version": "v1"
31319        }
31320      },
31321      "parameters": [
31322        {
31323          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
31324          "in": "query",
31325          "name": "allowWatchBookmarks",
31326          "type": "boolean",
31327          "uniqueItems": true
31328        },
31329        {
31330          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
31331          "in": "query",
31332          "name": "continue",
31333          "type": "string",
31334          "uniqueItems": true
31335        },
31336        {
31337          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
31338          "in": "query",
31339          "name": "fieldSelector",
31340          "type": "string",
31341          "uniqueItems": true
31342        },
31343        {
31344          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
31345          "in": "query",
31346          "name": "labelSelector",
31347          "type": "string",
31348          "uniqueItems": true
31349        },
31350        {
31351          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
31352          "in": "query",
31353          "name": "limit",
31354          "type": "integer",
31355          "uniqueItems": true
31356        },
31357        {
31358          "description": "If 'true', then the output is pretty printed.",
31359          "in": "query",
31360          "name": "pretty",
31361          "type": "string",
31362          "uniqueItems": true
31363        },
31364        {
31365          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
31366          "in": "query",
31367          "name": "resourceVersion",
31368          "type": "string",
31369          "uniqueItems": true
31370        },
31371        {
31372          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
31373          "in": "query",
31374          "name": "resourceVersionMatch",
31375          "type": "string",
31376          "uniqueItems": true
31377        },
31378        {
31379          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
31380          "in": "query",
31381          "name": "timeoutSeconds",
31382          "type": "integer",
31383          "uniqueItems": true
31384        },
31385        {
31386          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
31387          "in": "query",
31388          "name": "watch",
31389          "type": "boolean",
31390          "uniqueItems": true
31391        }
31392      ]
31393    },
31394    "/api/v1/watch/endpoints": {
31395      "get": {
31396        "consumes": [
31397          "*/*"
31398        ],
31399        "description": "watch individual changes to a list of Endpoints. deprecated: use the 'watch' parameter with a list operation instead.",
31400        "operationId": "watchCoreV1EndpointsListForAllNamespaces",
31401        "produces": [
31402          "application/json",
31403          "application/yaml",
31404          "application/vnd.kubernetes.protobuf",
31405          "application/json;stream=watch",
31406          "application/vnd.kubernetes.protobuf;stream=watch"
31407        ],
31408        "responses": {
31409          "200": {
31410            "description": "OK",
31411            "schema": {
31412              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
31413            }
31414          },
31415          "401": {
31416            "description": "Unauthorized"
31417          }
31418        },
31419        "schemes": [
31420          "https"
31421        ],
31422        "tags": [
31423          "core_v1"
31424        ],
31425        "x-kubernetes-action": "watchlist",
31426        "x-kubernetes-group-version-kind": {
31427          "group": "",
31428          "kind": "Endpoints",
31429          "version": "v1"
31430        }
31431      },
31432      "parameters": [
31433        {
31434          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
31435          "in": "query",
31436          "name": "allowWatchBookmarks",
31437          "type": "boolean",
31438          "uniqueItems": true
31439        },
31440        {
31441          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
31442          "in": "query",
31443          "name": "continue",
31444          "type": "string",
31445          "uniqueItems": true
31446        },
31447        {
31448          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
31449          "in": "query",
31450          "name": "fieldSelector",
31451          "type": "string",
31452          "uniqueItems": true
31453        },
31454        {
31455          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
31456          "in": "query",
31457          "name": "labelSelector",
31458          "type": "string",
31459          "uniqueItems": true
31460        },
31461        {
31462          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
31463          "in": "query",
31464          "name": "limit",
31465          "type": "integer",
31466          "uniqueItems": true
31467        },
31468        {
31469          "description": "If 'true', then the output is pretty printed.",
31470          "in": "query",
31471          "name": "pretty",
31472          "type": "string",
31473          "uniqueItems": true
31474        },
31475        {
31476          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
31477          "in": "query",
31478          "name": "resourceVersion",
31479          "type": "string",
31480          "uniqueItems": true
31481        },
31482        {
31483          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
31484          "in": "query",
31485          "name": "resourceVersionMatch",
31486          "type": "string",
31487          "uniqueItems": true
31488        },
31489        {
31490          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
31491          "in": "query",
31492          "name": "timeoutSeconds",
31493          "type": "integer",
31494          "uniqueItems": true
31495        },
31496        {
31497          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
31498          "in": "query",
31499          "name": "watch",
31500          "type": "boolean",
31501          "uniqueItems": true
31502        }
31503      ]
31504    },
31505    "/api/v1/watch/events": {
31506      "get": {
31507        "consumes": [
31508          "*/*"
31509        ],
31510        "description": "watch individual changes to a list of Event. deprecated: use the 'watch' parameter with a list operation instead.",
31511        "operationId": "watchCoreV1EventListForAllNamespaces",
31512        "produces": [
31513          "application/json",
31514          "application/yaml",
31515          "application/vnd.kubernetes.protobuf",
31516          "application/json;stream=watch",
31517          "application/vnd.kubernetes.protobuf;stream=watch"
31518        ],
31519        "responses": {
31520          "200": {
31521            "description": "OK",
31522            "schema": {
31523              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
31524            }
31525          },
31526          "401": {
31527            "description": "Unauthorized"
31528          }
31529        },
31530        "schemes": [
31531          "https"
31532        ],
31533        "tags": [
31534          "core_v1"
31535        ],
31536        "x-kubernetes-action": "watchlist",
31537        "x-kubernetes-group-version-kind": {
31538          "group": "",
31539          "kind": "Event",
31540          "version": "v1"
31541        }
31542      },
31543      "parameters": [
31544        {
31545          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
31546          "in": "query",
31547          "name": "allowWatchBookmarks",
31548          "type": "boolean",
31549          "uniqueItems": true
31550        },
31551        {
31552          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
31553          "in": "query",
31554          "name": "continue",
31555          "type": "string",
31556          "uniqueItems": true
31557        },
31558        {
31559          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
31560          "in": "query",
31561          "name": "fieldSelector",
31562          "type": "string",
31563          "uniqueItems": true
31564        },
31565        {
31566          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
31567          "in": "query",
31568          "name": "labelSelector",
31569          "type": "string",
31570          "uniqueItems": true
31571        },
31572        {
31573          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
31574          "in": "query",
31575          "name": "limit",
31576          "type": "integer",
31577          "uniqueItems": true
31578        },
31579        {
31580          "description": "If 'true', then the output is pretty printed.",
31581          "in": "query",
31582          "name": "pretty",
31583          "type": "string",
31584          "uniqueItems": true
31585        },
31586        {
31587          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
31588          "in": "query",
31589          "name": "resourceVersion",
31590          "type": "string",
31591          "uniqueItems": true
31592        },
31593        {
31594          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
31595          "in": "query",
31596          "name": "resourceVersionMatch",
31597          "type": "string",
31598          "uniqueItems": true
31599        },
31600        {
31601          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
31602          "in": "query",
31603          "name": "timeoutSeconds",
31604          "type": "integer",
31605          "uniqueItems": true
31606        },
31607        {
31608          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
31609          "in": "query",
31610          "name": "watch",
31611          "type": "boolean",
31612          "uniqueItems": true
31613        }
31614      ]
31615    },
31616    "/api/v1/watch/limitranges": {
31617      "get": {
31618        "consumes": [
31619          "*/*"
31620        ],
31621        "description": "watch individual changes to a list of LimitRange. deprecated: use the 'watch' parameter with a list operation instead.",
31622        "operationId": "watchCoreV1LimitRangeListForAllNamespaces",
31623        "produces": [
31624          "application/json",
31625          "application/yaml",
31626          "application/vnd.kubernetes.protobuf",
31627          "application/json;stream=watch",
31628          "application/vnd.kubernetes.protobuf;stream=watch"
31629        ],
31630        "responses": {
31631          "200": {
31632            "description": "OK",
31633            "schema": {
31634              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
31635            }
31636          },
31637          "401": {
31638            "description": "Unauthorized"
31639          }
31640        },
31641        "schemes": [
31642          "https"
31643        ],
31644        "tags": [
31645          "core_v1"
31646        ],
31647        "x-kubernetes-action": "watchlist",
31648        "x-kubernetes-group-version-kind": {
31649          "group": "",
31650          "kind": "LimitRange",
31651          "version": "v1"
31652        }
31653      },
31654      "parameters": [
31655        {
31656          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
31657          "in": "query",
31658          "name": "allowWatchBookmarks",
31659          "type": "boolean",
31660          "uniqueItems": true
31661        },
31662        {
31663          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
31664          "in": "query",
31665          "name": "continue",
31666          "type": "string",
31667          "uniqueItems": true
31668        },
31669        {
31670          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
31671          "in": "query",
31672          "name": "fieldSelector",
31673          "type": "string",
31674          "uniqueItems": true
31675        },
31676        {
31677          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
31678          "in": "query",
31679          "name": "labelSelector",
31680          "type": "string",
31681          "uniqueItems": true
31682        },
31683        {
31684          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
31685          "in": "query",
31686          "name": "limit",
31687          "type": "integer",
31688          "uniqueItems": true
31689        },
31690        {
31691          "description": "If 'true', then the output is pretty printed.",
31692          "in": "query",
31693          "name": "pretty",
31694          "type": "string",
31695          "uniqueItems": true
31696        },
31697        {
31698          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
31699          "in": "query",
31700          "name": "resourceVersion",
31701          "type": "string",
31702          "uniqueItems": true
31703        },
31704        {
31705          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
31706          "in": "query",
31707          "name": "resourceVersionMatch",
31708          "type": "string",
31709          "uniqueItems": true
31710        },
31711        {
31712          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
31713          "in": "query",
31714          "name": "timeoutSeconds",
31715          "type": "integer",
31716          "uniqueItems": true
31717        },
31718        {
31719          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
31720          "in": "query",
31721          "name": "watch",
31722          "type": "boolean",
31723          "uniqueItems": true
31724        }
31725      ]
31726    },
31727    "/api/v1/watch/namespaces": {
31728      "get": {
31729        "consumes": [
31730          "*/*"
31731        ],
31732        "description": "watch individual changes to a list of Namespace. deprecated: use the 'watch' parameter with a list operation instead.",
31733        "operationId": "watchCoreV1NamespaceList",
31734        "produces": [
31735          "application/json",
31736          "application/yaml",
31737          "application/vnd.kubernetes.protobuf",
31738          "application/json;stream=watch",
31739          "application/vnd.kubernetes.protobuf;stream=watch"
31740        ],
31741        "responses": {
31742          "200": {
31743            "description": "OK",
31744            "schema": {
31745              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
31746            }
31747          },
31748          "401": {
31749            "description": "Unauthorized"
31750          }
31751        },
31752        "schemes": [
31753          "https"
31754        ],
31755        "tags": [
31756          "core_v1"
31757        ],
31758        "x-kubernetes-action": "watchlist",
31759        "x-kubernetes-group-version-kind": {
31760          "group": "",
31761          "kind": "Namespace",
31762          "version": "v1"
31763        }
31764      },
31765      "parameters": [
31766        {
31767          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
31768          "in": "query",
31769          "name": "allowWatchBookmarks",
31770          "type": "boolean",
31771          "uniqueItems": true
31772        },
31773        {
31774          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
31775          "in": "query",
31776          "name": "continue",
31777          "type": "string",
31778          "uniqueItems": true
31779        },
31780        {
31781          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
31782          "in": "query",
31783          "name": "fieldSelector",
31784          "type": "string",
31785          "uniqueItems": true
31786        },
31787        {
31788          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
31789          "in": "query",
31790          "name": "labelSelector",
31791          "type": "string",
31792          "uniqueItems": true
31793        },
31794        {
31795          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
31796          "in": "query",
31797          "name": "limit",
31798          "type": "integer",
31799          "uniqueItems": true
31800        },
31801        {
31802          "description": "If 'true', then the output is pretty printed.",
31803          "in": "query",
31804          "name": "pretty",
31805          "type": "string",
31806          "uniqueItems": true
31807        },
31808        {
31809          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
31810          "in": "query",
31811          "name": "resourceVersion",
31812          "type": "string",
31813          "uniqueItems": true
31814        },
31815        {
31816          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
31817          "in": "query",
31818          "name": "resourceVersionMatch",
31819          "type": "string",
31820          "uniqueItems": true
31821        },
31822        {
31823          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
31824          "in": "query",
31825          "name": "timeoutSeconds",
31826          "type": "integer",
31827          "uniqueItems": true
31828        },
31829        {
31830          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
31831          "in": "query",
31832          "name": "watch",
31833          "type": "boolean",
31834          "uniqueItems": true
31835        }
31836      ]
31837    },
31838    "/api/v1/watch/namespaces/{namespace}/configmaps": {
31839      "get": {
31840        "consumes": [
31841          "*/*"
31842        ],
31843        "description": "watch individual changes to a list of ConfigMap. deprecated: use the 'watch' parameter with a list operation instead.",
31844        "operationId": "watchCoreV1NamespacedConfigMapList",
31845        "produces": [
31846          "application/json",
31847          "application/yaml",
31848          "application/vnd.kubernetes.protobuf",
31849          "application/json;stream=watch",
31850          "application/vnd.kubernetes.protobuf;stream=watch"
31851        ],
31852        "responses": {
31853          "200": {
31854            "description": "OK",
31855            "schema": {
31856              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
31857            }
31858          },
31859          "401": {
31860            "description": "Unauthorized"
31861          }
31862        },
31863        "schemes": [
31864          "https"
31865        ],
31866        "tags": [
31867          "core_v1"
31868        ],
31869        "x-kubernetes-action": "watchlist",
31870        "x-kubernetes-group-version-kind": {
31871          "group": "",
31872          "kind": "ConfigMap",
31873          "version": "v1"
31874        }
31875      },
31876      "parameters": [
31877        {
31878          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
31879          "in": "query",
31880          "name": "allowWatchBookmarks",
31881          "type": "boolean",
31882          "uniqueItems": true
31883        },
31884        {
31885          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
31886          "in": "query",
31887          "name": "continue",
31888          "type": "string",
31889          "uniqueItems": true
31890        },
31891        {
31892          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
31893          "in": "query",
31894          "name": "fieldSelector",
31895          "type": "string",
31896          "uniqueItems": true
31897        },
31898        {
31899          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
31900          "in": "query",
31901          "name": "labelSelector",
31902          "type": "string",
31903          "uniqueItems": true
31904        },
31905        {
31906          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
31907          "in": "query",
31908          "name": "limit",
31909          "type": "integer",
31910          "uniqueItems": true
31911        },
31912        {
31913          "description": "object name and auth scope, such as for teams and projects",
31914          "in": "path",
31915          "name": "namespace",
31916          "required": true,
31917          "type": "string",
31918          "uniqueItems": true
31919        },
31920        {
31921          "description": "If 'true', then the output is pretty printed.",
31922          "in": "query",
31923          "name": "pretty",
31924          "type": "string",
31925          "uniqueItems": true
31926        },
31927        {
31928          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
31929          "in": "query",
31930          "name": "resourceVersion",
31931          "type": "string",
31932          "uniqueItems": true
31933        },
31934        {
31935          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
31936          "in": "query",
31937          "name": "resourceVersionMatch",
31938          "type": "string",
31939          "uniqueItems": true
31940        },
31941        {
31942          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
31943          "in": "query",
31944          "name": "timeoutSeconds",
31945          "type": "integer",
31946          "uniqueItems": true
31947        },
31948        {
31949          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
31950          "in": "query",
31951          "name": "watch",
31952          "type": "boolean",
31953          "uniqueItems": true
31954        }
31955      ]
31956    },
31957    "/api/v1/watch/namespaces/{namespace}/configmaps/{name}": {
31958      "get": {
31959        "consumes": [
31960          "*/*"
31961        ],
31962        "description": "watch changes to an object of kind ConfigMap. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.",
31963        "operationId": "watchCoreV1NamespacedConfigMap",
31964        "produces": [
31965          "application/json",
31966          "application/yaml",
31967          "application/vnd.kubernetes.protobuf",
31968          "application/json;stream=watch",
31969          "application/vnd.kubernetes.protobuf;stream=watch"
31970        ],
31971        "responses": {
31972          "200": {
31973            "description": "OK",
31974            "schema": {
31975              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
31976            }
31977          },
31978          "401": {
31979            "description": "Unauthorized"
31980          }
31981        },
31982        "schemes": [
31983          "https"
31984        ],
31985        "tags": [
31986          "core_v1"
31987        ],
31988        "x-kubernetes-action": "watch",
31989        "x-kubernetes-group-version-kind": {
31990          "group": "",
31991          "kind": "ConfigMap",
31992          "version": "v1"
31993        }
31994      },
31995      "parameters": [
31996        {
31997          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
31998          "in": "query",
31999          "name": "allowWatchBookmarks",
32000          "type": "boolean",
32001          "uniqueItems": true
32002        },
32003        {
32004          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
32005          "in": "query",
32006          "name": "continue",
32007          "type": "string",
32008          "uniqueItems": true
32009        },
32010        {
32011          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
32012          "in": "query",
32013          "name": "fieldSelector",
32014          "type": "string",
32015          "uniqueItems": true
32016        },
32017        {
32018          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
32019          "in": "query",
32020          "name": "labelSelector",
32021          "type": "string",
32022          "uniqueItems": true
32023        },
32024        {
32025          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
32026          "in": "query",
32027          "name": "limit",
32028          "type": "integer",
32029          "uniqueItems": true
32030        },
32031        {
32032          "description": "name of the ConfigMap",
32033          "in": "path",
32034          "name": "name",
32035          "required": true,
32036          "type": "string",
32037          "uniqueItems": true
32038        },
32039        {
32040          "description": "object name and auth scope, such as for teams and projects",
32041          "in": "path",
32042          "name": "namespace",
32043          "required": true,
32044          "type": "string",
32045          "uniqueItems": true
32046        },
32047        {
32048          "description": "If 'true', then the output is pretty printed.",
32049          "in": "query",
32050          "name": "pretty",
32051          "type": "string",
32052          "uniqueItems": true
32053        },
32054        {
32055          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
32056          "in": "query",
32057          "name": "resourceVersion",
32058          "type": "string",
32059          "uniqueItems": true
32060        },
32061        {
32062          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
32063          "in": "query",
32064          "name": "resourceVersionMatch",
32065          "type": "string",
32066          "uniqueItems": true
32067        },
32068        {
32069          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
32070          "in": "query",
32071          "name": "timeoutSeconds",
32072          "type": "integer",
32073          "uniqueItems": true
32074        },
32075        {
32076          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
32077          "in": "query",
32078          "name": "watch",
32079          "type": "boolean",
32080          "uniqueItems": true
32081        }
32082      ]
32083    },
32084    "/api/v1/watch/namespaces/{namespace}/endpoints": {
32085      "get": {
32086        "consumes": [
32087          "*/*"
32088        ],
32089        "description": "watch individual changes to a list of Endpoints. deprecated: use the 'watch' parameter with a list operation instead.",
32090        "operationId": "watchCoreV1NamespacedEndpointsList",
32091        "produces": [
32092          "application/json",
32093          "application/yaml",
32094          "application/vnd.kubernetes.protobuf",
32095          "application/json;stream=watch",
32096          "application/vnd.kubernetes.protobuf;stream=watch"
32097        ],
32098        "responses": {
32099          "200": {
32100            "description": "OK",
32101            "schema": {
32102              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
32103            }
32104          },
32105          "401": {
32106            "description": "Unauthorized"
32107          }
32108        },
32109        "schemes": [
32110          "https"
32111        ],
32112        "tags": [
32113          "core_v1"
32114        ],
32115        "x-kubernetes-action": "watchlist",
32116        "x-kubernetes-group-version-kind": {
32117          "group": "",
32118          "kind": "Endpoints",
32119          "version": "v1"
32120        }
32121      },
32122      "parameters": [
32123        {
32124          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
32125          "in": "query",
32126          "name": "allowWatchBookmarks",
32127          "type": "boolean",
32128          "uniqueItems": true
32129        },
32130        {
32131          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
32132          "in": "query",
32133          "name": "continue",
32134          "type": "string",
32135          "uniqueItems": true
32136        },
32137        {
32138          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
32139          "in": "query",
32140          "name": "fieldSelector",
32141          "type": "string",
32142          "uniqueItems": true
32143        },
32144        {
32145          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
32146          "in": "query",
32147          "name": "labelSelector",
32148          "type": "string",
32149          "uniqueItems": true
32150        },
32151        {
32152          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
32153          "in": "query",
32154          "name": "limit",
32155          "type": "integer",
32156          "uniqueItems": true
32157        },
32158        {
32159          "description": "object name and auth scope, such as for teams and projects",
32160          "in": "path",
32161          "name": "namespace",
32162          "required": true,
32163          "type": "string",
32164          "uniqueItems": true
32165        },
32166        {
32167          "description": "If 'true', then the output is pretty printed.",
32168          "in": "query",
32169          "name": "pretty",
32170          "type": "string",
32171          "uniqueItems": true
32172        },
32173        {
32174          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
32175          "in": "query",
32176          "name": "resourceVersion",
32177          "type": "string",
32178          "uniqueItems": true
32179        },
32180        {
32181          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
32182          "in": "query",
32183          "name": "resourceVersionMatch",
32184          "type": "string",
32185          "uniqueItems": true
32186        },
32187        {
32188          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
32189          "in": "query",
32190          "name": "timeoutSeconds",
32191          "type": "integer",
32192          "uniqueItems": true
32193        },
32194        {
32195          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
32196          "in": "query",
32197          "name": "watch",
32198          "type": "boolean",
32199          "uniqueItems": true
32200        }
32201      ]
32202    },
32203    "/api/v1/watch/namespaces/{namespace}/endpoints/{name}": {
32204      "get": {
32205        "consumes": [
32206          "*/*"
32207        ],
32208        "description": "watch changes to an object of kind Endpoints. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.",
32209        "operationId": "watchCoreV1NamespacedEndpoints",
32210        "produces": [
32211          "application/json",
32212          "application/yaml",
32213          "application/vnd.kubernetes.protobuf",
32214          "application/json;stream=watch",
32215          "application/vnd.kubernetes.protobuf;stream=watch"
32216        ],
32217        "responses": {
32218          "200": {
32219            "description": "OK",
32220            "schema": {
32221              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
32222            }
32223          },
32224          "401": {
32225            "description": "Unauthorized"
32226          }
32227        },
32228        "schemes": [
32229          "https"
32230        ],
32231        "tags": [
32232          "core_v1"
32233        ],
32234        "x-kubernetes-action": "watch",
32235        "x-kubernetes-group-version-kind": {
32236          "group": "",
32237          "kind": "Endpoints",
32238          "version": "v1"
32239        }
32240      },
32241      "parameters": [
32242        {
32243          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
32244          "in": "query",
32245          "name": "allowWatchBookmarks",
32246          "type": "boolean",
32247          "uniqueItems": true
32248        },
32249        {
32250          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
32251          "in": "query",
32252          "name": "continue",
32253          "type": "string",
32254          "uniqueItems": true
32255        },
32256        {
32257          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
32258          "in": "query",
32259          "name": "fieldSelector",
32260          "type": "string",
32261          "uniqueItems": true
32262        },
32263        {
32264          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
32265          "in": "query",
32266          "name": "labelSelector",
32267          "type": "string",
32268          "uniqueItems": true
32269        },
32270        {
32271          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
32272          "in": "query",
32273          "name": "limit",
32274          "type": "integer",
32275          "uniqueItems": true
32276        },
32277        {
32278          "description": "name of the Endpoints",
32279          "in": "path",
32280          "name": "name",
32281          "required": true,
32282          "type": "string",
32283          "uniqueItems": true
32284        },
32285        {
32286          "description": "object name and auth scope, such as for teams and projects",
32287          "in": "path",
32288          "name": "namespace",
32289          "required": true,
32290          "type": "string",
32291          "uniqueItems": true
32292        },
32293        {
32294          "description": "If 'true', then the output is pretty printed.",
32295          "in": "query",
32296          "name": "pretty",
32297          "type": "string",
32298          "uniqueItems": true
32299        },
32300        {
32301          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
32302          "in": "query",
32303          "name": "resourceVersion",
32304          "type": "string",
32305          "uniqueItems": true
32306        },
32307        {
32308          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
32309          "in": "query",
32310          "name": "resourceVersionMatch",
32311          "type": "string",
32312          "uniqueItems": true
32313        },
32314        {
32315          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
32316          "in": "query",
32317          "name": "timeoutSeconds",
32318          "type": "integer",
32319          "uniqueItems": true
32320        },
32321        {
32322          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
32323          "in": "query",
32324          "name": "watch",
32325          "type": "boolean",
32326          "uniqueItems": true
32327        }
32328      ]
32329    },
32330    "/api/v1/watch/namespaces/{namespace}/events": {
32331      "get": {
32332        "consumes": [
32333          "*/*"
32334        ],
32335        "description": "watch individual changes to a list of Event. deprecated: use the 'watch' parameter with a list operation instead.",
32336        "operationId": "watchCoreV1NamespacedEventList",
32337        "produces": [
32338          "application/json",
32339          "application/yaml",
32340          "application/vnd.kubernetes.protobuf",
32341          "application/json;stream=watch",
32342          "application/vnd.kubernetes.protobuf;stream=watch"
32343        ],
32344        "responses": {
32345          "200": {
32346            "description": "OK",
32347            "schema": {
32348              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
32349            }
32350          },
32351          "401": {
32352            "description": "Unauthorized"
32353          }
32354        },
32355        "schemes": [
32356          "https"
32357        ],
32358        "tags": [
32359          "core_v1"
32360        ],
32361        "x-kubernetes-action": "watchlist",
32362        "x-kubernetes-group-version-kind": {
32363          "group": "",
32364          "kind": "Event",
32365          "version": "v1"
32366        }
32367      },
32368      "parameters": [
32369        {
32370          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
32371          "in": "query",
32372          "name": "allowWatchBookmarks",
32373          "type": "boolean",
32374          "uniqueItems": true
32375        },
32376        {
32377          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
32378          "in": "query",
32379          "name": "continue",
32380          "type": "string",
32381          "uniqueItems": true
32382        },
32383        {
32384          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
32385          "in": "query",
32386          "name": "fieldSelector",
32387          "type": "string",
32388          "uniqueItems": true
32389        },
32390        {
32391          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
32392          "in": "query",
32393          "name": "labelSelector",
32394          "type": "string",
32395          "uniqueItems": true
32396        },
32397        {
32398          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
32399          "in": "query",
32400          "name": "limit",
32401          "type": "integer",
32402          "uniqueItems": true
32403        },
32404        {
32405          "description": "object name and auth scope, such as for teams and projects",
32406          "in": "path",
32407          "name": "namespace",
32408          "required": true,
32409          "type": "string",
32410          "uniqueItems": true
32411        },
32412        {
32413          "description": "If 'true', then the output is pretty printed.",
32414          "in": "query",
32415          "name": "pretty",
32416          "type": "string",
32417          "uniqueItems": true
32418        },
32419        {
32420          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
32421          "in": "query",
32422          "name": "resourceVersion",
32423          "type": "string",
32424          "uniqueItems": true
32425        },
32426        {
32427          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
32428          "in": "query",
32429          "name": "resourceVersionMatch",
32430          "type": "string",
32431          "uniqueItems": true
32432        },
32433        {
32434          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
32435          "in": "query",
32436          "name": "timeoutSeconds",
32437          "type": "integer",
32438          "uniqueItems": true
32439        },
32440        {
32441          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
32442          "in": "query",
32443          "name": "watch",
32444          "type": "boolean",
32445          "uniqueItems": true
32446        }
32447      ]
32448    },
32449    "/api/v1/watch/namespaces/{namespace}/events/{name}": {
32450      "get": {
32451        "consumes": [
32452          "*/*"
32453        ],
32454        "description": "watch changes to an object of kind Event. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.",
32455        "operationId": "watchCoreV1NamespacedEvent",
32456        "produces": [
32457          "application/json",
32458          "application/yaml",
32459          "application/vnd.kubernetes.protobuf",
32460          "application/json;stream=watch",
32461          "application/vnd.kubernetes.protobuf;stream=watch"
32462        ],
32463        "responses": {
32464          "200": {
32465            "description": "OK",
32466            "schema": {
32467              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
32468            }
32469          },
32470          "401": {
32471            "description": "Unauthorized"
32472          }
32473        },
32474        "schemes": [
32475          "https"
32476        ],
32477        "tags": [
32478          "core_v1"
32479        ],
32480        "x-kubernetes-action": "watch",
32481        "x-kubernetes-group-version-kind": {
32482          "group": "",
32483          "kind": "Event",
32484          "version": "v1"
32485        }
32486      },
32487      "parameters": [
32488        {
32489          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
32490          "in": "query",
32491          "name": "allowWatchBookmarks",
32492          "type": "boolean",
32493          "uniqueItems": true
32494        },
32495        {
32496          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
32497          "in": "query",
32498          "name": "continue",
32499          "type": "string",
32500          "uniqueItems": true
32501        },
32502        {
32503          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
32504          "in": "query",
32505          "name": "fieldSelector",
32506          "type": "string",
32507          "uniqueItems": true
32508        },
32509        {
32510          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
32511          "in": "query",
32512          "name": "labelSelector",
32513          "type": "string",
32514          "uniqueItems": true
32515        },
32516        {
32517          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
32518          "in": "query",
32519          "name": "limit",
32520          "type": "integer",
32521          "uniqueItems": true
32522        },
32523        {
32524          "description": "name of the Event",
32525          "in": "path",
32526          "name": "name",
32527          "required": true,
32528          "type": "string",
32529          "uniqueItems": true
32530        },
32531        {
32532          "description": "object name and auth scope, such as for teams and projects",
32533          "in": "path",
32534          "name": "namespace",
32535          "required": true,
32536          "type": "string",
32537          "uniqueItems": true
32538        },
32539        {
32540          "description": "If 'true', then the output is pretty printed.",
32541          "in": "query",
32542          "name": "pretty",
32543          "type": "string",
32544          "uniqueItems": true
32545        },
32546        {
32547          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
32548          "in": "query",
32549          "name": "resourceVersion",
32550          "type": "string",
32551          "uniqueItems": true
32552        },
32553        {
32554          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
32555          "in": "query",
32556          "name": "resourceVersionMatch",
32557          "type": "string",
32558          "uniqueItems": true
32559        },
32560        {
32561          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
32562          "in": "query",
32563          "name": "timeoutSeconds",
32564          "type": "integer",
32565          "uniqueItems": true
32566        },
32567        {
32568          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
32569          "in": "query",
32570          "name": "watch",
32571          "type": "boolean",
32572          "uniqueItems": true
32573        }
32574      ]
32575    },
32576    "/api/v1/watch/namespaces/{namespace}/limitranges": {
32577      "get": {
32578        "consumes": [
32579          "*/*"
32580        ],
32581        "description": "watch individual changes to a list of LimitRange. deprecated: use the 'watch' parameter with a list operation instead.",
32582        "operationId": "watchCoreV1NamespacedLimitRangeList",
32583        "produces": [
32584          "application/json",
32585          "application/yaml",
32586          "application/vnd.kubernetes.protobuf",
32587          "application/json;stream=watch",
32588          "application/vnd.kubernetes.protobuf;stream=watch"
32589        ],
32590        "responses": {
32591          "200": {
32592            "description": "OK",
32593            "schema": {
32594              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
32595            }
32596          },
32597          "401": {
32598            "description": "Unauthorized"
32599          }
32600        },
32601        "schemes": [
32602          "https"
32603        ],
32604        "tags": [
32605          "core_v1"
32606        ],
32607        "x-kubernetes-action": "watchlist",
32608        "x-kubernetes-group-version-kind": {
32609          "group": "",
32610          "kind": "LimitRange",
32611          "version": "v1"
32612        }
32613      },
32614      "parameters": [
32615        {
32616          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
32617          "in": "query",
32618          "name": "allowWatchBookmarks",
32619          "type": "boolean",
32620          "uniqueItems": true
32621        },
32622        {
32623          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
32624          "in": "query",
32625          "name": "continue",
32626          "type": "string",
32627          "uniqueItems": true
32628        },
32629        {
32630          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
32631          "in": "query",
32632          "name": "fieldSelector",
32633          "type": "string",
32634          "uniqueItems": true
32635        },
32636        {
32637          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
32638          "in": "query",
32639          "name": "labelSelector",
32640          "type": "string",
32641          "uniqueItems": true
32642        },
32643        {
32644          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
32645          "in": "query",
32646          "name": "limit",
32647          "type": "integer",
32648          "uniqueItems": true
32649        },
32650        {
32651          "description": "object name and auth scope, such as for teams and projects",
32652          "in": "path",
32653          "name": "namespace",
32654          "required": true,
32655          "type": "string",
32656          "uniqueItems": true
32657        },
32658        {
32659          "description": "If 'true', then the output is pretty printed.",
32660          "in": "query",
32661          "name": "pretty",
32662          "type": "string",
32663          "uniqueItems": true
32664        },
32665        {
32666          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
32667          "in": "query",
32668          "name": "resourceVersion",
32669          "type": "string",
32670          "uniqueItems": true
32671        },
32672        {
32673          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
32674          "in": "query",
32675          "name": "resourceVersionMatch",
32676          "type": "string",
32677          "uniqueItems": true
32678        },
32679        {
32680          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
32681          "in": "query",
32682          "name": "timeoutSeconds",
32683          "type": "integer",
32684          "uniqueItems": true
32685        },
32686        {
32687          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
32688          "in": "query",
32689          "name": "watch",
32690          "type": "boolean",
32691          "uniqueItems": true
32692        }
32693      ]
32694    },
32695    "/api/v1/watch/namespaces/{namespace}/limitranges/{name}": {
32696      "get": {
32697        "consumes": [
32698          "*/*"
32699        ],
32700        "description": "watch changes to an object of kind LimitRange. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.",
32701        "operationId": "watchCoreV1NamespacedLimitRange",
32702        "produces": [
32703          "application/json",
32704          "application/yaml",
32705          "application/vnd.kubernetes.protobuf",
32706          "application/json;stream=watch",
32707          "application/vnd.kubernetes.protobuf;stream=watch"
32708        ],
32709        "responses": {
32710          "200": {
32711            "description": "OK",
32712            "schema": {
32713              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
32714            }
32715          },
32716          "401": {
32717            "description": "Unauthorized"
32718          }
32719        },
32720        "schemes": [
32721          "https"
32722        ],
32723        "tags": [
32724          "core_v1"
32725        ],
32726        "x-kubernetes-action": "watch",
32727        "x-kubernetes-group-version-kind": {
32728          "group": "",
32729          "kind": "LimitRange",
32730          "version": "v1"
32731        }
32732      },
32733      "parameters": [
32734        {
32735          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
32736          "in": "query",
32737          "name": "allowWatchBookmarks",
32738          "type": "boolean",
32739          "uniqueItems": true
32740        },
32741        {
32742          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
32743          "in": "query",
32744          "name": "continue",
32745          "type": "string",
32746          "uniqueItems": true
32747        },
32748        {
32749          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
32750          "in": "query",
32751          "name": "fieldSelector",
32752          "type": "string",
32753          "uniqueItems": true
32754        },
32755        {
32756          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
32757          "in": "query",
32758          "name": "labelSelector",
32759          "type": "string",
32760          "uniqueItems": true
32761        },
32762        {
32763          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
32764          "in": "query",
32765          "name": "limit",
32766          "type": "integer",
32767          "uniqueItems": true
32768        },
32769        {
32770          "description": "name of the LimitRange",
32771          "in": "path",
32772          "name": "name",
32773          "required": true,
32774          "type": "string",
32775          "uniqueItems": true
32776        },
32777        {
32778          "description": "object name and auth scope, such as for teams and projects",
32779          "in": "path",
32780          "name": "namespace",
32781          "required": true,
32782          "type": "string",
32783          "uniqueItems": true
32784        },
32785        {
32786          "description": "If 'true', then the output is pretty printed.",
32787          "in": "query",
32788          "name": "pretty",
32789          "type": "string",
32790          "uniqueItems": true
32791        },
32792        {
32793          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
32794          "in": "query",
32795          "name": "resourceVersion",
32796          "type": "string",
32797          "uniqueItems": true
32798        },
32799        {
32800          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
32801          "in": "query",
32802          "name": "resourceVersionMatch",
32803          "type": "string",
32804          "uniqueItems": true
32805        },
32806        {
32807          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
32808          "in": "query",
32809          "name": "timeoutSeconds",
32810          "type": "integer",
32811          "uniqueItems": true
32812        },
32813        {
32814          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
32815          "in": "query",
32816          "name": "watch",
32817          "type": "boolean",
32818          "uniqueItems": true
32819        }
32820      ]
32821    },
32822    "/api/v1/watch/namespaces/{namespace}/persistentvolumeclaims": {
32823      "get": {
32824        "consumes": [
32825          "*/*"
32826        ],
32827        "description": "watch individual changes to a list of PersistentVolumeClaim. deprecated: use the 'watch' parameter with a list operation instead.",
32828        "operationId": "watchCoreV1NamespacedPersistentVolumeClaimList",
32829        "produces": [
32830          "application/json",
32831          "application/yaml",
32832          "application/vnd.kubernetes.protobuf",
32833          "application/json;stream=watch",
32834          "application/vnd.kubernetes.protobuf;stream=watch"
32835        ],
32836        "responses": {
32837          "200": {
32838            "description": "OK",
32839            "schema": {
32840              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
32841            }
32842          },
32843          "401": {
32844            "description": "Unauthorized"
32845          }
32846        },
32847        "schemes": [
32848          "https"
32849        ],
32850        "tags": [
32851          "core_v1"
32852        ],
32853        "x-kubernetes-action": "watchlist",
32854        "x-kubernetes-group-version-kind": {
32855          "group": "",
32856          "kind": "PersistentVolumeClaim",
32857          "version": "v1"
32858        }
32859      },
32860      "parameters": [
32861        {
32862          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
32863          "in": "query",
32864          "name": "allowWatchBookmarks",
32865          "type": "boolean",
32866          "uniqueItems": true
32867        },
32868        {
32869          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
32870          "in": "query",
32871          "name": "continue",
32872          "type": "string",
32873          "uniqueItems": true
32874        },
32875        {
32876          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
32877          "in": "query",
32878          "name": "fieldSelector",
32879          "type": "string",
32880          "uniqueItems": true
32881        },
32882        {
32883          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
32884          "in": "query",
32885          "name": "labelSelector",
32886          "type": "string",
32887          "uniqueItems": true
32888        },
32889        {
32890          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
32891          "in": "query",
32892          "name": "limit",
32893          "type": "integer",
32894          "uniqueItems": true
32895        },
32896        {
32897          "description": "object name and auth scope, such as for teams and projects",
32898          "in": "path",
32899          "name": "namespace",
32900          "required": true,
32901          "type": "string",
32902          "uniqueItems": true
32903        },
32904        {
32905          "description": "If 'true', then the output is pretty printed.",
32906          "in": "query",
32907          "name": "pretty",
32908          "type": "string",
32909          "uniqueItems": true
32910        },
32911        {
32912          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
32913          "in": "query",
32914          "name": "resourceVersion",
32915          "type": "string",
32916          "uniqueItems": true
32917        },
32918        {
32919          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
32920          "in": "query",
32921          "name": "resourceVersionMatch",
32922          "type": "string",
32923          "uniqueItems": true
32924        },
32925        {
32926          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
32927          "in": "query",
32928          "name": "timeoutSeconds",
32929          "type": "integer",
32930          "uniqueItems": true
32931        },
32932        {
32933          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
32934          "in": "query",
32935          "name": "watch",
32936          "type": "boolean",
32937          "uniqueItems": true
32938        }
32939      ]
32940    },
32941    "/api/v1/watch/namespaces/{namespace}/persistentvolumeclaims/{name}": {
32942      "get": {
32943        "consumes": [
32944          "*/*"
32945        ],
32946        "description": "watch changes to an object of kind PersistentVolumeClaim. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.",
32947        "operationId": "watchCoreV1NamespacedPersistentVolumeClaim",
32948        "produces": [
32949          "application/json",
32950          "application/yaml",
32951          "application/vnd.kubernetes.protobuf",
32952          "application/json;stream=watch",
32953          "application/vnd.kubernetes.protobuf;stream=watch"
32954        ],
32955        "responses": {
32956          "200": {
32957            "description": "OK",
32958            "schema": {
32959              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
32960            }
32961          },
32962          "401": {
32963            "description": "Unauthorized"
32964          }
32965        },
32966        "schemes": [
32967          "https"
32968        ],
32969        "tags": [
32970          "core_v1"
32971        ],
32972        "x-kubernetes-action": "watch",
32973        "x-kubernetes-group-version-kind": {
32974          "group": "",
32975          "kind": "PersistentVolumeClaim",
32976          "version": "v1"
32977        }
32978      },
32979      "parameters": [
32980        {
32981          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
32982          "in": "query",
32983          "name": "allowWatchBookmarks",
32984          "type": "boolean",
32985          "uniqueItems": true
32986        },
32987        {
32988          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
32989          "in": "query",
32990          "name": "continue",
32991          "type": "string",
32992          "uniqueItems": true
32993        },
32994        {
32995          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
32996          "in": "query",
32997          "name": "fieldSelector",
32998          "type": "string",
32999          "uniqueItems": true
33000        },
33001        {
33002          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
33003          "in": "query",
33004          "name": "labelSelector",
33005          "type": "string",
33006          "uniqueItems": true
33007        },
33008        {
33009          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
33010          "in": "query",
33011          "name": "limit",
33012          "type": "integer",
33013          "uniqueItems": true
33014        },
33015        {
33016          "description": "name of the PersistentVolumeClaim",
33017          "in": "path",
33018          "name": "name",
33019          "required": true,
33020          "type": "string",
33021          "uniqueItems": true
33022        },
33023        {
33024          "description": "object name and auth scope, such as for teams and projects",
33025          "in": "path",
33026          "name": "namespace",
33027          "required": true,
33028          "type": "string",
33029          "uniqueItems": true
33030        },
33031        {
33032          "description": "If 'true', then the output is pretty printed.",
33033          "in": "query",
33034          "name": "pretty",
33035          "type": "string",
33036          "uniqueItems": true
33037        },
33038        {
33039          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
33040          "in": "query",
33041          "name": "resourceVersion",
33042          "type": "string",
33043          "uniqueItems": true
33044        },
33045        {
33046          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
33047          "in": "query",
33048          "name": "resourceVersionMatch",
33049          "type": "string",
33050          "uniqueItems": true
33051        },
33052        {
33053          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
33054          "in": "query",
33055          "name": "timeoutSeconds",
33056          "type": "integer",
33057          "uniqueItems": true
33058        },
33059        {
33060          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
33061          "in": "query",
33062          "name": "watch",
33063          "type": "boolean",
33064          "uniqueItems": true
33065        }
33066      ]
33067    },
33068    "/api/v1/watch/namespaces/{namespace}/pods": {
33069      "get": {
33070        "consumes": [
33071          "*/*"
33072        ],
33073        "description": "watch individual changes to a list of Pod. deprecated: use the 'watch' parameter with a list operation instead.",
33074        "operationId": "watchCoreV1NamespacedPodList",
33075        "produces": [
33076          "application/json",
33077          "application/yaml",
33078          "application/vnd.kubernetes.protobuf",
33079          "application/json;stream=watch",
33080          "application/vnd.kubernetes.protobuf;stream=watch"
33081        ],
33082        "responses": {
33083          "200": {
33084            "description": "OK",
33085            "schema": {
33086              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
33087            }
33088          },
33089          "401": {
33090            "description": "Unauthorized"
33091          }
33092        },
33093        "schemes": [
33094          "https"
33095        ],
33096        "tags": [
33097          "core_v1"
33098        ],
33099        "x-kubernetes-action": "watchlist",
33100        "x-kubernetes-group-version-kind": {
33101          "group": "",
33102          "kind": "Pod",
33103          "version": "v1"
33104        }
33105      },
33106      "parameters": [
33107        {
33108          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
33109          "in": "query",
33110          "name": "allowWatchBookmarks",
33111          "type": "boolean",
33112          "uniqueItems": true
33113        },
33114        {
33115          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
33116          "in": "query",
33117          "name": "continue",
33118          "type": "string",
33119          "uniqueItems": true
33120        },
33121        {
33122          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
33123          "in": "query",
33124          "name": "fieldSelector",
33125          "type": "string",
33126          "uniqueItems": true
33127        },
33128        {
33129          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
33130          "in": "query",
33131          "name": "labelSelector",
33132          "type": "string",
33133          "uniqueItems": true
33134        },
33135        {
33136          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
33137          "in": "query",
33138          "name": "limit",
33139          "type": "integer",
33140          "uniqueItems": true
33141        },
33142        {
33143          "description": "object name and auth scope, such as for teams and projects",
33144          "in": "path",
33145          "name": "namespace",
33146          "required": true,
33147          "type": "string",
33148          "uniqueItems": true
33149        },
33150        {
33151          "description": "If 'true', then the output is pretty printed.",
33152          "in": "query",
33153          "name": "pretty",
33154          "type": "string",
33155          "uniqueItems": true
33156        },
33157        {
33158          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
33159          "in": "query",
33160          "name": "resourceVersion",
33161          "type": "string",
33162          "uniqueItems": true
33163        },
33164        {
33165          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
33166          "in": "query",
33167          "name": "resourceVersionMatch",
33168          "type": "string",
33169          "uniqueItems": true
33170        },
33171        {
33172          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
33173          "in": "query",
33174          "name": "timeoutSeconds",
33175          "type": "integer",
33176          "uniqueItems": true
33177        },
33178        {
33179          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
33180          "in": "query",
33181          "name": "watch",
33182          "type": "boolean",
33183          "uniqueItems": true
33184        }
33185      ]
33186    },
33187    "/api/v1/watch/namespaces/{namespace}/pods/{name}": {
33188      "get": {
33189        "consumes": [
33190          "*/*"
33191        ],
33192        "description": "watch changes to an object of kind Pod. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.",
33193        "operationId": "watchCoreV1NamespacedPod",
33194        "produces": [
33195          "application/json",
33196          "application/yaml",
33197          "application/vnd.kubernetes.protobuf",
33198          "application/json;stream=watch",
33199          "application/vnd.kubernetes.protobuf;stream=watch"
33200        ],
33201        "responses": {
33202          "200": {
33203            "description": "OK",
33204            "schema": {
33205              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
33206            }
33207          },
33208          "401": {
33209            "description": "Unauthorized"
33210          }
33211        },
33212        "schemes": [
33213          "https"
33214        ],
33215        "tags": [
33216          "core_v1"
33217        ],
33218        "x-kubernetes-action": "watch",
33219        "x-kubernetes-group-version-kind": {
33220          "group": "",
33221          "kind": "Pod",
33222          "version": "v1"
33223        }
33224      },
33225      "parameters": [
33226        {
33227          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
33228          "in": "query",
33229          "name": "allowWatchBookmarks",
33230          "type": "boolean",
33231          "uniqueItems": true
33232        },
33233        {
33234          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
33235          "in": "query",
33236          "name": "continue",
33237          "type": "string",
33238          "uniqueItems": true
33239        },
33240        {
33241          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
33242          "in": "query",
33243          "name": "fieldSelector",
33244          "type": "string",
33245          "uniqueItems": true
33246        },
33247        {
33248          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
33249          "in": "query",
33250          "name": "labelSelector",
33251          "type": "string",
33252          "uniqueItems": true
33253        },
33254        {
33255          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
33256          "in": "query",
33257          "name": "limit",
33258          "type": "integer",
33259          "uniqueItems": true
33260        },
33261        {
33262          "description": "name of the Pod",
33263          "in": "path",
33264          "name": "name",
33265          "required": true,
33266          "type": "string",
33267          "uniqueItems": true
33268        },
33269        {
33270          "description": "object name and auth scope, such as for teams and projects",
33271          "in": "path",
33272          "name": "namespace",
33273          "required": true,
33274          "type": "string",
33275          "uniqueItems": true
33276        },
33277        {
33278          "description": "If 'true', then the output is pretty printed.",
33279          "in": "query",
33280          "name": "pretty",
33281          "type": "string",
33282          "uniqueItems": true
33283        },
33284        {
33285          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
33286          "in": "query",
33287          "name": "resourceVersion",
33288          "type": "string",
33289          "uniqueItems": true
33290        },
33291        {
33292          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
33293          "in": "query",
33294          "name": "resourceVersionMatch",
33295          "type": "string",
33296          "uniqueItems": true
33297        },
33298        {
33299          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
33300          "in": "query",
33301          "name": "timeoutSeconds",
33302          "type": "integer",
33303          "uniqueItems": true
33304        },
33305        {
33306          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
33307          "in": "query",
33308          "name": "watch",
33309          "type": "boolean",
33310          "uniqueItems": true
33311        }
33312      ]
33313    },
33314    "/api/v1/watch/namespaces/{namespace}/podtemplates": {
33315      "get": {
33316        "consumes": [
33317          "*/*"
33318        ],
33319        "description": "watch individual changes to a list of PodTemplate. deprecated: use the 'watch' parameter with a list operation instead.",
33320        "operationId": "watchCoreV1NamespacedPodTemplateList",
33321        "produces": [
33322          "application/json",
33323          "application/yaml",
33324          "application/vnd.kubernetes.protobuf",
33325          "application/json;stream=watch",
33326          "application/vnd.kubernetes.protobuf;stream=watch"
33327        ],
33328        "responses": {
33329          "200": {
33330            "description": "OK",
33331            "schema": {
33332              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
33333            }
33334          },
33335          "401": {
33336            "description": "Unauthorized"
33337          }
33338        },
33339        "schemes": [
33340          "https"
33341        ],
33342        "tags": [
33343          "core_v1"
33344        ],
33345        "x-kubernetes-action": "watchlist",
33346        "x-kubernetes-group-version-kind": {
33347          "group": "",
33348          "kind": "PodTemplate",
33349          "version": "v1"
33350        }
33351      },
33352      "parameters": [
33353        {
33354          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
33355          "in": "query",
33356          "name": "allowWatchBookmarks",
33357          "type": "boolean",
33358          "uniqueItems": true
33359        },
33360        {
33361          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
33362          "in": "query",
33363          "name": "continue",
33364          "type": "string",
33365          "uniqueItems": true
33366        },
33367        {
33368          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
33369          "in": "query",
33370          "name": "fieldSelector",
33371          "type": "string",
33372          "uniqueItems": true
33373        },
33374        {
33375          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
33376          "in": "query",
33377          "name": "labelSelector",
33378          "type": "string",
33379          "uniqueItems": true
33380        },
33381        {
33382          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
33383          "in": "query",
33384          "name": "limit",
33385          "type": "integer",
33386          "uniqueItems": true
33387        },
33388        {
33389          "description": "object name and auth scope, such as for teams and projects",
33390          "in": "path",
33391          "name": "namespace",
33392          "required": true,
33393          "type": "string",
33394          "uniqueItems": true
33395        },
33396        {
33397          "description": "If 'true', then the output is pretty printed.",
33398          "in": "query",
33399          "name": "pretty",
33400          "type": "string",
33401          "uniqueItems": true
33402        },
33403        {
33404          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
33405          "in": "query",
33406          "name": "resourceVersion",
33407          "type": "string",
33408          "uniqueItems": true
33409        },
33410        {
33411          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
33412          "in": "query",
33413          "name": "resourceVersionMatch",
33414          "type": "string",
33415          "uniqueItems": true
33416        },
33417        {
33418          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
33419          "in": "query",
33420          "name": "timeoutSeconds",
33421          "type": "integer",
33422          "uniqueItems": true
33423        },
33424        {
33425          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
33426          "in": "query",
33427          "name": "watch",
33428          "type": "boolean",
33429          "uniqueItems": true
33430        }
33431      ]
33432    },
33433    "/api/v1/watch/namespaces/{namespace}/podtemplates/{name}": {
33434      "get": {
33435        "consumes": [
33436          "*/*"
33437        ],
33438        "description": "watch changes to an object of kind PodTemplate. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.",
33439        "operationId": "watchCoreV1NamespacedPodTemplate",
33440        "produces": [
33441          "application/json",
33442          "application/yaml",
33443          "application/vnd.kubernetes.protobuf",
33444          "application/json;stream=watch",
33445          "application/vnd.kubernetes.protobuf;stream=watch"
33446        ],
33447        "responses": {
33448          "200": {
33449            "description": "OK",
33450            "schema": {
33451              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
33452            }
33453          },
33454          "401": {
33455            "description": "Unauthorized"
33456          }
33457        },
33458        "schemes": [
33459          "https"
33460        ],
33461        "tags": [
33462          "core_v1"
33463        ],
33464        "x-kubernetes-action": "watch",
33465        "x-kubernetes-group-version-kind": {
33466          "group": "",
33467          "kind": "PodTemplate",
33468          "version": "v1"
33469        }
33470      },
33471      "parameters": [
33472        {
33473          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
33474          "in": "query",
33475          "name": "allowWatchBookmarks",
33476          "type": "boolean",
33477          "uniqueItems": true
33478        },
33479        {
33480          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
33481          "in": "query",
33482          "name": "continue",
33483          "type": "string",
33484          "uniqueItems": true
33485        },
33486        {
33487          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
33488          "in": "query",
33489          "name": "fieldSelector",
33490          "type": "string",
33491          "uniqueItems": true
33492        },
33493        {
33494          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
33495          "in": "query",
33496          "name": "labelSelector",
33497          "type": "string",
33498          "uniqueItems": true
33499        },
33500        {
33501          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
33502          "in": "query",
33503          "name": "limit",
33504          "type": "integer",
33505          "uniqueItems": true
33506        },
33507        {
33508          "description": "name of the PodTemplate",
33509          "in": "path",
33510          "name": "name",
33511          "required": true,
33512          "type": "string",
33513          "uniqueItems": true
33514        },
33515        {
33516          "description": "object name and auth scope, such as for teams and projects",
33517          "in": "path",
33518          "name": "namespace",
33519          "required": true,
33520          "type": "string",
33521          "uniqueItems": true
33522        },
33523        {
33524          "description": "If 'true', then the output is pretty printed.",
33525          "in": "query",
33526          "name": "pretty",
33527          "type": "string",
33528          "uniqueItems": true
33529        },
33530        {
33531          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
33532          "in": "query",
33533          "name": "resourceVersion",
33534          "type": "string",
33535          "uniqueItems": true
33536        },
33537        {
33538          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
33539          "in": "query",
33540          "name": "resourceVersionMatch",
33541          "type": "string",
33542          "uniqueItems": true
33543        },
33544        {
33545          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
33546          "in": "query",
33547          "name": "timeoutSeconds",
33548          "type": "integer",
33549          "uniqueItems": true
33550        },
33551        {
33552          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
33553          "in": "query",
33554          "name": "watch",
33555          "type": "boolean",
33556          "uniqueItems": true
33557        }
33558      ]
33559    },
33560    "/api/v1/watch/namespaces/{namespace}/replicationcontrollers": {
33561      "get": {
33562        "consumes": [
33563          "*/*"
33564        ],
33565        "description": "watch individual changes to a list of ReplicationController. deprecated: use the 'watch' parameter with a list operation instead.",
33566        "operationId": "watchCoreV1NamespacedReplicationControllerList",
33567        "produces": [
33568          "application/json",
33569          "application/yaml",
33570          "application/vnd.kubernetes.protobuf",
33571          "application/json;stream=watch",
33572          "application/vnd.kubernetes.protobuf;stream=watch"
33573        ],
33574        "responses": {
33575          "200": {
33576            "description": "OK",
33577            "schema": {
33578              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
33579            }
33580          },
33581          "401": {
33582            "description": "Unauthorized"
33583          }
33584        },
33585        "schemes": [
33586          "https"
33587        ],
33588        "tags": [
33589          "core_v1"
33590        ],
33591        "x-kubernetes-action": "watchlist",
33592        "x-kubernetes-group-version-kind": {
33593          "group": "",
33594          "kind": "ReplicationController",
33595          "version": "v1"
33596        }
33597      },
33598      "parameters": [
33599        {
33600          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
33601          "in": "query",
33602          "name": "allowWatchBookmarks",
33603          "type": "boolean",
33604          "uniqueItems": true
33605        },
33606        {
33607          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
33608          "in": "query",
33609          "name": "continue",
33610          "type": "string",
33611          "uniqueItems": true
33612        },
33613        {
33614          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
33615          "in": "query",
33616          "name": "fieldSelector",
33617          "type": "string",
33618          "uniqueItems": true
33619        },
33620        {
33621          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
33622          "in": "query",
33623          "name": "labelSelector",
33624          "type": "string",
33625          "uniqueItems": true
33626        },
33627        {
33628          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
33629          "in": "query",
33630          "name": "limit",
33631          "type": "integer",
33632          "uniqueItems": true
33633        },
33634        {
33635          "description": "object name and auth scope, such as for teams and projects",
33636          "in": "path",
33637          "name": "namespace",
33638          "required": true,
33639          "type": "string",
33640          "uniqueItems": true
33641        },
33642        {
33643          "description": "If 'true', then the output is pretty printed.",
33644          "in": "query",
33645          "name": "pretty",
33646          "type": "string",
33647          "uniqueItems": true
33648        },
33649        {
33650          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
33651          "in": "query",
33652          "name": "resourceVersion",
33653          "type": "string",
33654          "uniqueItems": true
33655        },
33656        {
33657          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
33658          "in": "query",
33659          "name": "resourceVersionMatch",
33660          "type": "string",
33661          "uniqueItems": true
33662        },
33663        {
33664          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
33665          "in": "query",
33666          "name": "timeoutSeconds",
33667          "type": "integer",
33668          "uniqueItems": true
33669        },
33670        {
33671          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
33672          "in": "query",
33673          "name": "watch",
33674          "type": "boolean",
33675          "uniqueItems": true
33676        }
33677      ]
33678    },
33679    "/api/v1/watch/namespaces/{namespace}/replicationcontrollers/{name}": {
33680      "get": {
33681        "consumes": [
33682          "*/*"
33683        ],
33684        "description": "watch changes to an object of kind ReplicationController. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.",
33685        "operationId": "watchCoreV1NamespacedReplicationController",
33686        "produces": [
33687          "application/json",
33688          "application/yaml",
33689          "application/vnd.kubernetes.protobuf",
33690          "application/json;stream=watch",
33691          "application/vnd.kubernetes.protobuf;stream=watch"
33692        ],
33693        "responses": {
33694          "200": {
33695            "description": "OK",
33696            "schema": {
33697              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
33698            }
33699          },
33700          "401": {
33701            "description": "Unauthorized"
33702          }
33703        },
33704        "schemes": [
33705          "https"
33706        ],
33707        "tags": [
33708          "core_v1"
33709        ],
33710        "x-kubernetes-action": "watch",
33711        "x-kubernetes-group-version-kind": {
33712          "group": "",
33713          "kind": "ReplicationController",
33714          "version": "v1"
33715        }
33716      },
33717      "parameters": [
33718        {
33719          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
33720          "in": "query",
33721          "name": "allowWatchBookmarks",
33722          "type": "boolean",
33723          "uniqueItems": true
33724        },
33725        {
33726          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
33727          "in": "query",
33728          "name": "continue",
33729          "type": "string",
33730          "uniqueItems": true
33731        },
33732        {
33733          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
33734          "in": "query",
33735          "name": "fieldSelector",
33736          "type": "string",
33737          "uniqueItems": true
33738        },
33739        {
33740          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
33741          "in": "query",
33742          "name": "labelSelector",
33743          "type": "string",
33744          "uniqueItems": true
33745        },
33746        {
33747          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
33748          "in": "query",
33749          "name": "limit",
33750          "type": "integer",
33751          "uniqueItems": true
33752        },
33753        {
33754          "description": "name of the ReplicationController",
33755          "in": "path",
33756          "name": "name",
33757          "required": true,
33758          "type": "string",
33759          "uniqueItems": true
33760        },
33761        {
33762          "description": "object name and auth scope, such as for teams and projects",
33763          "in": "path",
33764          "name": "namespace",
33765          "required": true,
33766          "type": "string",
33767          "uniqueItems": true
33768        },
33769        {
33770          "description": "If 'true', then the output is pretty printed.",
33771          "in": "query",
33772          "name": "pretty",
33773          "type": "string",
33774          "uniqueItems": true
33775        },
33776        {
33777          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
33778          "in": "query",
33779          "name": "resourceVersion",
33780          "type": "string",
33781          "uniqueItems": true
33782        },
33783        {
33784          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
33785          "in": "query",
33786          "name": "resourceVersionMatch",
33787          "type": "string",
33788          "uniqueItems": true
33789        },
33790        {
33791          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
33792          "in": "query",
33793          "name": "timeoutSeconds",
33794          "type": "integer",
33795          "uniqueItems": true
33796        },
33797        {
33798          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
33799          "in": "query",
33800          "name": "watch",
33801          "type": "boolean",
33802          "uniqueItems": true
33803        }
33804      ]
33805    },
33806    "/api/v1/watch/namespaces/{namespace}/resourcequotas": {
33807      "get": {
33808        "consumes": [
33809          "*/*"
33810        ],
33811        "description": "watch individual changes to a list of ResourceQuota. deprecated: use the 'watch' parameter with a list operation instead.",
33812        "operationId": "watchCoreV1NamespacedResourceQuotaList",
33813        "produces": [
33814          "application/json",
33815          "application/yaml",
33816          "application/vnd.kubernetes.protobuf",
33817          "application/json;stream=watch",
33818          "application/vnd.kubernetes.protobuf;stream=watch"
33819        ],
33820        "responses": {
33821          "200": {
33822            "description": "OK",
33823            "schema": {
33824              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
33825            }
33826          },
33827          "401": {
33828            "description": "Unauthorized"
33829          }
33830        },
33831        "schemes": [
33832          "https"
33833        ],
33834        "tags": [
33835          "core_v1"
33836        ],
33837        "x-kubernetes-action": "watchlist",
33838        "x-kubernetes-group-version-kind": {
33839          "group": "",
33840          "kind": "ResourceQuota",
33841          "version": "v1"
33842        }
33843      },
33844      "parameters": [
33845        {
33846          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
33847          "in": "query",
33848          "name": "allowWatchBookmarks",
33849          "type": "boolean",
33850          "uniqueItems": true
33851        },
33852        {
33853          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
33854          "in": "query",
33855          "name": "continue",
33856          "type": "string",
33857          "uniqueItems": true
33858        },
33859        {
33860          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
33861          "in": "query",
33862          "name": "fieldSelector",
33863          "type": "string",
33864          "uniqueItems": true
33865        },
33866        {
33867          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
33868          "in": "query",
33869          "name": "labelSelector",
33870          "type": "string",
33871          "uniqueItems": true
33872        },
33873        {
33874          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
33875          "in": "query",
33876          "name": "limit",
33877          "type": "integer",
33878          "uniqueItems": true
33879        },
33880        {
33881          "description": "object name and auth scope, such as for teams and projects",
33882          "in": "path",
33883          "name": "namespace",
33884          "required": true,
33885          "type": "string",
33886          "uniqueItems": true
33887        },
33888        {
33889          "description": "If 'true', then the output is pretty printed.",
33890          "in": "query",
33891          "name": "pretty",
33892          "type": "string",
33893          "uniqueItems": true
33894        },
33895        {
33896          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
33897          "in": "query",
33898          "name": "resourceVersion",
33899          "type": "string",
33900          "uniqueItems": true
33901        },
33902        {
33903          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
33904          "in": "query",
33905          "name": "resourceVersionMatch",
33906          "type": "string",
33907          "uniqueItems": true
33908        },
33909        {
33910          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
33911          "in": "query",
33912          "name": "timeoutSeconds",
33913          "type": "integer",
33914          "uniqueItems": true
33915        },
33916        {
33917          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
33918          "in": "query",
33919          "name": "watch",
33920          "type": "boolean",
33921          "uniqueItems": true
33922        }
33923      ]
33924    },
33925    "/api/v1/watch/namespaces/{namespace}/resourcequotas/{name}": {
33926      "get": {
33927        "consumes": [
33928          "*/*"
33929        ],
33930        "description": "watch changes to an object of kind ResourceQuota. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.",
33931        "operationId": "watchCoreV1NamespacedResourceQuota",
33932        "produces": [
33933          "application/json",
33934          "application/yaml",
33935          "application/vnd.kubernetes.protobuf",
33936          "application/json;stream=watch",
33937          "application/vnd.kubernetes.protobuf;stream=watch"
33938        ],
33939        "responses": {
33940          "200": {
33941            "description": "OK",
33942            "schema": {
33943              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
33944            }
33945          },
33946          "401": {
33947            "description": "Unauthorized"
33948          }
33949        },
33950        "schemes": [
33951          "https"
33952        ],
33953        "tags": [
33954          "core_v1"
33955        ],
33956        "x-kubernetes-action": "watch",
33957        "x-kubernetes-group-version-kind": {
33958          "group": "",
33959          "kind": "ResourceQuota",
33960          "version": "v1"
33961        }
33962      },
33963      "parameters": [
33964        {
33965          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
33966          "in": "query",
33967          "name": "allowWatchBookmarks",
33968          "type": "boolean",
33969          "uniqueItems": true
33970        },
33971        {
33972          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
33973          "in": "query",
33974          "name": "continue",
33975          "type": "string",
33976          "uniqueItems": true
33977        },
33978        {
33979          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
33980          "in": "query",
33981          "name": "fieldSelector",
33982          "type": "string",
33983          "uniqueItems": true
33984        },
33985        {
33986          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
33987          "in": "query",
33988          "name": "labelSelector",
33989          "type": "string",
33990          "uniqueItems": true
33991        },
33992        {
33993          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
33994          "in": "query",
33995          "name": "limit",
33996          "type": "integer",
33997          "uniqueItems": true
33998        },
33999        {
34000          "description": "name of the ResourceQuota",
34001          "in": "path",
34002          "name": "name",
34003          "required": true,
34004          "type": "string",
34005          "uniqueItems": true
34006        },
34007        {
34008          "description": "object name and auth scope, such as for teams and projects",
34009          "in": "path",
34010          "name": "namespace",
34011          "required": true,
34012          "type": "string",
34013          "uniqueItems": true
34014        },
34015        {
34016          "description": "If 'true', then the output is pretty printed.",
34017          "in": "query",
34018          "name": "pretty",
34019          "type": "string",
34020          "uniqueItems": true
34021        },
34022        {
34023          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
34024          "in": "query",
34025          "name": "resourceVersion",
34026          "type": "string",
34027          "uniqueItems": true
34028        },
34029        {
34030          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
34031          "in": "query",
34032          "name": "resourceVersionMatch",
34033          "type": "string",
34034          "uniqueItems": true
34035        },
34036        {
34037          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
34038          "in": "query",
34039          "name": "timeoutSeconds",
34040          "type": "integer",
34041          "uniqueItems": true
34042        },
34043        {
34044          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
34045          "in": "query",
34046          "name": "watch",
34047          "type": "boolean",
34048          "uniqueItems": true
34049        }
34050      ]
34051    },
34052    "/api/v1/watch/namespaces/{namespace}/secrets": {
34053      "get": {
34054        "consumes": [
34055          "*/*"
34056        ],
34057        "description": "watch individual changes to a list of Secret. deprecated: use the 'watch' parameter with a list operation instead.",
34058        "operationId": "watchCoreV1NamespacedSecretList",
34059        "produces": [
34060          "application/json",
34061          "application/yaml",
34062          "application/vnd.kubernetes.protobuf",
34063          "application/json;stream=watch",
34064          "application/vnd.kubernetes.protobuf;stream=watch"
34065        ],
34066        "responses": {
34067          "200": {
34068            "description": "OK",
34069            "schema": {
34070              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
34071            }
34072          },
34073          "401": {
34074            "description": "Unauthorized"
34075          }
34076        },
34077        "schemes": [
34078          "https"
34079        ],
34080        "tags": [
34081          "core_v1"
34082        ],
34083        "x-kubernetes-action": "watchlist",
34084        "x-kubernetes-group-version-kind": {
34085          "group": "",
34086          "kind": "Secret",
34087          "version": "v1"
34088        }
34089      },
34090      "parameters": [
34091        {
34092          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
34093          "in": "query",
34094          "name": "allowWatchBookmarks",
34095          "type": "boolean",
34096          "uniqueItems": true
34097        },
34098        {
34099          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
34100          "in": "query",
34101          "name": "continue",
34102          "type": "string",
34103          "uniqueItems": true
34104        },
34105        {
34106          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
34107          "in": "query",
34108          "name": "fieldSelector",
34109          "type": "string",
34110          "uniqueItems": true
34111        },
34112        {
34113          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
34114          "in": "query",
34115          "name": "labelSelector",
34116          "type": "string",
34117          "uniqueItems": true
34118        },
34119        {
34120          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
34121          "in": "query",
34122          "name": "limit",
34123          "type": "integer",
34124          "uniqueItems": true
34125        },
34126        {
34127          "description": "object name and auth scope, such as for teams and projects",
34128          "in": "path",
34129          "name": "namespace",
34130          "required": true,
34131          "type": "string",
34132          "uniqueItems": true
34133        },
34134        {
34135          "description": "If 'true', then the output is pretty printed.",
34136          "in": "query",
34137          "name": "pretty",
34138          "type": "string",
34139          "uniqueItems": true
34140        },
34141        {
34142          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
34143          "in": "query",
34144          "name": "resourceVersion",
34145          "type": "string",
34146          "uniqueItems": true
34147        },
34148        {
34149          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
34150          "in": "query",
34151          "name": "resourceVersionMatch",
34152          "type": "string",
34153          "uniqueItems": true
34154        },
34155        {
34156          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
34157          "in": "query",
34158          "name": "timeoutSeconds",
34159          "type": "integer",
34160          "uniqueItems": true
34161        },
34162        {
34163          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
34164          "in": "query",
34165          "name": "watch",
34166          "type": "boolean",
34167          "uniqueItems": true
34168        }
34169      ]
34170    },
34171    "/api/v1/watch/namespaces/{namespace}/secrets/{name}": {
34172      "get": {
34173        "consumes": [
34174          "*/*"
34175        ],
34176        "description": "watch changes to an object of kind Secret. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.",
34177        "operationId": "watchCoreV1NamespacedSecret",
34178        "produces": [
34179          "application/json",
34180          "application/yaml",
34181          "application/vnd.kubernetes.protobuf",
34182          "application/json;stream=watch",
34183          "application/vnd.kubernetes.protobuf;stream=watch"
34184        ],
34185        "responses": {
34186          "200": {
34187            "description": "OK",
34188            "schema": {
34189              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
34190            }
34191          },
34192          "401": {
34193            "description": "Unauthorized"
34194          }
34195        },
34196        "schemes": [
34197          "https"
34198        ],
34199        "tags": [
34200          "core_v1"
34201        ],
34202        "x-kubernetes-action": "watch",
34203        "x-kubernetes-group-version-kind": {
34204          "group": "",
34205          "kind": "Secret",
34206          "version": "v1"
34207        }
34208      },
34209      "parameters": [
34210        {
34211          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
34212          "in": "query",
34213          "name": "allowWatchBookmarks",
34214          "type": "boolean",
34215          "uniqueItems": true
34216        },
34217        {
34218          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
34219          "in": "query",
34220          "name": "continue",
34221          "type": "string",
34222          "uniqueItems": true
34223        },
34224        {
34225          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
34226          "in": "query",
34227          "name": "fieldSelector",
34228          "type": "string",
34229          "uniqueItems": true
34230        },
34231        {
34232          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
34233          "in": "query",
34234          "name": "labelSelector",
34235          "type": "string",
34236          "uniqueItems": true
34237        },
34238        {
34239          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
34240          "in": "query",
34241          "name": "limit",
34242          "type": "integer",
34243          "uniqueItems": true
34244        },
34245        {
34246          "description": "name of the Secret",
34247          "in": "path",
34248          "name": "name",
34249          "required": true,
34250          "type": "string",
34251          "uniqueItems": true
34252        },
34253        {
34254          "description": "object name and auth scope, such as for teams and projects",
34255          "in": "path",
34256          "name": "namespace",
34257          "required": true,
34258          "type": "string",
34259          "uniqueItems": true
34260        },
34261        {
34262          "description": "If 'true', then the output is pretty printed.",
34263          "in": "query",
34264          "name": "pretty",
34265          "type": "string",
34266          "uniqueItems": true
34267        },
34268        {
34269          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
34270          "in": "query",
34271          "name": "resourceVersion",
34272          "type": "string",
34273          "uniqueItems": true
34274        },
34275        {
34276          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
34277          "in": "query",
34278          "name": "resourceVersionMatch",
34279          "type": "string",
34280          "uniqueItems": true
34281        },
34282        {
34283          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
34284          "in": "query",
34285          "name": "timeoutSeconds",
34286          "type": "integer",
34287          "uniqueItems": true
34288        },
34289        {
34290          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
34291          "in": "query",
34292          "name": "watch",
34293          "type": "boolean",
34294          "uniqueItems": true
34295        }
34296      ]
34297    },
34298    "/api/v1/watch/namespaces/{namespace}/serviceaccounts": {
34299      "get": {
34300        "consumes": [
34301          "*/*"
34302        ],
34303        "description": "watch individual changes to a list of ServiceAccount. deprecated: use the 'watch' parameter with a list operation instead.",
34304        "operationId": "watchCoreV1NamespacedServiceAccountList",
34305        "produces": [
34306          "application/json",
34307          "application/yaml",
34308          "application/vnd.kubernetes.protobuf",
34309          "application/json;stream=watch",
34310          "application/vnd.kubernetes.protobuf;stream=watch"
34311        ],
34312        "responses": {
34313          "200": {
34314            "description": "OK",
34315            "schema": {
34316              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
34317            }
34318          },
34319          "401": {
34320            "description": "Unauthorized"
34321          }
34322        },
34323        "schemes": [
34324          "https"
34325        ],
34326        "tags": [
34327          "core_v1"
34328        ],
34329        "x-kubernetes-action": "watchlist",
34330        "x-kubernetes-group-version-kind": {
34331          "group": "",
34332          "kind": "ServiceAccount",
34333          "version": "v1"
34334        }
34335      },
34336      "parameters": [
34337        {
34338          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
34339          "in": "query",
34340          "name": "allowWatchBookmarks",
34341          "type": "boolean",
34342          "uniqueItems": true
34343        },
34344        {
34345          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
34346          "in": "query",
34347          "name": "continue",
34348          "type": "string",
34349          "uniqueItems": true
34350        },
34351        {
34352          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
34353          "in": "query",
34354          "name": "fieldSelector",
34355          "type": "string",
34356          "uniqueItems": true
34357        },
34358        {
34359          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
34360          "in": "query",
34361          "name": "labelSelector",
34362          "type": "string",
34363          "uniqueItems": true
34364        },
34365        {
34366          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
34367          "in": "query",
34368          "name": "limit",
34369          "type": "integer",
34370          "uniqueItems": true
34371        },
34372        {
34373          "description": "object name and auth scope, such as for teams and projects",
34374          "in": "path",
34375          "name": "namespace",
34376          "required": true,
34377          "type": "string",
34378          "uniqueItems": true
34379        },
34380        {
34381          "description": "If 'true', then the output is pretty printed.",
34382          "in": "query",
34383          "name": "pretty",
34384          "type": "string",
34385          "uniqueItems": true
34386        },
34387        {
34388          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
34389          "in": "query",
34390          "name": "resourceVersion",
34391          "type": "string",
34392          "uniqueItems": true
34393        },
34394        {
34395          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
34396          "in": "query",
34397          "name": "resourceVersionMatch",
34398          "type": "string",
34399          "uniqueItems": true
34400        },
34401        {
34402          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
34403          "in": "query",
34404          "name": "timeoutSeconds",
34405          "type": "integer",
34406          "uniqueItems": true
34407        },
34408        {
34409          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
34410          "in": "query",
34411          "name": "watch",
34412          "type": "boolean",
34413          "uniqueItems": true
34414        }
34415      ]
34416    },
34417    "/api/v1/watch/namespaces/{namespace}/serviceaccounts/{name}": {
34418      "get": {
34419        "consumes": [
34420          "*/*"
34421        ],
34422        "description": "watch changes to an object of kind ServiceAccount. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.",
34423        "operationId": "watchCoreV1NamespacedServiceAccount",
34424        "produces": [
34425          "application/json",
34426          "application/yaml",
34427          "application/vnd.kubernetes.protobuf",
34428          "application/json;stream=watch",
34429          "application/vnd.kubernetes.protobuf;stream=watch"
34430        ],
34431        "responses": {
34432          "200": {
34433            "description": "OK",
34434            "schema": {
34435              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
34436            }
34437          },
34438          "401": {
34439            "description": "Unauthorized"
34440          }
34441        },
34442        "schemes": [
34443          "https"
34444        ],
34445        "tags": [
34446          "core_v1"
34447        ],
34448        "x-kubernetes-action": "watch",
34449        "x-kubernetes-group-version-kind": {
34450          "group": "",
34451          "kind": "ServiceAccount",
34452          "version": "v1"
34453        }
34454      },
34455      "parameters": [
34456        {
34457          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
34458          "in": "query",
34459          "name": "allowWatchBookmarks",
34460          "type": "boolean",
34461          "uniqueItems": true
34462        },
34463        {
34464          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
34465          "in": "query",
34466          "name": "continue",
34467          "type": "string",
34468          "uniqueItems": true
34469        },
34470        {
34471          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
34472          "in": "query",
34473          "name": "fieldSelector",
34474          "type": "string",
34475          "uniqueItems": true
34476        },
34477        {
34478          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
34479          "in": "query",
34480          "name": "labelSelector",
34481          "type": "string",
34482          "uniqueItems": true
34483        },
34484        {
34485          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
34486          "in": "query",
34487          "name": "limit",
34488          "type": "integer",
34489          "uniqueItems": true
34490        },
34491        {
34492          "description": "name of the ServiceAccount",
34493          "in": "path",
34494          "name": "name",
34495          "required": true,
34496          "type": "string",
34497          "uniqueItems": true
34498        },
34499        {
34500          "description": "object name and auth scope, such as for teams and projects",
34501          "in": "path",
34502          "name": "namespace",
34503          "required": true,
34504          "type": "string",
34505          "uniqueItems": true
34506        },
34507        {
34508          "description": "If 'true', then the output is pretty printed.",
34509          "in": "query",
34510          "name": "pretty",
34511          "type": "string",
34512          "uniqueItems": true
34513        },
34514        {
34515          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
34516          "in": "query",
34517          "name": "resourceVersion",
34518          "type": "string",
34519          "uniqueItems": true
34520        },
34521        {
34522          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
34523          "in": "query",
34524          "name": "resourceVersionMatch",
34525          "type": "string",
34526          "uniqueItems": true
34527        },
34528        {
34529          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
34530          "in": "query",
34531          "name": "timeoutSeconds",
34532          "type": "integer",
34533          "uniqueItems": true
34534        },
34535        {
34536          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
34537          "in": "query",
34538          "name": "watch",
34539          "type": "boolean",
34540          "uniqueItems": true
34541        }
34542      ]
34543    },
34544    "/api/v1/watch/namespaces/{namespace}/services": {
34545      "get": {
34546        "consumes": [
34547          "*/*"
34548        ],
34549        "description": "watch individual changes to a list of Service. deprecated: use the 'watch' parameter with a list operation instead.",
34550        "operationId": "watchCoreV1NamespacedServiceList",
34551        "produces": [
34552          "application/json",
34553          "application/yaml",
34554          "application/vnd.kubernetes.protobuf",
34555          "application/json;stream=watch",
34556          "application/vnd.kubernetes.protobuf;stream=watch"
34557        ],
34558        "responses": {
34559          "200": {
34560            "description": "OK",
34561            "schema": {
34562              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
34563            }
34564          },
34565          "401": {
34566            "description": "Unauthorized"
34567          }
34568        },
34569        "schemes": [
34570          "https"
34571        ],
34572        "tags": [
34573          "core_v1"
34574        ],
34575        "x-kubernetes-action": "watchlist",
34576        "x-kubernetes-group-version-kind": {
34577          "group": "",
34578          "kind": "Service",
34579          "version": "v1"
34580        }
34581      },
34582      "parameters": [
34583        {
34584          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
34585          "in": "query",
34586          "name": "allowWatchBookmarks",
34587          "type": "boolean",
34588          "uniqueItems": true
34589        },
34590        {
34591          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
34592          "in": "query",
34593          "name": "continue",
34594          "type": "string",
34595          "uniqueItems": true
34596        },
34597        {
34598          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
34599          "in": "query",
34600          "name": "fieldSelector",
34601          "type": "string",
34602          "uniqueItems": true
34603        },
34604        {
34605          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
34606          "in": "query",
34607          "name": "labelSelector",
34608          "type": "string",
34609          "uniqueItems": true
34610        },
34611        {
34612          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
34613          "in": "query",
34614          "name": "limit",
34615          "type": "integer",
34616          "uniqueItems": true
34617        },
34618        {
34619          "description": "object name and auth scope, such as for teams and projects",
34620          "in": "path",
34621          "name": "namespace",
34622          "required": true,
34623          "type": "string",
34624          "uniqueItems": true
34625        },
34626        {
34627          "description": "If 'true', then the output is pretty printed.",
34628          "in": "query",
34629          "name": "pretty",
34630          "type": "string",
34631          "uniqueItems": true
34632        },
34633        {
34634          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
34635          "in": "query",
34636          "name": "resourceVersion",
34637          "type": "string",
34638          "uniqueItems": true
34639        },
34640        {
34641          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
34642          "in": "query",
34643          "name": "resourceVersionMatch",
34644          "type": "string",
34645          "uniqueItems": true
34646        },
34647        {
34648          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
34649          "in": "query",
34650          "name": "timeoutSeconds",
34651          "type": "integer",
34652          "uniqueItems": true
34653        },
34654        {
34655          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
34656          "in": "query",
34657          "name": "watch",
34658          "type": "boolean",
34659          "uniqueItems": true
34660        }
34661      ]
34662    },
34663    "/api/v1/watch/namespaces/{namespace}/services/{name}": {
34664      "get": {
34665        "consumes": [
34666          "*/*"
34667        ],
34668        "description": "watch changes to an object of kind Service. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.",
34669        "operationId": "watchCoreV1NamespacedService",
34670        "produces": [
34671          "application/json",
34672          "application/yaml",
34673          "application/vnd.kubernetes.protobuf",
34674          "application/json;stream=watch",
34675          "application/vnd.kubernetes.protobuf;stream=watch"
34676        ],
34677        "responses": {
34678          "200": {
34679            "description": "OK",
34680            "schema": {
34681              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
34682            }
34683          },
34684          "401": {
34685            "description": "Unauthorized"
34686          }
34687        },
34688        "schemes": [
34689          "https"
34690        ],
34691        "tags": [
34692          "core_v1"
34693        ],
34694        "x-kubernetes-action": "watch",
34695        "x-kubernetes-group-version-kind": {
34696          "group": "",
34697          "kind": "Service",
34698          "version": "v1"
34699        }
34700      },
34701      "parameters": [
34702        {
34703          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
34704          "in": "query",
34705          "name": "allowWatchBookmarks",
34706          "type": "boolean",
34707          "uniqueItems": true
34708        },
34709        {
34710          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
34711          "in": "query",
34712          "name": "continue",
34713          "type": "string",
34714          "uniqueItems": true
34715        },
34716        {
34717          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
34718          "in": "query",
34719          "name": "fieldSelector",
34720          "type": "string",
34721          "uniqueItems": true
34722        },
34723        {
34724          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
34725          "in": "query",
34726          "name": "labelSelector",
34727          "type": "string",
34728          "uniqueItems": true
34729        },
34730        {
34731          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
34732          "in": "query",
34733          "name": "limit",
34734          "type": "integer",
34735          "uniqueItems": true
34736        },
34737        {
34738          "description": "name of the Service",
34739          "in": "path",
34740          "name": "name",
34741          "required": true,
34742          "type": "string",
34743          "uniqueItems": true
34744        },
34745        {
34746          "description": "object name and auth scope, such as for teams and projects",
34747          "in": "path",
34748          "name": "namespace",
34749          "required": true,
34750          "type": "string",
34751          "uniqueItems": true
34752        },
34753        {
34754          "description": "If 'true', then the output is pretty printed.",
34755          "in": "query",
34756          "name": "pretty",
34757          "type": "string",
34758          "uniqueItems": true
34759        },
34760        {
34761          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
34762          "in": "query",
34763          "name": "resourceVersion",
34764          "type": "string",
34765          "uniqueItems": true
34766        },
34767        {
34768          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
34769          "in": "query",
34770          "name": "resourceVersionMatch",
34771          "type": "string",
34772          "uniqueItems": true
34773        },
34774        {
34775          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
34776          "in": "query",
34777          "name": "timeoutSeconds",
34778          "type": "integer",
34779          "uniqueItems": true
34780        },
34781        {
34782          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
34783          "in": "query",
34784          "name": "watch",
34785          "type": "boolean",
34786          "uniqueItems": true
34787        }
34788      ]
34789    },
34790    "/api/v1/watch/namespaces/{name}": {
34791      "get": {
34792        "consumes": [
34793          "*/*"
34794        ],
34795        "description": "watch changes to an object of kind Namespace. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.",
34796        "operationId": "watchCoreV1Namespace",
34797        "produces": [
34798          "application/json",
34799          "application/yaml",
34800          "application/vnd.kubernetes.protobuf",
34801          "application/json;stream=watch",
34802          "application/vnd.kubernetes.protobuf;stream=watch"
34803        ],
34804        "responses": {
34805          "200": {
34806            "description": "OK",
34807            "schema": {
34808              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
34809            }
34810          },
34811          "401": {
34812            "description": "Unauthorized"
34813          }
34814        },
34815        "schemes": [
34816          "https"
34817        ],
34818        "tags": [
34819          "core_v1"
34820        ],
34821        "x-kubernetes-action": "watch",
34822        "x-kubernetes-group-version-kind": {
34823          "group": "",
34824          "kind": "Namespace",
34825          "version": "v1"
34826        }
34827      },
34828      "parameters": [
34829        {
34830          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
34831          "in": "query",
34832          "name": "allowWatchBookmarks",
34833          "type": "boolean",
34834          "uniqueItems": true
34835        },
34836        {
34837          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
34838          "in": "query",
34839          "name": "continue",
34840          "type": "string",
34841          "uniqueItems": true
34842        },
34843        {
34844          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
34845          "in": "query",
34846          "name": "fieldSelector",
34847          "type": "string",
34848          "uniqueItems": true
34849        },
34850        {
34851          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
34852          "in": "query",
34853          "name": "labelSelector",
34854          "type": "string",
34855          "uniqueItems": true
34856        },
34857        {
34858          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
34859          "in": "query",
34860          "name": "limit",
34861          "type": "integer",
34862          "uniqueItems": true
34863        },
34864        {
34865          "description": "name of the Namespace",
34866          "in": "path",
34867          "name": "name",
34868          "required": true,
34869          "type": "string",
34870          "uniqueItems": true
34871        },
34872        {
34873          "description": "If 'true', then the output is pretty printed.",
34874          "in": "query",
34875          "name": "pretty",
34876          "type": "string",
34877          "uniqueItems": true
34878        },
34879        {
34880          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
34881          "in": "query",
34882          "name": "resourceVersion",
34883          "type": "string",
34884          "uniqueItems": true
34885        },
34886        {
34887          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
34888          "in": "query",
34889          "name": "resourceVersionMatch",
34890          "type": "string",
34891          "uniqueItems": true
34892        },
34893        {
34894          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
34895          "in": "query",
34896          "name": "timeoutSeconds",
34897          "type": "integer",
34898          "uniqueItems": true
34899        },
34900        {
34901          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
34902          "in": "query",
34903          "name": "watch",
34904          "type": "boolean",
34905          "uniqueItems": true
34906        }
34907      ]
34908    },
34909    "/api/v1/watch/nodes": {
34910      "get": {
34911        "consumes": [
34912          "*/*"
34913        ],
34914        "description": "watch individual changes to a list of Node. deprecated: use the 'watch' parameter with a list operation instead.",
34915        "operationId": "watchCoreV1NodeList",
34916        "produces": [
34917          "application/json",
34918          "application/yaml",
34919          "application/vnd.kubernetes.protobuf",
34920          "application/json;stream=watch",
34921          "application/vnd.kubernetes.protobuf;stream=watch"
34922        ],
34923        "responses": {
34924          "200": {
34925            "description": "OK",
34926            "schema": {
34927              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
34928            }
34929          },
34930          "401": {
34931            "description": "Unauthorized"
34932          }
34933        },
34934        "schemes": [
34935          "https"
34936        ],
34937        "tags": [
34938          "core_v1"
34939        ],
34940        "x-kubernetes-action": "watchlist",
34941        "x-kubernetes-group-version-kind": {
34942          "group": "",
34943          "kind": "Node",
34944          "version": "v1"
34945        }
34946      },
34947      "parameters": [
34948        {
34949          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
34950          "in": "query",
34951          "name": "allowWatchBookmarks",
34952          "type": "boolean",
34953          "uniqueItems": true
34954        },
34955        {
34956          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
34957          "in": "query",
34958          "name": "continue",
34959          "type": "string",
34960          "uniqueItems": true
34961        },
34962        {
34963          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
34964          "in": "query",
34965          "name": "fieldSelector",
34966          "type": "string",
34967          "uniqueItems": true
34968        },
34969        {
34970          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
34971          "in": "query",
34972          "name": "labelSelector",
34973          "type": "string",
34974          "uniqueItems": true
34975        },
34976        {
34977          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
34978          "in": "query",
34979          "name": "limit",
34980          "type": "integer",
34981          "uniqueItems": true
34982        },
34983        {
34984          "description": "If 'true', then the output is pretty printed.",
34985          "in": "query",
34986          "name": "pretty",
34987          "type": "string",
34988          "uniqueItems": true
34989        },
34990        {
34991          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
34992          "in": "query",
34993          "name": "resourceVersion",
34994          "type": "string",
34995          "uniqueItems": true
34996        },
34997        {
34998          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
34999          "in": "query",
35000          "name": "resourceVersionMatch",
35001          "type": "string",
35002          "uniqueItems": true
35003        },
35004        {
35005          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
35006          "in": "query",
35007          "name": "timeoutSeconds",
35008          "type": "integer",
35009          "uniqueItems": true
35010        },
35011        {
35012          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
35013          "in": "query",
35014          "name": "watch",
35015          "type": "boolean",
35016          "uniqueItems": true
35017        }
35018      ]
35019    },
35020    "/api/v1/watch/nodes/{name}": {
35021      "get": {
35022        "consumes": [
35023          "*/*"
35024        ],
35025        "description": "watch changes to an object of kind Node. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.",
35026        "operationId": "watchCoreV1Node",
35027        "produces": [
35028          "application/json",
35029          "application/yaml",
35030          "application/vnd.kubernetes.protobuf",
35031          "application/json;stream=watch",
35032          "application/vnd.kubernetes.protobuf;stream=watch"
35033        ],
35034        "responses": {
35035          "200": {
35036            "description": "OK",
35037            "schema": {
35038              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
35039            }
35040          },
35041          "401": {
35042            "description": "Unauthorized"
35043          }
35044        },
35045        "schemes": [
35046          "https"
35047        ],
35048        "tags": [
35049          "core_v1"
35050        ],
35051        "x-kubernetes-action": "watch",
35052        "x-kubernetes-group-version-kind": {
35053          "group": "",
35054          "kind": "Node",
35055          "version": "v1"
35056        }
35057      },
35058      "parameters": [
35059        {
35060          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
35061          "in": "query",
35062          "name": "allowWatchBookmarks",
35063          "type": "boolean",
35064          "uniqueItems": true
35065        },
35066        {
35067          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
35068          "in": "query",
35069          "name": "continue",
35070          "type": "string",
35071          "uniqueItems": true
35072        },
35073        {
35074          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
35075          "in": "query",
35076          "name": "fieldSelector",
35077          "type": "string",
35078          "uniqueItems": true
35079        },
35080        {
35081          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
35082          "in": "query",
35083          "name": "labelSelector",
35084          "type": "string",
35085          "uniqueItems": true
35086        },
35087        {
35088          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
35089          "in": "query",
35090          "name": "limit",
35091          "type": "integer",
35092          "uniqueItems": true
35093        },
35094        {
35095          "description": "name of the Node",
35096          "in": "path",
35097          "name": "name",
35098          "required": true,
35099          "type": "string",
35100          "uniqueItems": true
35101        },
35102        {
35103          "description": "If 'true', then the output is pretty printed.",
35104          "in": "query",
35105          "name": "pretty",
35106          "type": "string",
35107          "uniqueItems": true
35108        },
35109        {
35110          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
35111          "in": "query",
35112          "name": "resourceVersion",
35113          "type": "string",
35114          "uniqueItems": true
35115        },
35116        {
35117          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
35118          "in": "query",
35119          "name": "resourceVersionMatch",
35120          "type": "string",
35121          "uniqueItems": true
35122        },
35123        {
35124          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
35125          "in": "query",
35126          "name": "timeoutSeconds",
35127          "type": "integer",
35128          "uniqueItems": true
35129        },
35130        {
35131          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
35132          "in": "query",
35133          "name": "watch",
35134          "type": "boolean",
35135          "uniqueItems": true
35136        }
35137      ]
35138    },
35139    "/api/v1/watch/persistentvolumeclaims": {
35140      "get": {
35141        "consumes": [
35142          "*/*"
35143        ],
35144        "description": "watch individual changes to a list of PersistentVolumeClaim. deprecated: use the 'watch' parameter with a list operation instead.",
35145        "operationId": "watchCoreV1PersistentVolumeClaimListForAllNamespaces",
35146        "produces": [
35147          "application/json",
35148          "application/yaml",
35149          "application/vnd.kubernetes.protobuf",
35150          "application/json;stream=watch",
35151          "application/vnd.kubernetes.protobuf;stream=watch"
35152        ],
35153        "responses": {
35154          "200": {
35155            "description": "OK",
35156            "schema": {
35157              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
35158            }
35159          },
35160          "401": {
35161            "description": "Unauthorized"
35162          }
35163        },
35164        "schemes": [
35165          "https"
35166        ],
35167        "tags": [
35168          "core_v1"
35169        ],
35170        "x-kubernetes-action": "watchlist",
35171        "x-kubernetes-group-version-kind": {
35172          "group": "",
35173          "kind": "PersistentVolumeClaim",
35174          "version": "v1"
35175        }
35176      },
35177      "parameters": [
35178        {
35179          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
35180          "in": "query",
35181          "name": "allowWatchBookmarks",
35182          "type": "boolean",
35183          "uniqueItems": true
35184        },
35185        {
35186          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
35187          "in": "query",
35188          "name": "continue",
35189          "type": "string",
35190          "uniqueItems": true
35191        },
35192        {
35193          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
35194          "in": "query",
35195          "name": "fieldSelector",
35196          "type": "string",
35197          "uniqueItems": true
35198        },
35199        {
35200          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
35201          "in": "query",
35202          "name": "labelSelector",
35203          "type": "string",
35204          "uniqueItems": true
35205        },
35206        {
35207          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
35208          "in": "query",
35209          "name": "limit",
35210          "type": "integer",
35211          "uniqueItems": true
35212        },
35213        {
35214          "description": "If 'true', then the output is pretty printed.",
35215          "in": "query",
35216          "name": "pretty",
35217          "type": "string",
35218          "uniqueItems": true
35219        },
35220        {
35221          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
35222          "in": "query",
35223          "name": "resourceVersion",
35224          "type": "string",
35225          "uniqueItems": true
35226        },
35227        {
35228          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
35229          "in": "query",
35230          "name": "resourceVersionMatch",
35231          "type": "string",
35232          "uniqueItems": true
35233        },
35234        {
35235          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
35236          "in": "query",
35237          "name": "timeoutSeconds",
35238          "type": "integer",
35239          "uniqueItems": true
35240        },
35241        {
35242          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
35243          "in": "query",
35244          "name": "watch",
35245          "type": "boolean",
35246          "uniqueItems": true
35247        }
35248      ]
35249    },
35250    "/api/v1/watch/persistentvolumes": {
35251      "get": {
35252        "consumes": [
35253          "*/*"
35254        ],
35255        "description": "watch individual changes to a list of PersistentVolume. deprecated: use the 'watch' parameter with a list operation instead.",
35256        "operationId": "watchCoreV1PersistentVolumeList",
35257        "produces": [
35258          "application/json",
35259          "application/yaml",
35260          "application/vnd.kubernetes.protobuf",
35261          "application/json;stream=watch",
35262          "application/vnd.kubernetes.protobuf;stream=watch"
35263        ],
35264        "responses": {
35265          "200": {
35266            "description": "OK",
35267            "schema": {
35268              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
35269            }
35270          },
35271          "401": {
35272            "description": "Unauthorized"
35273          }
35274        },
35275        "schemes": [
35276          "https"
35277        ],
35278        "tags": [
35279          "core_v1"
35280        ],
35281        "x-kubernetes-action": "watchlist",
35282        "x-kubernetes-group-version-kind": {
35283          "group": "",
35284          "kind": "PersistentVolume",
35285          "version": "v1"
35286        }
35287      },
35288      "parameters": [
35289        {
35290          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
35291          "in": "query",
35292          "name": "allowWatchBookmarks",
35293          "type": "boolean",
35294          "uniqueItems": true
35295        },
35296        {
35297          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
35298          "in": "query",
35299          "name": "continue",
35300          "type": "string",
35301          "uniqueItems": true
35302        },
35303        {
35304          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
35305          "in": "query",
35306          "name": "fieldSelector",
35307          "type": "string",
35308          "uniqueItems": true
35309        },
35310        {
35311          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
35312          "in": "query",
35313          "name": "labelSelector",
35314          "type": "string",
35315          "uniqueItems": true
35316        },
35317        {
35318          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
35319          "in": "query",
35320          "name": "limit",
35321          "type": "integer",
35322          "uniqueItems": true
35323        },
35324        {
35325          "description": "If 'true', then the output is pretty printed.",
35326          "in": "query",
35327          "name": "pretty",
35328          "type": "string",
35329          "uniqueItems": true
35330        },
35331        {
35332          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
35333          "in": "query",
35334          "name": "resourceVersion",
35335          "type": "string",
35336          "uniqueItems": true
35337        },
35338        {
35339          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
35340          "in": "query",
35341          "name": "resourceVersionMatch",
35342          "type": "string",
35343          "uniqueItems": true
35344        },
35345        {
35346          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
35347          "in": "query",
35348          "name": "timeoutSeconds",
35349          "type": "integer",
35350          "uniqueItems": true
35351        },
35352        {
35353          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
35354          "in": "query",
35355          "name": "watch",
35356          "type": "boolean",
35357          "uniqueItems": true
35358        }
35359      ]
35360    },
35361    "/api/v1/watch/persistentvolumes/{name}": {
35362      "get": {
35363        "consumes": [
35364          "*/*"
35365        ],
35366        "description": "watch changes to an object of kind PersistentVolume. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.",
35367        "operationId": "watchCoreV1PersistentVolume",
35368        "produces": [
35369          "application/json",
35370          "application/yaml",
35371          "application/vnd.kubernetes.protobuf",
35372          "application/json;stream=watch",
35373          "application/vnd.kubernetes.protobuf;stream=watch"
35374        ],
35375        "responses": {
35376          "200": {
35377            "description": "OK",
35378            "schema": {
35379              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
35380            }
35381          },
35382          "401": {
35383            "description": "Unauthorized"
35384          }
35385        },
35386        "schemes": [
35387          "https"
35388        ],
35389        "tags": [
35390          "core_v1"
35391        ],
35392        "x-kubernetes-action": "watch",
35393        "x-kubernetes-group-version-kind": {
35394          "group": "",
35395          "kind": "PersistentVolume",
35396          "version": "v1"
35397        }
35398      },
35399      "parameters": [
35400        {
35401          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
35402          "in": "query",
35403          "name": "allowWatchBookmarks",
35404          "type": "boolean",
35405          "uniqueItems": true
35406        },
35407        {
35408          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
35409          "in": "query",
35410          "name": "continue",
35411          "type": "string",
35412          "uniqueItems": true
35413        },
35414        {
35415          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
35416          "in": "query",
35417          "name": "fieldSelector",
35418          "type": "string",
35419          "uniqueItems": true
35420        },
35421        {
35422          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
35423          "in": "query",
35424          "name": "labelSelector",
35425          "type": "string",
35426          "uniqueItems": true
35427        },
35428        {
35429          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
35430          "in": "query",
35431          "name": "limit",
35432          "type": "integer",
35433          "uniqueItems": true
35434        },
35435        {
35436          "description": "name of the PersistentVolume",
35437          "in": "path",
35438          "name": "name",
35439          "required": true,
35440          "type": "string",
35441          "uniqueItems": true
35442        },
35443        {
35444          "description": "If 'true', then the output is pretty printed.",
35445          "in": "query",
35446          "name": "pretty",
35447          "type": "string",
35448          "uniqueItems": true
35449        },
35450        {
35451          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
35452          "in": "query",
35453          "name": "resourceVersion",
35454          "type": "string",
35455          "uniqueItems": true
35456        },
35457        {
35458          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
35459          "in": "query",
35460          "name": "resourceVersionMatch",
35461          "type": "string",
35462          "uniqueItems": true
35463        },
35464        {
35465          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
35466          "in": "query",
35467          "name": "timeoutSeconds",
35468          "type": "integer",
35469          "uniqueItems": true
35470        },
35471        {
35472          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
35473          "in": "query",
35474          "name": "watch",
35475          "type": "boolean",
35476          "uniqueItems": true
35477        }
35478      ]
35479    },
35480    "/api/v1/watch/pods": {
35481      "get": {
35482        "consumes": [
35483          "*/*"
35484        ],
35485        "description": "watch individual changes to a list of Pod. deprecated: use the 'watch' parameter with a list operation instead.",
35486        "operationId": "watchCoreV1PodListForAllNamespaces",
35487        "produces": [
35488          "application/json",
35489          "application/yaml",
35490          "application/vnd.kubernetes.protobuf",
35491          "application/json;stream=watch",
35492          "application/vnd.kubernetes.protobuf;stream=watch"
35493        ],
35494        "responses": {
35495          "200": {
35496            "description": "OK",
35497            "schema": {
35498              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
35499            }
35500          },
35501          "401": {
35502            "description": "Unauthorized"
35503          }
35504        },
35505        "schemes": [
35506          "https"
35507        ],
35508        "tags": [
35509          "core_v1"
35510        ],
35511        "x-kubernetes-action": "watchlist",
35512        "x-kubernetes-group-version-kind": {
35513          "group": "",
35514          "kind": "Pod",
35515          "version": "v1"
35516        }
35517      },
35518      "parameters": [
35519        {
35520          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
35521          "in": "query",
35522          "name": "allowWatchBookmarks",
35523          "type": "boolean",
35524          "uniqueItems": true
35525        },
35526        {
35527          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
35528          "in": "query",
35529          "name": "continue",
35530          "type": "string",
35531          "uniqueItems": true
35532        },
35533        {
35534          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
35535          "in": "query",
35536          "name": "fieldSelector",
35537          "type": "string",
35538          "uniqueItems": true
35539        },
35540        {
35541          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
35542          "in": "query",
35543          "name": "labelSelector",
35544          "type": "string",
35545          "uniqueItems": true
35546        },
35547        {
35548          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
35549          "in": "query",
35550          "name": "limit",
35551          "type": "integer",
35552          "uniqueItems": true
35553        },
35554        {
35555          "description": "If 'true', then the output is pretty printed.",
35556          "in": "query",
35557          "name": "pretty",
35558          "type": "string",
35559          "uniqueItems": true
35560        },
35561        {
35562          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
35563          "in": "query",
35564          "name": "resourceVersion",
35565          "type": "string",
35566          "uniqueItems": true
35567        },
35568        {
35569          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
35570          "in": "query",
35571          "name": "resourceVersionMatch",
35572          "type": "string",
35573          "uniqueItems": true
35574        },
35575        {
35576          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
35577          "in": "query",
35578          "name": "timeoutSeconds",
35579          "type": "integer",
35580          "uniqueItems": true
35581        },
35582        {
35583          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
35584          "in": "query",
35585          "name": "watch",
35586          "type": "boolean",
35587          "uniqueItems": true
35588        }
35589      ]
35590    },
35591    "/api/v1/watch/podtemplates": {
35592      "get": {
35593        "consumes": [
35594          "*/*"
35595        ],
35596        "description": "watch individual changes to a list of PodTemplate. deprecated: use the 'watch' parameter with a list operation instead.",
35597        "operationId": "watchCoreV1PodTemplateListForAllNamespaces",
35598        "produces": [
35599          "application/json",
35600          "application/yaml",
35601          "application/vnd.kubernetes.protobuf",
35602          "application/json;stream=watch",
35603          "application/vnd.kubernetes.protobuf;stream=watch"
35604        ],
35605        "responses": {
35606          "200": {
35607            "description": "OK",
35608            "schema": {
35609              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
35610            }
35611          },
35612          "401": {
35613            "description": "Unauthorized"
35614          }
35615        },
35616        "schemes": [
35617          "https"
35618        ],
35619        "tags": [
35620          "core_v1"
35621        ],
35622        "x-kubernetes-action": "watchlist",
35623        "x-kubernetes-group-version-kind": {
35624          "group": "",
35625          "kind": "PodTemplate",
35626          "version": "v1"
35627        }
35628      },
35629      "parameters": [
35630        {
35631          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
35632          "in": "query",
35633          "name": "allowWatchBookmarks",
35634          "type": "boolean",
35635          "uniqueItems": true
35636        },
35637        {
35638          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
35639          "in": "query",
35640          "name": "continue",
35641          "type": "string",
35642          "uniqueItems": true
35643        },
35644        {
35645          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
35646          "in": "query",
35647          "name": "fieldSelector",
35648          "type": "string",
35649          "uniqueItems": true
35650        },
35651        {
35652          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
35653          "in": "query",
35654          "name": "labelSelector",
35655          "type": "string",
35656          "uniqueItems": true
35657        },
35658        {
35659          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
35660          "in": "query",
35661          "name": "limit",
35662          "type": "integer",
35663          "uniqueItems": true
35664        },
35665        {
35666          "description": "If 'true', then the output is pretty printed.",
35667          "in": "query",
35668          "name": "pretty",
35669          "type": "string",
35670          "uniqueItems": true
35671        },
35672        {
35673          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
35674          "in": "query",
35675          "name": "resourceVersion",
35676          "type": "string",
35677          "uniqueItems": true
35678        },
35679        {
35680          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
35681          "in": "query",
35682          "name": "resourceVersionMatch",
35683          "type": "string",
35684          "uniqueItems": true
35685        },
35686        {
35687          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
35688          "in": "query",
35689          "name": "timeoutSeconds",
35690          "type": "integer",
35691          "uniqueItems": true
35692        },
35693        {
35694          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
35695          "in": "query",
35696          "name": "watch",
35697          "type": "boolean",
35698          "uniqueItems": true
35699        }
35700      ]
35701    },
35702    "/api/v1/watch/replicationcontrollers": {
35703      "get": {
35704        "consumes": [
35705          "*/*"
35706        ],
35707        "description": "watch individual changes to a list of ReplicationController. deprecated: use the 'watch' parameter with a list operation instead.",
35708        "operationId": "watchCoreV1ReplicationControllerListForAllNamespaces",
35709        "produces": [
35710          "application/json",
35711          "application/yaml",
35712          "application/vnd.kubernetes.protobuf",
35713          "application/json;stream=watch",
35714          "application/vnd.kubernetes.protobuf;stream=watch"
35715        ],
35716        "responses": {
35717          "200": {
35718            "description": "OK",
35719            "schema": {
35720              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
35721            }
35722          },
35723          "401": {
35724            "description": "Unauthorized"
35725          }
35726        },
35727        "schemes": [
35728          "https"
35729        ],
35730        "tags": [
35731          "core_v1"
35732        ],
35733        "x-kubernetes-action": "watchlist",
35734        "x-kubernetes-group-version-kind": {
35735          "group": "",
35736          "kind": "ReplicationController",
35737          "version": "v1"
35738        }
35739      },
35740      "parameters": [
35741        {
35742          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
35743          "in": "query",
35744          "name": "allowWatchBookmarks",
35745          "type": "boolean",
35746          "uniqueItems": true
35747        },
35748        {
35749          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
35750          "in": "query",
35751          "name": "continue",
35752          "type": "string",
35753          "uniqueItems": true
35754        },
35755        {
35756          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
35757          "in": "query",
35758          "name": "fieldSelector",
35759          "type": "string",
35760          "uniqueItems": true
35761        },
35762        {
35763          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
35764          "in": "query",
35765          "name": "labelSelector",
35766          "type": "string",
35767          "uniqueItems": true
35768        },
35769        {
35770          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
35771          "in": "query",
35772          "name": "limit",
35773          "type": "integer",
35774          "uniqueItems": true
35775        },
35776        {
35777          "description": "If 'true', then the output is pretty printed.",
35778          "in": "query",
35779          "name": "pretty",
35780          "type": "string",
35781          "uniqueItems": true
35782        },
35783        {
35784          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
35785          "in": "query",
35786          "name": "resourceVersion",
35787          "type": "string",
35788          "uniqueItems": true
35789        },
35790        {
35791          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
35792          "in": "query",
35793          "name": "resourceVersionMatch",
35794          "type": "string",
35795          "uniqueItems": true
35796        },
35797        {
35798          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
35799          "in": "query",
35800          "name": "timeoutSeconds",
35801          "type": "integer",
35802          "uniqueItems": true
35803        },
35804        {
35805          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
35806          "in": "query",
35807          "name": "watch",
35808          "type": "boolean",
35809          "uniqueItems": true
35810        }
35811      ]
35812    },
35813    "/api/v1/watch/resourcequotas": {
35814      "get": {
35815        "consumes": [
35816          "*/*"
35817        ],
35818        "description": "watch individual changes to a list of ResourceQuota. deprecated: use the 'watch' parameter with a list operation instead.",
35819        "operationId": "watchCoreV1ResourceQuotaListForAllNamespaces",
35820        "produces": [
35821          "application/json",
35822          "application/yaml",
35823          "application/vnd.kubernetes.protobuf",
35824          "application/json;stream=watch",
35825          "application/vnd.kubernetes.protobuf;stream=watch"
35826        ],
35827        "responses": {
35828          "200": {
35829            "description": "OK",
35830            "schema": {
35831              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
35832            }
35833          },
35834          "401": {
35835            "description": "Unauthorized"
35836          }
35837        },
35838        "schemes": [
35839          "https"
35840        ],
35841        "tags": [
35842          "core_v1"
35843        ],
35844        "x-kubernetes-action": "watchlist",
35845        "x-kubernetes-group-version-kind": {
35846          "group": "",
35847          "kind": "ResourceQuota",
35848          "version": "v1"
35849        }
35850      },
35851      "parameters": [
35852        {
35853          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
35854          "in": "query",
35855          "name": "allowWatchBookmarks",
35856          "type": "boolean",
35857          "uniqueItems": true
35858        },
35859        {
35860          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
35861          "in": "query",
35862          "name": "continue",
35863          "type": "string",
35864          "uniqueItems": true
35865        },
35866        {
35867          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
35868          "in": "query",
35869          "name": "fieldSelector",
35870          "type": "string",
35871          "uniqueItems": true
35872        },
35873        {
35874          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
35875          "in": "query",
35876          "name": "labelSelector",
35877          "type": "string",
35878          "uniqueItems": true
35879        },
35880        {
35881          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
35882          "in": "query",
35883          "name": "limit",
35884          "type": "integer",
35885          "uniqueItems": true
35886        },
35887        {
35888          "description": "If 'true', then the output is pretty printed.",
35889          "in": "query",
35890          "name": "pretty",
35891          "type": "string",
35892          "uniqueItems": true
35893        },
35894        {
35895          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
35896          "in": "query",
35897          "name": "resourceVersion",
35898          "type": "string",
35899          "uniqueItems": true
35900        },
35901        {
35902          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
35903          "in": "query",
35904          "name": "resourceVersionMatch",
35905          "type": "string",
35906          "uniqueItems": true
35907        },
35908        {
35909          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
35910          "in": "query",
35911          "name": "timeoutSeconds",
35912          "type": "integer",
35913          "uniqueItems": true
35914        },
35915        {
35916          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
35917          "in": "query",
35918          "name": "watch",
35919          "type": "boolean",
35920          "uniqueItems": true
35921        }
35922      ]
35923    },
35924    "/api/v1/watch/secrets": {
35925      "get": {
35926        "consumes": [
35927          "*/*"
35928        ],
35929        "description": "watch individual changes to a list of Secret. deprecated: use the 'watch' parameter with a list operation instead.",
35930        "operationId": "watchCoreV1SecretListForAllNamespaces",
35931        "produces": [
35932          "application/json",
35933          "application/yaml",
35934          "application/vnd.kubernetes.protobuf",
35935          "application/json;stream=watch",
35936          "application/vnd.kubernetes.protobuf;stream=watch"
35937        ],
35938        "responses": {
35939          "200": {
35940            "description": "OK",
35941            "schema": {
35942              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
35943            }
35944          },
35945          "401": {
35946            "description": "Unauthorized"
35947          }
35948        },
35949        "schemes": [
35950          "https"
35951        ],
35952        "tags": [
35953          "core_v1"
35954        ],
35955        "x-kubernetes-action": "watchlist",
35956        "x-kubernetes-group-version-kind": {
35957          "group": "",
35958          "kind": "Secret",
35959          "version": "v1"
35960        }
35961      },
35962      "parameters": [
35963        {
35964          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
35965          "in": "query",
35966          "name": "allowWatchBookmarks",
35967          "type": "boolean",
35968          "uniqueItems": true
35969        },
35970        {
35971          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
35972          "in": "query",
35973          "name": "continue",
35974          "type": "string",
35975          "uniqueItems": true
35976        },
35977        {
35978          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
35979          "in": "query",
35980          "name": "fieldSelector",
35981          "type": "string",
35982          "uniqueItems": true
35983        },
35984        {
35985          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
35986          "in": "query",
35987          "name": "labelSelector",
35988          "type": "string",
35989          "uniqueItems": true
35990        },
35991        {
35992          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
35993          "in": "query",
35994          "name": "limit",
35995          "type": "integer",
35996          "uniqueItems": true
35997        },
35998        {
35999          "description": "If 'true', then the output is pretty printed.",
36000          "in": "query",
36001          "name": "pretty",
36002          "type": "string",
36003          "uniqueItems": true
36004        },
36005        {
36006          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
36007          "in": "query",
36008          "name": "resourceVersion",
36009          "type": "string",
36010          "uniqueItems": true
36011        },
36012        {
36013          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
36014          "in": "query",
36015          "name": "resourceVersionMatch",
36016          "type": "string",
36017          "uniqueItems": true
36018        },
36019        {
36020          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
36021          "in": "query",
36022          "name": "timeoutSeconds",
36023          "type": "integer",
36024          "uniqueItems": true
36025        },
36026        {
36027          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
36028          "in": "query",
36029          "name": "watch",
36030          "type": "boolean",
36031          "uniqueItems": true
36032        }
36033      ]
36034    },
36035    "/api/v1/watch/serviceaccounts": {
36036      "get": {
36037        "consumes": [
36038          "*/*"
36039        ],
36040        "description": "watch individual changes to a list of ServiceAccount. deprecated: use the 'watch' parameter with a list operation instead.",
36041        "operationId": "watchCoreV1ServiceAccountListForAllNamespaces",
36042        "produces": [
36043          "application/json",
36044          "application/yaml",
36045          "application/vnd.kubernetes.protobuf",
36046          "application/json;stream=watch",
36047          "application/vnd.kubernetes.protobuf;stream=watch"
36048        ],
36049        "responses": {
36050          "200": {
36051            "description": "OK",
36052            "schema": {
36053              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
36054            }
36055          },
36056          "401": {
36057            "description": "Unauthorized"
36058          }
36059        },
36060        "schemes": [
36061          "https"
36062        ],
36063        "tags": [
36064          "core_v1"
36065        ],
36066        "x-kubernetes-action": "watchlist",
36067        "x-kubernetes-group-version-kind": {
36068          "group": "",
36069          "kind": "ServiceAccount",
36070          "version": "v1"
36071        }
36072      },
36073      "parameters": [
36074        {
36075          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
36076          "in": "query",
36077          "name": "allowWatchBookmarks",
36078          "type": "boolean",
36079          "uniqueItems": true
36080        },
36081        {
36082          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
36083          "in": "query",
36084          "name": "continue",
36085          "type": "string",
36086          "uniqueItems": true
36087        },
36088        {
36089          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
36090          "in": "query",
36091          "name": "fieldSelector",
36092          "type": "string",
36093          "uniqueItems": true
36094        },
36095        {
36096          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
36097          "in": "query",
36098          "name": "labelSelector",
36099          "type": "string",
36100          "uniqueItems": true
36101        },
36102        {
36103          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
36104          "in": "query",
36105          "name": "limit",
36106          "type": "integer",
36107          "uniqueItems": true
36108        },
36109        {
36110          "description": "If 'true', then the output is pretty printed.",
36111          "in": "query",
36112          "name": "pretty",
36113          "type": "string",
36114          "uniqueItems": true
36115        },
36116        {
36117          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
36118          "in": "query",
36119          "name": "resourceVersion",
36120          "type": "string",
36121          "uniqueItems": true
36122        },
36123        {
36124          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
36125          "in": "query",
36126          "name": "resourceVersionMatch",
36127          "type": "string",
36128          "uniqueItems": true
36129        },
36130        {
36131          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
36132          "in": "query",
36133          "name": "timeoutSeconds",
36134          "type": "integer",
36135          "uniqueItems": true
36136        },
36137        {
36138          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
36139          "in": "query",
36140          "name": "watch",
36141          "type": "boolean",
36142          "uniqueItems": true
36143        }
36144      ]
36145    },
36146    "/api/v1/watch/services": {
36147      "get": {
36148        "consumes": [
36149          "*/*"
36150        ],
36151        "description": "watch individual changes to a list of Service. deprecated: use the 'watch' parameter with a list operation instead.",
36152        "operationId": "watchCoreV1ServiceListForAllNamespaces",
36153        "produces": [
36154          "application/json",
36155          "application/yaml",
36156          "application/vnd.kubernetes.protobuf",
36157          "application/json;stream=watch",
36158          "application/vnd.kubernetes.protobuf;stream=watch"
36159        ],
36160        "responses": {
36161          "200": {
36162            "description": "OK",
36163            "schema": {
36164              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
36165            }
36166          },
36167          "401": {
36168            "description": "Unauthorized"
36169          }
36170        },
36171        "schemes": [
36172          "https"
36173        ],
36174        "tags": [
36175          "core_v1"
36176        ],
36177        "x-kubernetes-action": "watchlist",
36178        "x-kubernetes-group-version-kind": {
36179          "group": "",
36180          "kind": "Service",
36181          "version": "v1"
36182        }
36183      },
36184      "parameters": [
36185        {
36186          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
36187          "in": "query",
36188          "name": "allowWatchBookmarks",
36189          "type": "boolean",
36190          "uniqueItems": true
36191        },
36192        {
36193          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
36194          "in": "query",
36195          "name": "continue",
36196          "type": "string",
36197          "uniqueItems": true
36198        },
36199        {
36200          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
36201          "in": "query",
36202          "name": "fieldSelector",
36203          "type": "string",
36204          "uniqueItems": true
36205        },
36206        {
36207          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
36208          "in": "query",
36209          "name": "labelSelector",
36210          "type": "string",
36211          "uniqueItems": true
36212        },
36213        {
36214          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
36215          "in": "query",
36216          "name": "limit",
36217          "type": "integer",
36218          "uniqueItems": true
36219        },
36220        {
36221          "description": "If 'true', then the output is pretty printed.",
36222          "in": "query",
36223          "name": "pretty",
36224          "type": "string",
36225          "uniqueItems": true
36226        },
36227        {
36228          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
36229          "in": "query",
36230          "name": "resourceVersion",
36231          "type": "string",
36232          "uniqueItems": true
36233        },
36234        {
36235          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
36236          "in": "query",
36237          "name": "resourceVersionMatch",
36238          "type": "string",
36239          "uniqueItems": true
36240        },
36241        {
36242          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
36243          "in": "query",
36244          "name": "timeoutSeconds",
36245          "type": "integer",
36246          "uniqueItems": true
36247        },
36248        {
36249          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
36250          "in": "query",
36251          "name": "watch",
36252          "type": "boolean",
36253          "uniqueItems": true
36254        }
36255      ]
36256    },
36257    "/apis/": {
36258      "get": {
36259        "consumes": [
36260          "application/json",
36261          "application/yaml",
36262          "application/vnd.kubernetes.protobuf"
36263        ],
36264        "description": "get available API versions",
36265        "operationId": "getAPIVersions",
36266        "produces": [
36267          "application/json",
36268          "application/yaml",
36269          "application/vnd.kubernetes.protobuf"
36270        ],
36271        "responses": {
36272          "200": {
36273            "description": "OK",
36274            "schema": {
36275              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroupList"
36276            }
36277          },
36278          "401": {
36279            "description": "Unauthorized"
36280          }
36281        },
36282        "schemes": [
36283          "https"
36284        ],
36285        "tags": [
36286          "apis"
36287        ]
36288      }
36289    },
36290    "/apis/admissionregistration.k8s.io/": {
36291      "get": {
36292        "consumes": [
36293          "application/json",
36294          "application/yaml",
36295          "application/vnd.kubernetes.protobuf"
36296        ],
36297        "description": "get information of a group",
36298        "operationId": "getAdmissionregistrationAPIGroup",
36299        "produces": [
36300          "application/json",
36301          "application/yaml",
36302          "application/vnd.kubernetes.protobuf"
36303        ],
36304        "responses": {
36305          "200": {
36306            "description": "OK",
36307            "schema": {
36308              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup"
36309            }
36310          },
36311          "401": {
36312            "description": "Unauthorized"
36313          }
36314        },
36315        "schemes": [
36316          "https"
36317        ],
36318        "tags": [
36319          "admissionregistration"
36320        ]
36321      }
36322    },
36323    "/apis/admissionregistration.k8s.io/v1/": {
36324      "get": {
36325        "consumes": [
36326          "application/json",
36327          "application/yaml",
36328          "application/vnd.kubernetes.protobuf"
36329        ],
36330        "description": "get available resources",
36331        "operationId": "getAdmissionregistrationV1APIResources",
36332        "produces": [
36333          "application/json",
36334          "application/yaml",
36335          "application/vnd.kubernetes.protobuf"
36336        ],
36337        "responses": {
36338          "200": {
36339            "description": "OK",
36340            "schema": {
36341              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
36342            }
36343          },
36344          "401": {
36345            "description": "Unauthorized"
36346          }
36347        },
36348        "schemes": [
36349          "https"
36350        ],
36351        "tags": [
36352          "admissionregistration_v1"
36353        ]
36354      }
36355    },
36356    "/apis/admissionregistration.k8s.io/v1/mutatingwebhookconfigurations": {
36357      "delete": {
36358        "consumes": [
36359          "*/*"
36360        ],
36361        "description": "delete collection of MutatingWebhookConfiguration",
36362        "operationId": "deleteAdmissionregistrationV1CollectionMutatingWebhookConfiguration",
36363        "parameters": [
36364          {
36365            "in": "body",
36366            "name": "body",
36367            "schema": {
36368              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
36369            }
36370          },
36371          {
36372            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
36373            "in": "query",
36374            "name": "continue",
36375            "type": "string",
36376            "uniqueItems": true
36377          },
36378          {
36379            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
36380            "in": "query",
36381            "name": "dryRun",
36382            "type": "string",
36383            "uniqueItems": true
36384          },
36385          {
36386            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
36387            "in": "query",
36388            "name": "fieldSelector",
36389            "type": "string",
36390            "uniqueItems": true
36391          },
36392          {
36393            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
36394            "in": "query",
36395            "name": "gracePeriodSeconds",
36396            "type": "integer",
36397            "uniqueItems": true
36398          },
36399          {
36400            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
36401            "in": "query",
36402            "name": "labelSelector",
36403            "type": "string",
36404            "uniqueItems": true
36405          },
36406          {
36407            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
36408            "in": "query",
36409            "name": "limit",
36410            "type": "integer",
36411            "uniqueItems": true
36412          },
36413          {
36414            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
36415            "in": "query",
36416            "name": "orphanDependents",
36417            "type": "boolean",
36418            "uniqueItems": true
36419          },
36420          {
36421            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
36422            "in": "query",
36423            "name": "propagationPolicy",
36424            "type": "string",
36425            "uniqueItems": true
36426          },
36427          {
36428            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
36429            "in": "query",
36430            "name": "resourceVersion",
36431            "type": "string",
36432            "uniqueItems": true
36433          },
36434          {
36435            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
36436            "in": "query",
36437            "name": "resourceVersionMatch",
36438            "type": "string",
36439            "uniqueItems": true
36440          },
36441          {
36442            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
36443            "in": "query",
36444            "name": "timeoutSeconds",
36445            "type": "integer",
36446            "uniqueItems": true
36447          }
36448        ],
36449        "produces": [
36450          "application/json",
36451          "application/yaml",
36452          "application/vnd.kubernetes.protobuf"
36453        ],
36454        "responses": {
36455          "200": {
36456            "description": "OK",
36457            "schema": {
36458              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
36459            }
36460          },
36461          "401": {
36462            "description": "Unauthorized"
36463          }
36464        },
36465        "schemes": [
36466          "https"
36467        ],
36468        "tags": [
36469          "admissionregistration_v1"
36470        ],
36471        "x-kubernetes-action": "deletecollection",
36472        "x-kubernetes-group-version-kind": {
36473          "group": "admissionregistration.k8s.io",
36474          "kind": "MutatingWebhookConfiguration",
36475          "version": "v1"
36476        }
36477      },
36478      "get": {
36479        "consumes": [
36480          "*/*"
36481        ],
36482        "description": "list or watch objects of kind MutatingWebhookConfiguration",
36483        "operationId": "listAdmissionregistrationV1MutatingWebhookConfiguration",
36484        "parameters": [
36485          {
36486            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
36487            "in": "query",
36488            "name": "allowWatchBookmarks",
36489            "type": "boolean",
36490            "uniqueItems": true
36491          },
36492          {
36493            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
36494            "in": "query",
36495            "name": "continue",
36496            "type": "string",
36497            "uniqueItems": true
36498          },
36499          {
36500            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
36501            "in": "query",
36502            "name": "fieldSelector",
36503            "type": "string",
36504            "uniqueItems": true
36505          },
36506          {
36507            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
36508            "in": "query",
36509            "name": "labelSelector",
36510            "type": "string",
36511            "uniqueItems": true
36512          },
36513          {
36514            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
36515            "in": "query",
36516            "name": "limit",
36517            "type": "integer",
36518            "uniqueItems": true
36519          },
36520          {
36521            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
36522            "in": "query",
36523            "name": "resourceVersion",
36524            "type": "string",
36525            "uniqueItems": true
36526          },
36527          {
36528            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
36529            "in": "query",
36530            "name": "resourceVersionMatch",
36531            "type": "string",
36532            "uniqueItems": true
36533          },
36534          {
36535            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
36536            "in": "query",
36537            "name": "timeoutSeconds",
36538            "type": "integer",
36539            "uniqueItems": true
36540          },
36541          {
36542            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
36543            "in": "query",
36544            "name": "watch",
36545            "type": "boolean",
36546            "uniqueItems": true
36547          }
36548        ],
36549        "produces": [
36550          "application/json",
36551          "application/yaml",
36552          "application/vnd.kubernetes.protobuf",
36553          "application/json;stream=watch",
36554          "application/vnd.kubernetes.protobuf;stream=watch"
36555        ],
36556        "responses": {
36557          "200": {
36558            "description": "OK",
36559            "schema": {
36560              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1.MutatingWebhookConfigurationList"
36561            }
36562          },
36563          "401": {
36564            "description": "Unauthorized"
36565          }
36566        },
36567        "schemes": [
36568          "https"
36569        ],
36570        "tags": [
36571          "admissionregistration_v1"
36572        ],
36573        "x-kubernetes-action": "list",
36574        "x-kubernetes-group-version-kind": {
36575          "group": "admissionregistration.k8s.io",
36576          "kind": "MutatingWebhookConfiguration",
36577          "version": "v1"
36578        }
36579      },
36580      "parameters": [
36581        {
36582          "description": "If 'true', then the output is pretty printed.",
36583          "in": "query",
36584          "name": "pretty",
36585          "type": "string",
36586          "uniqueItems": true
36587        }
36588      ],
36589      "post": {
36590        "consumes": [
36591          "*/*"
36592        ],
36593        "description": "create a MutatingWebhookConfiguration",
36594        "operationId": "createAdmissionregistrationV1MutatingWebhookConfiguration",
36595        "parameters": [
36596          {
36597            "in": "body",
36598            "name": "body",
36599            "required": true,
36600            "schema": {
36601              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1.MutatingWebhookConfiguration"
36602            }
36603          },
36604          {
36605            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
36606            "in": "query",
36607            "name": "dryRun",
36608            "type": "string",
36609            "uniqueItems": true
36610          },
36611          {
36612            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
36613            "in": "query",
36614            "name": "fieldManager",
36615            "type": "string",
36616            "uniqueItems": true
36617          }
36618        ],
36619        "produces": [
36620          "application/json",
36621          "application/yaml",
36622          "application/vnd.kubernetes.protobuf"
36623        ],
36624        "responses": {
36625          "200": {
36626            "description": "OK",
36627            "schema": {
36628              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1.MutatingWebhookConfiguration"
36629            }
36630          },
36631          "201": {
36632            "description": "Created",
36633            "schema": {
36634              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1.MutatingWebhookConfiguration"
36635            }
36636          },
36637          "202": {
36638            "description": "Accepted",
36639            "schema": {
36640              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1.MutatingWebhookConfiguration"
36641            }
36642          },
36643          "401": {
36644            "description": "Unauthorized"
36645          }
36646        },
36647        "schemes": [
36648          "https"
36649        ],
36650        "tags": [
36651          "admissionregistration_v1"
36652        ],
36653        "x-kubernetes-action": "post",
36654        "x-kubernetes-group-version-kind": {
36655          "group": "admissionregistration.k8s.io",
36656          "kind": "MutatingWebhookConfiguration",
36657          "version": "v1"
36658        }
36659      }
36660    },
36661    "/apis/admissionregistration.k8s.io/v1/mutatingwebhookconfigurations/{name}": {
36662      "delete": {
36663        "consumes": [
36664          "*/*"
36665        ],
36666        "description": "delete a MutatingWebhookConfiguration",
36667        "operationId": "deleteAdmissionregistrationV1MutatingWebhookConfiguration",
36668        "parameters": [
36669          {
36670            "in": "body",
36671            "name": "body",
36672            "schema": {
36673              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
36674            }
36675          },
36676          {
36677            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
36678            "in": "query",
36679            "name": "dryRun",
36680            "type": "string",
36681            "uniqueItems": true
36682          },
36683          {
36684            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
36685            "in": "query",
36686            "name": "gracePeriodSeconds",
36687            "type": "integer",
36688            "uniqueItems": true
36689          },
36690          {
36691            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
36692            "in": "query",
36693            "name": "orphanDependents",
36694            "type": "boolean",
36695            "uniqueItems": true
36696          },
36697          {
36698            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
36699            "in": "query",
36700            "name": "propagationPolicy",
36701            "type": "string",
36702            "uniqueItems": true
36703          }
36704        ],
36705        "produces": [
36706          "application/json",
36707          "application/yaml",
36708          "application/vnd.kubernetes.protobuf"
36709        ],
36710        "responses": {
36711          "200": {
36712            "description": "OK",
36713            "schema": {
36714              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
36715            }
36716          },
36717          "202": {
36718            "description": "Accepted",
36719            "schema": {
36720              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
36721            }
36722          },
36723          "401": {
36724            "description": "Unauthorized"
36725          }
36726        },
36727        "schemes": [
36728          "https"
36729        ],
36730        "tags": [
36731          "admissionregistration_v1"
36732        ],
36733        "x-kubernetes-action": "delete",
36734        "x-kubernetes-group-version-kind": {
36735          "group": "admissionregistration.k8s.io",
36736          "kind": "MutatingWebhookConfiguration",
36737          "version": "v1"
36738        }
36739      },
36740      "get": {
36741        "consumes": [
36742          "*/*"
36743        ],
36744        "description": "read the specified MutatingWebhookConfiguration",
36745        "operationId": "readAdmissionregistrationV1MutatingWebhookConfiguration",
36746        "produces": [
36747          "application/json",
36748          "application/yaml",
36749          "application/vnd.kubernetes.protobuf"
36750        ],
36751        "responses": {
36752          "200": {
36753            "description": "OK",
36754            "schema": {
36755              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1.MutatingWebhookConfiguration"
36756            }
36757          },
36758          "401": {
36759            "description": "Unauthorized"
36760          }
36761        },
36762        "schemes": [
36763          "https"
36764        ],
36765        "tags": [
36766          "admissionregistration_v1"
36767        ],
36768        "x-kubernetes-action": "get",
36769        "x-kubernetes-group-version-kind": {
36770          "group": "admissionregistration.k8s.io",
36771          "kind": "MutatingWebhookConfiguration",
36772          "version": "v1"
36773        }
36774      },
36775      "parameters": [
36776        {
36777          "description": "name of the MutatingWebhookConfiguration",
36778          "in": "path",
36779          "name": "name",
36780          "required": true,
36781          "type": "string",
36782          "uniqueItems": true
36783        },
36784        {
36785          "description": "If 'true', then the output is pretty printed.",
36786          "in": "query",
36787          "name": "pretty",
36788          "type": "string",
36789          "uniqueItems": true
36790        }
36791      ],
36792      "patch": {
36793        "consumes": [
36794          "application/json-patch+json",
36795          "application/merge-patch+json",
36796          "application/strategic-merge-patch+json",
36797          "application/apply-patch+yaml"
36798        ],
36799        "description": "partially update the specified MutatingWebhookConfiguration",
36800        "operationId": "patchAdmissionregistrationV1MutatingWebhookConfiguration",
36801        "parameters": [
36802          {
36803            "in": "body",
36804            "name": "body",
36805            "required": true,
36806            "schema": {
36807              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
36808            }
36809          },
36810          {
36811            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
36812            "in": "query",
36813            "name": "dryRun",
36814            "type": "string",
36815            "uniqueItems": true
36816          },
36817          {
36818            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
36819            "in": "query",
36820            "name": "fieldManager",
36821            "type": "string",
36822            "uniqueItems": true
36823          },
36824          {
36825            "description": "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.",
36826            "in": "query",
36827            "name": "force",
36828            "type": "boolean",
36829            "uniqueItems": true
36830          }
36831        ],
36832        "produces": [
36833          "application/json",
36834          "application/yaml",
36835          "application/vnd.kubernetes.protobuf"
36836        ],
36837        "responses": {
36838          "200": {
36839            "description": "OK",
36840            "schema": {
36841              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1.MutatingWebhookConfiguration"
36842            }
36843          },
36844          "201": {
36845            "description": "Created",
36846            "schema": {
36847              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1.MutatingWebhookConfiguration"
36848            }
36849          },
36850          "401": {
36851            "description": "Unauthorized"
36852          }
36853        },
36854        "schemes": [
36855          "https"
36856        ],
36857        "tags": [
36858          "admissionregistration_v1"
36859        ],
36860        "x-kubernetes-action": "patch",
36861        "x-kubernetes-group-version-kind": {
36862          "group": "admissionregistration.k8s.io",
36863          "kind": "MutatingWebhookConfiguration",
36864          "version": "v1"
36865        }
36866      },
36867      "put": {
36868        "consumes": [
36869          "*/*"
36870        ],
36871        "description": "replace the specified MutatingWebhookConfiguration",
36872        "operationId": "replaceAdmissionregistrationV1MutatingWebhookConfiguration",
36873        "parameters": [
36874          {
36875            "in": "body",
36876            "name": "body",
36877            "required": true,
36878            "schema": {
36879              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1.MutatingWebhookConfiguration"
36880            }
36881          },
36882          {
36883            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
36884            "in": "query",
36885            "name": "dryRun",
36886            "type": "string",
36887            "uniqueItems": true
36888          },
36889          {
36890            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
36891            "in": "query",
36892            "name": "fieldManager",
36893            "type": "string",
36894            "uniqueItems": true
36895          }
36896        ],
36897        "produces": [
36898          "application/json",
36899          "application/yaml",
36900          "application/vnd.kubernetes.protobuf"
36901        ],
36902        "responses": {
36903          "200": {
36904            "description": "OK",
36905            "schema": {
36906              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1.MutatingWebhookConfiguration"
36907            }
36908          },
36909          "201": {
36910            "description": "Created",
36911            "schema": {
36912              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1.MutatingWebhookConfiguration"
36913            }
36914          },
36915          "401": {
36916            "description": "Unauthorized"
36917          }
36918        },
36919        "schemes": [
36920          "https"
36921        ],
36922        "tags": [
36923          "admissionregistration_v1"
36924        ],
36925        "x-kubernetes-action": "put",
36926        "x-kubernetes-group-version-kind": {
36927          "group": "admissionregistration.k8s.io",
36928          "kind": "MutatingWebhookConfiguration",
36929          "version": "v1"
36930        }
36931      }
36932    },
36933    "/apis/admissionregistration.k8s.io/v1/validatingwebhookconfigurations": {
36934      "delete": {
36935        "consumes": [
36936          "*/*"
36937        ],
36938        "description": "delete collection of ValidatingWebhookConfiguration",
36939        "operationId": "deleteAdmissionregistrationV1CollectionValidatingWebhookConfiguration",
36940        "parameters": [
36941          {
36942            "in": "body",
36943            "name": "body",
36944            "schema": {
36945              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
36946            }
36947          },
36948          {
36949            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
36950            "in": "query",
36951            "name": "continue",
36952            "type": "string",
36953            "uniqueItems": true
36954          },
36955          {
36956            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
36957            "in": "query",
36958            "name": "dryRun",
36959            "type": "string",
36960            "uniqueItems": true
36961          },
36962          {
36963            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
36964            "in": "query",
36965            "name": "fieldSelector",
36966            "type": "string",
36967            "uniqueItems": true
36968          },
36969          {
36970            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
36971            "in": "query",
36972            "name": "gracePeriodSeconds",
36973            "type": "integer",
36974            "uniqueItems": true
36975          },
36976          {
36977            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
36978            "in": "query",
36979            "name": "labelSelector",
36980            "type": "string",
36981            "uniqueItems": true
36982          },
36983          {
36984            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
36985            "in": "query",
36986            "name": "limit",
36987            "type": "integer",
36988            "uniqueItems": true
36989          },
36990          {
36991            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
36992            "in": "query",
36993            "name": "orphanDependents",
36994            "type": "boolean",
36995            "uniqueItems": true
36996          },
36997          {
36998            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
36999            "in": "query",
37000            "name": "propagationPolicy",
37001            "type": "string",
37002            "uniqueItems": true
37003          },
37004          {
37005            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
37006            "in": "query",
37007            "name": "resourceVersion",
37008            "type": "string",
37009            "uniqueItems": true
37010          },
37011          {
37012            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
37013            "in": "query",
37014            "name": "resourceVersionMatch",
37015            "type": "string",
37016            "uniqueItems": true
37017          },
37018          {
37019            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
37020            "in": "query",
37021            "name": "timeoutSeconds",
37022            "type": "integer",
37023            "uniqueItems": true
37024          }
37025        ],
37026        "produces": [
37027          "application/json",
37028          "application/yaml",
37029          "application/vnd.kubernetes.protobuf"
37030        ],
37031        "responses": {
37032          "200": {
37033            "description": "OK",
37034            "schema": {
37035              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
37036            }
37037          },
37038          "401": {
37039            "description": "Unauthorized"
37040          }
37041        },
37042        "schemes": [
37043          "https"
37044        ],
37045        "tags": [
37046          "admissionregistration_v1"
37047        ],
37048        "x-kubernetes-action": "deletecollection",
37049        "x-kubernetes-group-version-kind": {
37050          "group": "admissionregistration.k8s.io",
37051          "kind": "ValidatingWebhookConfiguration",
37052          "version": "v1"
37053        }
37054      },
37055      "get": {
37056        "consumes": [
37057          "*/*"
37058        ],
37059        "description": "list or watch objects of kind ValidatingWebhookConfiguration",
37060        "operationId": "listAdmissionregistrationV1ValidatingWebhookConfiguration",
37061        "parameters": [
37062          {
37063            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
37064            "in": "query",
37065            "name": "allowWatchBookmarks",
37066            "type": "boolean",
37067            "uniqueItems": true
37068          },
37069          {
37070            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
37071            "in": "query",
37072            "name": "continue",
37073            "type": "string",
37074            "uniqueItems": true
37075          },
37076          {
37077            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
37078            "in": "query",
37079            "name": "fieldSelector",
37080            "type": "string",
37081            "uniqueItems": true
37082          },
37083          {
37084            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
37085            "in": "query",
37086            "name": "labelSelector",
37087            "type": "string",
37088            "uniqueItems": true
37089          },
37090          {
37091            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
37092            "in": "query",
37093            "name": "limit",
37094            "type": "integer",
37095            "uniqueItems": true
37096          },
37097          {
37098            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
37099            "in": "query",
37100            "name": "resourceVersion",
37101            "type": "string",
37102            "uniqueItems": true
37103          },
37104          {
37105            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
37106            "in": "query",
37107            "name": "resourceVersionMatch",
37108            "type": "string",
37109            "uniqueItems": true
37110          },
37111          {
37112            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
37113            "in": "query",
37114            "name": "timeoutSeconds",
37115            "type": "integer",
37116            "uniqueItems": true
37117          },
37118          {
37119            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
37120            "in": "query",
37121            "name": "watch",
37122            "type": "boolean",
37123            "uniqueItems": true
37124          }
37125        ],
37126        "produces": [
37127          "application/json",
37128          "application/yaml",
37129          "application/vnd.kubernetes.protobuf",
37130          "application/json;stream=watch",
37131          "application/vnd.kubernetes.protobuf;stream=watch"
37132        ],
37133        "responses": {
37134          "200": {
37135            "description": "OK",
37136            "schema": {
37137              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1.ValidatingWebhookConfigurationList"
37138            }
37139          },
37140          "401": {
37141            "description": "Unauthorized"
37142          }
37143        },
37144        "schemes": [
37145          "https"
37146        ],
37147        "tags": [
37148          "admissionregistration_v1"
37149        ],
37150        "x-kubernetes-action": "list",
37151        "x-kubernetes-group-version-kind": {
37152          "group": "admissionregistration.k8s.io",
37153          "kind": "ValidatingWebhookConfiguration",
37154          "version": "v1"
37155        }
37156      },
37157      "parameters": [
37158        {
37159          "description": "If 'true', then the output is pretty printed.",
37160          "in": "query",
37161          "name": "pretty",
37162          "type": "string",
37163          "uniqueItems": true
37164        }
37165      ],
37166      "post": {
37167        "consumes": [
37168          "*/*"
37169        ],
37170        "description": "create a ValidatingWebhookConfiguration",
37171        "operationId": "createAdmissionregistrationV1ValidatingWebhookConfiguration",
37172        "parameters": [
37173          {
37174            "in": "body",
37175            "name": "body",
37176            "required": true,
37177            "schema": {
37178              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1.ValidatingWebhookConfiguration"
37179            }
37180          },
37181          {
37182            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
37183            "in": "query",
37184            "name": "dryRun",
37185            "type": "string",
37186            "uniqueItems": true
37187          },
37188          {
37189            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
37190            "in": "query",
37191            "name": "fieldManager",
37192            "type": "string",
37193            "uniqueItems": true
37194          }
37195        ],
37196        "produces": [
37197          "application/json",
37198          "application/yaml",
37199          "application/vnd.kubernetes.protobuf"
37200        ],
37201        "responses": {
37202          "200": {
37203            "description": "OK",
37204            "schema": {
37205              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1.ValidatingWebhookConfiguration"
37206            }
37207          },
37208          "201": {
37209            "description": "Created",
37210            "schema": {
37211              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1.ValidatingWebhookConfiguration"
37212            }
37213          },
37214          "202": {
37215            "description": "Accepted",
37216            "schema": {
37217              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1.ValidatingWebhookConfiguration"
37218            }
37219          },
37220          "401": {
37221            "description": "Unauthorized"
37222          }
37223        },
37224        "schemes": [
37225          "https"
37226        ],
37227        "tags": [
37228          "admissionregistration_v1"
37229        ],
37230        "x-kubernetes-action": "post",
37231        "x-kubernetes-group-version-kind": {
37232          "group": "admissionregistration.k8s.io",
37233          "kind": "ValidatingWebhookConfiguration",
37234          "version": "v1"
37235        }
37236      }
37237    },
37238    "/apis/admissionregistration.k8s.io/v1/validatingwebhookconfigurations/{name}": {
37239      "delete": {
37240        "consumes": [
37241          "*/*"
37242        ],
37243        "description": "delete a ValidatingWebhookConfiguration",
37244        "operationId": "deleteAdmissionregistrationV1ValidatingWebhookConfiguration",
37245        "parameters": [
37246          {
37247            "in": "body",
37248            "name": "body",
37249            "schema": {
37250              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
37251            }
37252          },
37253          {
37254            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
37255            "in": "query",
37256            "name": "dryRun",
37257            "type": "string",
37258            "uniqueItems": true
37259          },
37260          {
37261            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
37262            "in": "query",
37263            "name": "gracePeriodSeconds",
37264            "type": "integer",
37265            "uniqueItems": true
37266          },
37267          {
37268            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
37269            "in": "query",
37270            "name": "orphanDependents",
37271            "type": "boolean",
37272            "uniqueItems": true
37273          },
37274          {
37275            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
37276            "in": "query",
37277            "name": "propagationPolicy",
37278            "type": "string",
37279            "uniqueItems": true
37280          }
37281        ],
37282        "produces": [
37283          "application/json",
37284          "application/yaml",
37285          "application/vnd.kubernetes.protobuf"
37286        ],
37287        "responses": {
37288          "200": {
37289            "description": "OK",
37290            "schema": {
37291              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
37292            }
37293          },
37294          "202": {
37295            "description": "Accepted",
37296            "schema": {
37297              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
37298            }
37299          },
37300          "401": {
37301            "description": "Unauthorized"
37302          }
37303        },
37304        "schemes": [
37305          "https"
37306        ],
37307        "tags": [
37308          "admissionregistration_v1"
37309        ],
37310        "x-kubernetes-action": "delete",
37311        "x-kubernetes-group-version-kind": {
37312          "group": "admissionregistration.k8s.io",
37313          "kind": "ValidatingWebhookConfiguration",
37314          "version": "v1"
37315        }
37316      },
37317      "get": {
37318        "consumes": [
37319          "*/*"
37320        ],
37321        "description": "read the specified ValidatingWebhookConfiguration",
37322        "operationId": "readAdmissionregistrationV1ValidatingWebhookConfiguration",
37323        "produces": [
37324          "application/json",
37325          "application/yaml",
37326          "application/vnd.kubernetes.protobuf"
37327        ],
37328        "responses": {
37329          "200": {
37330            "description": "OK",
37331            "schema": {
37332              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1.ValidatingWebhookConfiguration"
37333            }
37334          },
37335          "401": {
37336            "description": "Unauthorized"
37337          }
37338        },
37339        "schemes": [
37340          "https"
37341        ],
37342        "tags": [
37343          "admissionregistration_v1"
37344        ],
37345        "x-kubernetes-action": "get",
37346        "x-kubernetes-group-version-kind": {
37347          "group": "admissionregistration.k8s.io",
37348          "kind": "ValidatingWebhookConfiguration",
37349          "version": "v1"
37350        }
37351      },
37352      "parameters": [
37353        {
37354          "description": "name of the ValidatingWebhookConfiguration",
37355          "in": "path",
37356          "name": "name",
37357          "required": true,
37358          "type": "string",
37359          "uniqueItems": true
37360        },
37361        {
37362          "description": "If 'true', then the output is pretty printed.",
37363          "in": "query",
37364          "name": "pretty",
37365          "type": "string",
37366          "uniqueItems": true
37367        }
37368      ],
37369      "patch": {
37370        "consumes": [
37371          "application/json-patch+json",
37372          "application/merge-patch+json",
37373          "application/strategic-merge-patch+json",
37374          "application/apply-patch+yaml"
37375        ],
37376        "description": "partially update the specified ValidatingWebhookConfiguration",
37377        "operationId": "patchAdmissionregistrationV1ValidatingWebhookConfiguration",
37378        "parameters": [
37379          {
37380            "in": "body",
37381            "name": "body",
37382            "required": true,
37383            "schema": {
37384              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
37385            }
37386          },
37387          {
37388            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
37389            "in": "query",
37390            "name": "dryRun",
37391            "type": "string",
37392            "uniqueItems": true
37393          },
37394          {
37395            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
37396            "in": "query",
37397            "name": "fieldManager",
37398            "type": "string",
37399            "uniqueItems": true
37400          },
37401          {
37402            "description": "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.",
37403            "in": "query",
37404            "name": "force",
37405            "type": "boolean",
37406            "uniqueItems": true
37407          }
37408        ],
37409        "produces": [
37410          "application/json",
37411          "application/yaml",
37412          "application/vnd.kubernetes.protobuf"
37413        ],
37414        "responses": {
37415          "200": {
37416            "description": "OK",
37417            "schema": {
37418              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1.ValidatingWebhookConfiguration"
37419            }
37420          },
37421          "201": {
37422            "description": "Created",
37423            "schema": {
37424              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1.ValidatingWebhookConfiguration"
37425            }
37426          },
37427          "401": {
37428            "description": "Unauthorized"
37429          }
37430        },
37431        "schemes": [
37432          "https"
37433        ],
37434        "tags": [
37435          "admissionregistration_v1"
37436        ],
37437        "x-kubernetes-action": "patch",
37438        "x-kubernetes-group-version-kind": {
37439          "group": "admissionregistration.k8s.io",
37440          "kind": "ValidatingWebhookConfiguration",
37441          "version": "v1"
37442        }
37443      },
37444      "put": {
37445        "consumes": [
37446          "*/*"
37447        ],
37448        "description": "replace the specified ValidatingWebhookConfiguration",
37449        "operationId": "replaceAdmissionregistrationV1ValidatingWebhookConfiguration",
37450        "parameters": [
37451          {
37452            "in": "body",
37453            "name": "body",
37454            "required": true,
37455            "schema": {
37456              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1.ValidatingWebhookConfiguration"
37457            }
37458          },
37459          {
37460            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
37461            "in": "query",
37462            "name": "dryRun",
37463            "type": "string",
37464            "uniqueItems": true
37465          },
37466          {
37467            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
37468            "in": "query",
37469            "name": "fieldManager",
37470            "type": "string",
37471            "uniqueItems": true
37472          }
37473        ],
37474        "produces": [
37475          "application/json",
37476          "application/yaml",
37477          "application/vnd.kubernetes.protobuf"
37478        ],
37479        "responses": {
37480          "200": {
37481            "description": "OK",
37482            "schema": {
37483              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1.ValidatingWebhookConfiguration"
37484            }
37485          },
37486          "201": {
37487            "description": "Created",
37488            "schema": {
37489              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1.ValidatingWebhookConfiguration"
37490            }
37491          },
37492          "401": {
37493            "description": "Unauthorized"
37494          }
37495        },
37496        "schemes": [
37497          "https"
37498        ],
37499        "tags": [
37500          "admissionregistration_v1"
37501        ],
37502        "x-kubernetes-action": "put",
37503        "x-kubernetes-group-version-kind": {
37504          "group": "admissionregistration.k8s.io",
37505          "kind": "ValidatingWebhookConfiguration",
37506          "version": "v1"
37507        }
37508      }
37509    },
37510    "/apis/admissionregistration.k8s.io/v1/watch/mutatingwebhookconfigurations": {
37511      "get": {
37512        "consumes": [
37513          "*/*"
37514        ],
37515        "description": "watch individual changes to a list of MutatingWebhookConfiguration. deprecated: use the 'watch' parameter with a list operation instead.",
37516        "operationId": "watchAdmissionregistrationV1MutatingWebhookConfigurationList",
37517        "produces": [
37518          "application/json",
37519          "application/yaml",
37520          "application/vnd.kubernetes.protobuf",
37521          "application/json;stream=watch",
37522          "application/vnd.kubernetes.protobuf;stream=watch"
37523        ],
37524        "responses": {
37525          "200": {
37526            "description": "OK",
37527            "schema": {
37528              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
37529            }
37530          },
37531          "401": {
37532            "description": "Unauthorized"
37533          }
37534        },
37535        "schemes": [
37536          "https"
37537        ],
37538        "tags": [
37539          "admissionregistration_v1"
37540        ],
37541        "x-kubernetes-action": "watchlist",
37542        "x-kubernetes-group-version-kind": {
37543          "group": "admissionregistration.k8s.io",
37544          "kind": "MutatingWebhookConfiguration",
37545          "version": "v1"
37546        }
37547      },
37548      "parameters": [
37549        {
37550          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
37551          "in": "query",
37552          "name": "allowWatchBookmarks",
37553          "type": "boolean",
37554          "uniqueItems": true
37555        },
37556        {
37557          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
37558          "in": "query",
37559          "name": "continue",
37560          "type": "string",
37561          "uniqueItems": true
37562        },
37563        {
37564          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
37565          "in": "query",
37566          "name": "fieldSelector",
37567          "type": "string",
37568          "uniqueItems": true
37569        },
37570        {
37571          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
37572          "in": "query",
37573          "name": "labelSelector",
37574          "type": "string",
37575          "uniqueItems": true
37576        },
37577        {
37578          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
37579          "in": "query",
37580          "name": "limit",
37581          "type": "integer",
37582          "uniqueItems": true
37583        },
37584        {
37585          "description": "If 'true', then the output is pretty printed.",
37586          "in": "query",
37587          "name": "pretty",
37588          "type": "string",
37589          "uniqueItems": true
37590        },
37591        {
37592          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
37593          "in": "query",
37594          "name": "resourceVersion",
37595          "type": "string",
37596          "uniqueItems": true
37597        },
37598        {
37599          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
37600          "in": "query",
37601          "name": "resourceVersionMatch",
37602          "type": "string",
37603          "uniqueItems": true
37604        },
37605        {
37606          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
37607          "in": "query",
37608          "name": "timeoutSeconds",
37609          "type": "integer",
37610          "uniqueItems": true
37611        },
37612        {
37613          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
37614          "in": "query",
37615          "name": "watch",
37616          "type": "boolean",
37617          "uniqueItems": true
37618        }
37619      ]
37620    },
37621    "/apis/admissionregistration.k8s.io/v1/watch/mutatingwebhookconfigurations/{name}": {
37622      "get": {
37623        "consumes": [
37624          "*/*"
37625        ],
37626        "description": "watch changes to an object of kind MutatingWebhookConfiguration. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.",
37627        "operationId": "watchAdmissionregistrationV1MutatingWebhookConfiguration",
37628        "produces": [
37629          "application/json",
37630          "application/yaml",
37631          "application/vnd.kubernetes.protobuf",
37632          "application/json;stream=watch",
37633          "application/vnd.kubernetes.protobuf;stream=watch"
37634        ],
37635        "responses": {
37636          "200": {
37637            "description": "OK",
37638            "schema": {
37639              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
37640            }
37641          },
37642          "401": {
37643            "description": "Unauthorized"
37644          }
37645        },
37646        "schemes": [
37647          "https"
37648        ],
37649        "tags": [
37650          "admissionregistration_v1"
37651        ],
37652        "x-kubernetes-action": "watch",
37653        "x-kubernetes-group-version-kind": {
37654          "group": "admissionregistration.k8s.io",
37655          "kind": "MutatingWebhookConfiguration",
37656          "version": "v1"
37657        }
37658      },
37659      "parameters": [
37660        {
37661          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
37662          "in": "query",
37663          "name": "allowWatchBookmarks",
37664          "type": "boolean",
37665          "uniqueItems": true
37666        },
37667        {
37668          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
37669          "in": "query",
37670          "name": "continue",
37671          "type": "string",
37672          "uniqueItems": true
37673        },
37674        {
37675          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
37676          "in": "query",
37677          "name": "fieldSelector",
37678          "type": "string",
37679          "uniqueItems": true
37680        },
37681        {
37682          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
37683          "in": "query",
37684          "name": "labelSelector",
37685          "type": "string",
37686          "uniqueItems": true
37687        },
37688        {
37689          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
37690          "in": "query",
37691          "name": "limit",
37692          "type": "integer",
37693          "uniqueItems": true
37694        },
37695        {
37696          "description": "name of the MutatingWebhookConfiguration",
37697          "in": "path",
37698          "name": "name",
37699          "required": true,
37700          "type": "string",
37701          "uniqueItems": true
37702        },
37703        {
37704          "description": "If 'true', then the output is pretty printed.",
37705          "in": "query",
37706          "name": "pretty",
37707          "type": "string",
37708          "uniqueItems": true
37709        },
37710        {
37711          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
37712          "in": "query",
37713          "name": "resourceVersion",
37714          "type": "string",
37715          "uniqueItems": true
37716        },
37717        {
37718          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
37719          "in": "query",
37720          "name": "resourceVersionMatch",
37721          "type": "string",
37722          "uniqueItems": true
37723        },
37724        {
37725          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
37726          "in": "query",
37727          "name": "timeoutSeconds",
37728          "type": "integer",
37729          "uniqueItems": true
37730        },
37731        {
37732          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
37733          "in": "query",
37734          "name": "watch",
37735          "type": "boolean",
37736          "uniqueItems": true
37737        }
37738      ]
37739    },
37740    "/apis/admissionregistration.k8s.io/v1/watch/validatingwebhookconfigurations": {
37741      "get": {
37742        "consumes": [
37743          "*/*"
37744        ],
37745        "description": "watch individual changes to a list of ValidatingWebhookConfiguration. deprecated: use the 'watch' parameter with a list operation instead.",
37746        "operationId": "watchAdmissionregistrationV1ValidatingWebhookConfigurationList",
37747        "produces": [
37748          "application/json",
37749          "application/yaml",
37750          "application/vnd.kubernetes.protobuf",
37751          "application/json;stream=watch",
37752          "application/vnd.kubernetes.protobuf;stream=watch"
37753        ],
37754        "responses": {
37755          "200": {
37756            "description": "OK",
37757            "schema": {
37758              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
37759            }
37760          },
37761          "401": {
37762            "description": "Unauthorized"
37763          }
37764        },
37765        "schemes": [
37766          "https"
37767        ],
37768        "tags": [
37769          "admissionregistration_v1"
37770        ],
37771        "x-kubernetes-action": "watchlist",
37772        "x-kubernetes-group-version-kind": {
37773          "group": "admissionregistration.k8s.io",
37774          "kind": "ValidatingWebhookConfiguration",
37775          "version": "v1"
37776        }
37777      },
37778      "parameters": [
37779        {
37780          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
37781          "in": "query",
37782          "name": "allowWatchBookmarks",
37783          "type": "boolean",
37784          "uniqueItems": true
37785        },
37786        {
37787          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
37788          "in": "query",
37789          "name": "continue",
37790          "type": "string",
37791          "uniqueItems": true
37792        },
37793        {
37794          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
37795          "in": "query",
37796          "name": "fieldSelector",
37797          "type": "string",
37798          "uniqueItems": true
37799        },
37800        {
37801          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
37802          "in": "query",
37803          "name": "labelSelector",
37804          "type": "string",
37805          "uniqueItems": true
37806        },
37807        {
37808          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
37809          "in": "query",
37810          "name": "limit",
37811          "type": "integer",
37812          "uniqueItems": true
37813        },
37814        {
37815          "description": "If 'true', then the output is pretty printed.",
37816          "in": "query",
37817          "name": "pretty",
37818          "type": "string",
37819          "uniqueItems": true
37820        },
37821        {
37822          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
37823          "in": "query",
37824          "name": "resourceVersion",
37825          "type": "string",
37826          "uniqueItems": true
37827        },
37828        {
37829          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
37830          "in": "query",
37831          "name": "resourceVersionMatch",
37832          "type": "string",
37833          "uniqueItems": true
37834        },
37835        {
37836          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
37837          "in": "query",
37838          "name": "timeoutSeconds",
37839          "type": "integer",
37840          "uniqueItems": true
37841        },
37842        {
37843          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
37844          "in": "query",
37845          "name": "watch",
37846          "type": "boolean",
37847          "uniqueItems": true
37848        }
37849      ]
37850    },
37851    "/apis/admissionregistration.k8s.io/v1/watch/validatingwebhookconfigurations/{name}": {
37852      "get": {
37853        "consumes": [
37854          "*/*"
37855        ],
37856        "description": "watch changes to an object of kind ValidatingWebhookConfiguration. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.",
37857        "operationId": "watchAdmissionregistrationV1ValidatingWebhookConfiguration",
37858        "produces": [
37859          "application/json",
37860          "application/yaml",
37861          "application/vnd.kubernetes.protobuf",
37862          "application/json;stream=watch",
37863          "application/vnd.kubernetes.protobuf;stream=watch"
37864        ],
37865        "responses": {
37866          "200": {
37867            "description": "OK",
37868            "schema": {
37869              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
37870            }
37871          },
37872          "401": {
37873            "description": "Unauthorized"
37874          }
37875        },
37876        "schemes": [
37877          "https"
37878        ],
37879        "tags": [
37880          "admissionregistration_v1"
37881        ],
37882        "x-kubernetes-action": "watch",
37883        "x-kubernetes-group-version-kind": {
37884          "group": "admissionregistration.k8s.io",
37885          "kind": "ValidatingWebhookConfiguration",
37886          "version": "v1"
37887        }
37888      },
37889      "parameters": [
37890        {
37891          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
37892          "in": "query",
37893          "name": "allowWatchBookmarks",
37894          "type": "boolean",
37895          "uniqueItems": true
37896        },
37897        {
37898          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
37899          "in": "query",
37900          "name": "continue",
37901          "type": "string",
37902          "uniqueItems": true
37903        },
37904        {
37905          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
37906          "in": "query",
37907          "name": "fieldSelector",
37908          "type": "string",
37909          "uniqueItems": true
37910        },
37911        {
37912          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
37913          "in": "query",
37914          "name": "labelSelector",
37915          "type": "string",
37916          "uniqueItems": true
37917        },
37918        {
37919          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
37920          "in": "query",
37921          "name": "limit",
37922          "type": "integer",
37923          "uniqueItems": true
37924        },
37925        {
37926          "description": "name of the ValidatingWebhookConfiguration",
37927          "in": "path",
37928          "name": "name",
37929          "required": true,
37930          "type": "string",
37931          "uniqueItems": true
37932        },
37933        {
37934          "description": "If 'true', then the output is pretty printed.",
37935          "in": "query",
37936          "name": "pretty",
37937          "type": "string",
37938          "uniqueItems": true
37939        },
37940        {
37941          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
37942          "in": "query",
37943          "name": "resourceVersion",
37944          "type": "string",
37945          "uniqueItems": true
37946        },
37947        {
37948          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
37949          "in": "query",
37950          "name": "resourceVersionMatch",
37951          "type": "string",
37952          "uniqueItems": true
37953        },
37954        {
37955          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
37956          "in": "query",
37957          "name": "timeoutSeconds",
37958          "type": "integer",
37959          "uniqueItems": true
37960        },
37961        {
37962          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
37963          "in": "query",
37964          "name": "watch",
37965          "type": "boolean",
37966          "uniqueItems": true
37967        }
37968      ]
37969    },
37970    "/apis/apiextensions.k8s.io/": {
37971      "get": {
37972        "consumes": [
37973          "application/json",
37974          "application/yaml",
37975          "application/vnd.kubernetes.protobuf"
37976        ],
37977        "description": "get information of a group",
37978        "operationId": "getApiextensionsAPIGroup",
37979        "produces": [
37980          "application/json",
37981          "application/yaml",
37982          "application/vnd.kubernetes.protobuf"
37983        ],
37984        "responses": {
37985          "200": {
37986            "description": "OK",
37987            "schema": {
37988              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup"
37989            }
37990          },
37991          "401": {
37992            "description": "Unauthorized"
37993          }
37994        },
37995        "schemes": [
37996          "https"
37997        ],
37998        "tags": [
37999          "apiextensions"
38000        ]
38001      }
38002    },
38003    "/apis/apiextensions.k8s.io/v1/": {
38004      "get": {
38005        "consumes": [
38006          "application/json",
38007          "application/yaml",
38008          "application/vnd.kubernetes.protobuf"
38009        ],
38010        "description": "get available resources",
38011        "operationId": "getApiextensionsV1APIResources",
38012        "produces": [
38013          "application/json",
38014          "application/yaml",
38015          "application/vnd.kubernetes.protobuf"
38016        ],
38017        "responses": {
38018          "200": {
38019            "description": "OK",
38020            "schema": {
38021              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
38022            }
38023          },
38024          "401": {
38025            "description": "Unauthorized"
38026          }
38027        },
38028        "schemes": [
38029          "https"
38030        ],
38031        "tags": [
38032          "apiextensions_v1"
38033        ]
38034      }
38035    },
38036    "/apis/apiextensions.k8s.io/v1/customresourcedefinitions": {
38037      "delete": {
38038        "consumes": [
38039          "*/*"
38040        ],
38041        "description": "delete collection of CustomResourceDefinition",
38042        "operationId": "deleteApiextensionsV1CollectionCustomResourceDefinition",
38043        "parameters": [
38044          {
38045            "in": "body",
38046            "name": "body",
38047            "schema": {
38048              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
38049            }
38050          },
38051          {
38052            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
38053            "in": "query",
38054            "name": "continue",
38055            "type": "string",
38056            "uniqueItems": true
38057          },
38058          {
38059            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
38060            "in": "query",
38061            "name": "dryRun",
38062            "type": "string",
38063            "uniqueItems": true
38064          },
38065          {
38066            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
38067            "in": "query",
38068            "name": "fieldSelector",
38069            "type": "string",
38070            "uniqueItems": true
38071          },
38072          {
38073            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
38074            "in": "query",
38075            "name": "gracePeriodSeconds",
38076            "type": "integer",
38077            "uniqueItems": true
38078          },
38079          {
38080            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
38081            "in": "query",
38082            "name": "labelSelector",
38083            "type": "string",
38084            "uniqueItems": true
38085          },
38086          {
38087            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
38088            "in": "query",
38089            "name": "limit",
38090            "type": "integer",
38091            "uniqueItems": true
38092          },
38093          {
38094            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
38095            "in": "query",
38096            "name": "orphanDependents",
38097            "type": "boolean",
38098            "uniqueItems": true
38099          },
38100          {
38101            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
38102            "in": "query",
38103            "name": "propagationPolicy",
38104            "type": "string",
38105            "uniqueItems": true
38106          },
38107          {
38108            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
38109            "in": "query",
38110            "name": "resourceVersion",
38111            "type": "string",
38112            "uniqueItems": true
38113          },
38114          {
38115            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
38116            "in": "query",
38117            "name": "resourceVersionMatch",
38118            "type": "string",
38119            "uniqueItems": true
38120          },
38121          {
38122            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
38123            "in": "query",
38124            "name": "timeoutSeconds",
38125            "type": "integer",
38126            "uniqueItems": true
38127          }
38128        ],
38129        "produces": [
38130          "application/json",
38131          "application/yaml",
38132          "application/vnd.kubernetes.protobuf"
38133        ],
38134        "responses": {
38135          "200": {
38136            "description": "OK",
38137            "schema": {
38138              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
38139            }
38140          },
38141          "401": {
38142            "description": "Unauthorized"
38143          }
38144        },
38145        "schemes": [
38146          "https"
38147        ],
38148        "tags": [
38149          "apiextensions_v1"
38150        ],
38151        "x-kubernetes-action": "deletecollection",
38152        "x-kubernetes-group-version-kind": {
38153          "group": "apiextensions.k8s.io",
38154          "kind": "CustomResourceDefinition",
38155          "version": "v1"
38156        }
38157      },
38158      "get": {
38159        "consumes": [
38160          "*/*"
38161        ],
38162        "description": "list or watch objects of kind CustomResourceDefinition",
38163        "operationId": "listApiextensionsV1CustomResourceDefinition",
38164        "parameters": [
38165          {
38166            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
38167            "in": "query",
38168            "name": "allowWatchBookmarks",
38169            "type": "boolean",
38170            "uniqueItems": true
38171          },
38172          {
38173            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
38174            "in": "query",
38175            "name": "continue",
38176            "type": "string",
38177            "uniqueItems": true
38178          },
38179          {
38180            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
38181            "in": "query",
38182            "name": "fieldSelector",
38183            "type": "string",
38184            "uniqueItems": true
38185          },
38186          {
38187            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
38188            "in": "query",
38189            "name": "labelSelector",
38190            "type": "string",
38191            "uniqueItems": true
38192          },
38193          {
38194            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
38195            "in": "query",
38196            "name": "limit",
38197            "type": "integer",
38198            "uniqueItems": true
38199          },
38200          {
38201            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
38202            "in": "query",
38203            "name": "resourceVersion",
38204            "type": "string",
38205            "uniqueItems": true
38206          },
38207          {
38208            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
38209            "in": "query",
38210            "name": "resourceVersionMatch",
38211            "type": "string",
38212            "uniqueItems": true
38213          },
38214          {
38215            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
38216            "in": "query",
38217            "name": "timeoutSeconds",
38218            "type": "integer",
38219            "uniqueItems": true
38220          },
38221          {
38222            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
38223            "in": "query",
38224            "name": "watch",
38225            "type": "boolean",
38226            "uniqueItems": true
38227          }
38228        ],
38229        "produces": [
38230          "application/json",
38231          "application/yaml",
38232          "application/vnd.kubernetes.protobuf",
38233          "application/json;stream=watch",
38234          "application/vnd.kubernetes.protobuf;stream=watch"
38235        ],
38236        "responses": {
38237          "200": {
38238            "description": "OK",
38239            "schema": {
38240              "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinitionList"
38241            }
38242          },
38243          "401": {
38244            "description": "Unauthorized"
38245          }
38246        },
38247        "schemes": [
38248          "https"
38249        ],
38250        "tags": [
38251          "apiextensions_v1"
38252        ],
38253        "x-kubernetes-action": "list",
38254        "x-kubernetes-group-version-kind": {
38255          "group": "apiextensions.k8s.io",
38256          "kind": "CustomResourceDefinition",
38257          "version": "v1"
38258        }
38259      },
38260      "parameters": [
38261        {
38262          "description": "If 'true', then the output is pretty printed.",
38263          "in": "query",
38264          "name": "pretty",
38265          "type": "string",
38266          "uniqueItems": true
38267        }
38268      ],
38269      "post": {
38270        "consumes": [
38271          "*/*"
38272        ],
38273        "description": "create a CustomResourceDefinition",
38274        "operationId": "createApiextensionsV1CustomResourceDefinition",
38275        "parameters": [
38276          {
38277            "in": "body",
38278            "name": "body",
38279            "required": true,
38280            "schema": {
38281              "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinition"
38282            }
38283          },
38284          {
38285            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
38286            "in": "query",
38287            "name": "dryRun",
38288            "type": "string",
38289            "uniqueItems": true
38290          },
38291          {
38292            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
38293            "in": "query",
38294            "name": "fieldManager",
38295            "type": "string",
38296            "uniqueItems": true
38297          }
38298        ],
38299        "produces": [
38300          "application/json",
38301          "application/yaml",
38302          "application/vnd.kubernetes.protobuf"
38303        ],
38304        "responses": {
38305          "200": {
38306            "description": "OK",
38307            "schema": {
38308              "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinition"
38309            }
38310          },
38311          "201": {
38312            "description": "Created",
38313            "schema": {
38314              "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinition"
38315            }
38316          },
38317          "202": {
38318            "description": "Accepted",
38319            "schema": {
38320              "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinition"
38321            }
38322          },
38323          "401": {
38324            "description": "Unauthorized"
38325          }
38326        },
38327        "schemes": [
38328          "https"
38329        ],
38330        "tags": [
38331          "apiextensions_v1"
38332        ],
38333        "x-kubernetes-action": "post",
38334        "x-kubernetes-group-version-kind": {
38335          "group": "apiextensions.k8s.io",
38336          "kind": "CustomResourceDefinition",
38337          "version": "v1"
38338        }
38339      }
38340    },
38341    "/apis/apiextensions.k8s.io/v1/customresourcedefinitions/{name}": {
38342      "delete": {
38343        "consumes": [
38344          "*/*"
38345        ],
38346        "description": "delete a CustomResourceDefinition",
38347        "operationId": "deleteApiextensionsV1CustomResourceDefinition",
38348        "parameters": [
38349          {
38350            "in": "body",
38351            "name": "body",
38352            "schema": {
38353              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
38354            }
38355          },
38356          {
38357            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
38358            "in": "query",
38359            "name": "dryRun",
38360            "type": "string",
38361            "uniqueItems": true
38362          },
38363          {
38364            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
38365            "in": "query",
38366            "name": "gracePeriodSeconds",
38367            "type": "integer",
38368            "uniqueItems": true
38369          },
38370          {
38371            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
38372            "in": "query",
38373            "name": "orphanDependents",
38374            "type": "boolean",
38375            "uniqueItems": true
38376          },
38377          {
38378            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
38379            "in": "query",
38380            "name": "propagationPolicy",
38381            "type": "string",
38382            "uniqueItems": true
38383          }
38384        ],
38385        "produces": [
38386          "application/json",
38387          "application/yaml",
38388          "application/vnd.kubernetes.protobuf"
38389        ],
38390        "responses": {
38391          "200": {
38392            "description": "OK",
38393            "schema": {
38394              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
38395            }
38396          },
38397          "202": {
38398            "description": "Accepted",
38399            "schema": {
38400              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
38401            }
38402          },
38403          "401": {
38404            "description": "Unauthorized"
38405          }
38406        },
38407        "schemes": [
38408          "https"
38409        ],
38410        "tags": [
38411          "apiextensions_v1"
38412        ],
38413        "x-kubernetes-action": "delete",
38414        "x-kubernetes-group-version-kind": {
38415          "group": "apiextensions.k8s.io",
38416          "kind": "CustomResourceDefinition",
38417          "version": "v1"
38418        }
38419      },
38420      "get": {
38421        "consumes": [
38422          "*/*"
38423        ],
38424        "description": "read the specified CustomResourceDefinition",
38425        "operationId": "readApiextensionsV1CustomResourceDefinition",
38426        "produces": [
38427          "application/json",
38428          "application/yaml",
38429          "application/vnd.kubernetes.protobuf"
38430        ],
38431        "responses": {
38432          "200": {
38433            "description": "OK",
38434            "schema": {
38435              "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinition"
38436            }
38437          },
38438          "401": {
38439            "description": "Unauthorized"
38440          }
38441        },
38442        "schemes": [
38443          "https"
38444        ],
38445        "tags": [
38446          "apiextensions_v1"
38447        ],
38448        "x-kubernetes-action": "get",
38449        "x-kubernetes-group-version-kind": {
38450          "group": "apiextensions.k8s.io",
38451          "kind": "CustomResourceDefinition",
38452          "version": "v1"
38453        }
38454      },
38455      "parameters": [
38456        {
38457          "description": "name of the CustomResourceDefinition",
38458          "in": "path",
38459          "name": "name",
38460          "required": true,
38461          "type": "string",
38462          "uniqueItems": true
38463        },
38464        {
38465          "description": "If 'true', then the output is pretty printed.",
38466          "in": "query",
38467          "name": "pretty",
38468          "type": "string",
38469          "uniqueItems": true
38470        }
38471      ],
38472      "patch": {
38473        "consumes": [
38474          "application/json-patch+json",
38475          "application/merge-patch+json",
38476          "application/strategic-merge-patch+json",
38477          "application/apply-patch+yaml"
38478        ],
38479        "description": "partially update the specified CustomResourceDefinition",
38480        "operationId": "patchApiextensionsV1CustomResourceDefinition",
38481        "parameters": [
38482          {
38483            "in": "body",
38484            "name": "body",
38485            "required": true,
38486            "schema": {
38487              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
38488            }
38489          },
38490          {
38491            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
38492            "in": "query",
38493            "name": "dryRun",
38494            "type": "string",
38495            "uniqueItems": true
38496          },
38497          {
38498            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
38499            "in": "query",
38500            "name": "fieldManager",
38501            "type": "string",
38502            "uniqueItems": true
38503          },
38504          {
38505            "description": "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.",
38506            "in": "query",
38507            "name": "force",
38508            "type": "boolean",
38509            "uniqueItems": true
38510          }
38511        ],
38512        "produces": [
38513          "application/json",
38514          "application/yaml",
38515          "application/vnd.kubernetes.protobuf"
38516        ],
38517        "responses": {
38518          "200": {
38519            "description": "OK",
38520            "schema": {
38521              "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinition"
38522            }
38523          },
38524          "201": {
38525            "description": "Created",
38526            "schema": {
38527              "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinition"
38528            }
38529          },
38530          "401": {
38531            "description": "Unauthorized"
38532          }
38533        },
38534        "schemes": [
38535          "https"
38536        ],
38537        "tags": [
38538          "apiextensions_v1"
38539        ],
38540        "x-kubernetes-action": "patch",
38541        "x-kubernetes-group-version-kind": {
38542          "group": "apiextensions.k8s.io",
38543          "kind": "CustomResourceDefinition",
38544          "version": "v1"
38545        }
38546      },
38547      "put": {
38548        "consumes": [
38549          "*/*"
38550        ],
38551        "description": "replace the specified CustomResourceDefinition",
38552        "operationId": "replaceApiextensionsV1CustomResourceDefinition",
38553        "parameters": [
38554          {
38555            "in": "body",
38556            "name": "body",
38557            "required": true,
38558            "schema": {
38559              "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinition"
38560            }
38561          },
38562          {
38563            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
38564            "in": "query",
38565            "name": "dryRun",
38566            "type": "string",
38567            "uniqueItems": true
38568          },
38569          {
38570            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
38571            "in": "query",
38572            "name": "fieldManager",
38573            "type": "string",
38574            "uniqueItems": true
38575          }
38576        ],
38577        "produces": [
38578          "application/json",
38579          "application/yaml",
38580          "application/vnd.kubernetes.protobuf"
38581        ],
38582        "responses": {
38583          "200": {
38584            "description": "OK",
38585            "schema": {
38586              "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinition"
38587            }
38588          },
38589          "201": {
38590            "description": "Created",
38591            "schema": {
38592              "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinition"
38593            }
38594          },
38595          "401": {
38596            "description": "Unauthorized"
38597          }
38598        },
38599        "schemes": [
38600          "https"
38601        ],
38602        "tags": [
38603          "apiextensions_v1"
38604        ],
38605        "x-kubernetes-action": "put",
38606        "x-kubernetes-group-version-kind": {
38607          "group": "apiextensions.k8s.io",
38608          "kind": "CustomResourceDefinition",
38609          "version": "v1"
38610        }
38611      }
38612    },
38613    "/apis/apiextensions.k8s.io/v1/customresourcedefinitions/{name}/status": {
38614      "get": {
38615        "consumes": [
38616          "*/*"
38617        ],
38618        "description": "read status of the specified CustomResourceDefinition",
38619        "operationId": "readApiextensionsV1CustomResourceDefinitionStatus",
38620        "produces": [
38621          "application/json",
38622          "application/yaml",
38623          "application/vnd.kubernetes.protobuf"
38624        ],
38625        "responses": {
38626          "200": {
38627            "description": "OK",
38628            "schema": {
38629              "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinition"
38630            }
38631          },
38632          "401": {
38633            "description": "Unauthorized"
38634          }
38635        },
38636        "schemes": [
38637          "https"
38638        ],
38639        "tags": [
38640          "apiextensions_v1"
38641        ],
38642        "x-kubernetes-action": "get",
38643        "x-kubernetes-group-version-kind": {
38644          "group": "apiextensions.k8s.io",
38645          "kind": "CustomResourceDefinition",
38646          "version": "v1"
38647        }
38648      },
38649      "parameters": [
38650        {
38651          "description": "name of the CustomResourceDefinition",
38652          "in": "path",
38653          "name": "name",
38654          "required": true,
38655          "type": "string",
38656          "uniqueItems": true
38657        },
38658        {
38659          "description": "If 'true', then the output is pretty printed.",
38660          "in": "query",
38661          "name": "pretty",
38662          "type": "string",
38663          "uniqueItems": true
38664        }
38665      ],
38666      "patch": {
38667        "consumes": [
38668          "application/json-patch+json",
38669          "application/merge-patch+json",
38670          "application/strategic-merge-patch+json",
38671          "application/apply-patch+yaml"
38672        ],
38673        "description": "partially update status of the specified CustomResourceDefinition",
38674        "operationId": "patchApiextensionsV1CustomResourceDefinitionStatus",
38675        "parameters": [
38676          {
38677            "in": "body",
38678            "name": "body",
38679            "required": true,
38680            "schema": {
38681              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
38682            }
38683          },
38684          {
38685            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
38686            "in": "query",
38687            "name": "dryRun",
38688            "type": "string",
38689            "uniqueItems": true
38690          },
38691          {
38692            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
38693            "in": "query",
38694            "name": "fieldManager",
38695            "type": "string",
38696            "uniqueItems": true
38697          },
38698          {
38699            "description": "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.",
38700            "in": "query",
38701            "name": "force",
38702            "type": "boolean",
38703            "uniqueItems": true
38704          }
38705        ],
38706        "produces": [
38707          "application/json",
38708          "application/yaml",
38709          "application/vnd.kubernetes.protobuf"
38710        ],
38711        "responses": {
38712          "200": {
38713            "description": "OK",
38714            "schema": {
38715              "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinition"
38716            }
38717          },
38718          "201": {
38719            "description": "Created",
38720            "schema": {
38721              "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinition"
38722            }
38723          },
38724          "401": {
38725            "description": "Unauthorized"
38726          }
38727        },
38728        "schemes": [
38729          "https"
38730        ],
38731        "tags": [
38732          "apiextensions_v1"
38733        ],
38734        "x-kubernetes-action": "patch",
38735        "x-kubernetes-group-version-kind": {
38736          "group": "apiextensions.k8s.io",
38737          "kind": "CustomResourceDefinition",
38738          "version": "v1"
38739        }
38740      },
38741      "put": {
38742        "consumes": [
38743          "*/*"
38744        ],
38745        "description": "replace status of the specified CustomResourceDefinition",
38746        "operationId": "replaceApiextensionsV1CustomResourceDefinitionStatus",
38747        "parameters": [
38748          {
38749            "in": "body",
38750            "name": "body",
38751            "required": true,
38752            "schema": {
38753              "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinition"
38754            }
38755          },
38756          {
38757            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
38758            "in": "query",
38759            "name": "dryRun",
38760            "type": "string",
38761            "uniqueItems": true
38762          },
38763          {
38764            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
38765            "in": "query",
38766            "name": "fieldManager",
38767            "type": "string",
38768            "uniqueItems": true
38769          }
38770        ],
38771        "produces": [
38772          "application/json",
38773          "application/yaml",
38774          "application/vnd.kubernetes.protobuf"
38775        ],
38776        "responses": {
38777          "200": {
38778            "description": "OK",
38779            "schema": {
38780              "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinition"
38781            }
38782          },
38783          "201": {
38784            "description": "Created",
38785            "schema": {
38786              "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinition"
38787            }
38788          },
38789          "401": {
38790            "description": "Unauthorized"
38791          }
38792        },
38793        "schemes": [
38794          "https"
38795        ],
38796        "tags": [
38797          "apiextensions_v1"
38798        ],
38799        "x-kubernetes-action": "put",
38800        "x-kubernetes-group-version-kind": {
38801          "group": "apiextensions.k8s.io",
38802          "kind": "CustomResourceDefinition",
38803          "version": "v1"
38804        }
38805      }
38806    },
38807    "/apis/apiextensions.k8s.io/v1/watch/customresourcedefinitions": {
38808      "get": {
38809        "consumes": [
38810          "*/*"
38811        ],
38812        "description": "watch individual changes to a list of CustomResourceDefinition. deprecated: use the 'watch' parameter with a list operation instead.",
38813        "operationId": "watchApiextensionsV1CustomResourceDefinitionList",
38814        "produces": [
38815          "application/json",
38816          "application/yaml",
38817          "application/vnd.kubernetes.protobuf",
38818          "application/json;stream=watch",
38819          "application/vnd.kubernetes.protobuf;stream=watch"
38820        ],
38821        "responses": {
38822          "200": {
38823            "description": "OK",
38824            "schema": {
38825              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
38826            }
38827          },
38828          "401": {
38829            "description": "Unauthorized"
38830          }
38831        },
38832        "schemes": [
38833          "https"
38834        ],
38835        "tags": [
38836          "apiextensions_v1"
38837        ],
38838        "x-kubernetes-action": "watchlist",
38839        "x-kubernetes-group-version-kind": {
38840          "group": "apiextensions.k8s.io",
38841          "kind": "CustomResourceDefinition",
38842          "version": "v1"
38843        }
38844      },
38845      "parameters": [
38846        {
38847          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
38848          "in": "query",
38849          "name": "allowWatchBookmarks",
38850          "type": "boolean",
38851          "uniqueItems": true
38852        },
38853        {
38854          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
38855          "in": "query",
38856          "name": "continue",
38857          "type": "string",
38858          "uniqueItems": true
38859        },
38860        {
38861          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
38862          "in": "query",
38863          "name": "fieldSelector",
38864          "type": "string",
38865          "uniqueItems": true
38866        },
38867        {
38868          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
38869          "in": "query",
38870          "name": "labelSelector",
38871          "type": "string",
38872          "uniqueItems": true
38873        },
38874        {
38875          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
38876          "in": "query",
38877          "name": "limit",
38878          "type": "integer",
38879          "uniqueItems": true
38880        },
38881        {
38882          "description": "If 'true', then the output is pretty printed.",
38883          "in": "query",
38884          "name": "pretty",
38885          "type": "string",
38886          "uniqueItems": true
38887        },
38888        {
38889          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
38890          "in": "query",
38891          "name": "resourceVersion",
38892          "type": "string",
38893          "uniqueItems": true
38894        },
38895        {
38896          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
38897          "in": "query",
38898          "name": "resourceVersionMatch",
38899          "type": "string",
38900          "uniqueItems": true
38901        },
38902        {
38903          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
38904          "in": "query",
38905          "name": "timeoutSeconds",
38906          "type": "integer",
38907          "uniqueItems": true
38908        },
38909        {
38910          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
38911          "in": "query",
38912          "name": "watch",
38913          "type": "boolean",
38914          "uniqueItems": true
38915        }
38916      ]
38917    },
38918    "/apis/apiextensions.k8s.io/v1/watch/customresourcedefinitions/{name}": {
38919      "get": {
38920        "consumes": [
38921          "*/*"
38922        ],
38923        "description": "watch changes to an object of kind CustomResourceDefinition. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.",
38924        "operationId": "watchApiextensionsV1CustomResourceDefinition",
38925        "produces": [
38926          "application/json",
38927          "application/yaml",
38928          "application/vnd.kubernetes.protobuf",
38929          "application/json;stream=watch",
38930          "application/vnd.kubernetes.protobuf;stream=watch"
38931        ],
38932        "responses": {
38933          "200": {
38934            "description": "OK",
38935            "schema": {
38936              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
38937            }
38938          },
38939          "401": {
38940            "description": "Unauthorized"
38941          }
38942        },
38943        "schemes": [
38944          "https"
38945        ],
38946        "tags": [
38947          "apiextensions_v1"
38948        ],
38949        "x-kubernetes-action": "watch",
38950        "x-kubernetes-group-version-kind": {
38951          "group": "apiextensions.k8s.io",
38952          "kind": "CustomResourceDefinition",
38953          "version": "v1"
38954        }
38955      },
38956      "parameters": [
38957        {
38958          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
38959          "in": "query",
38960          "name": "allowWatchBookmarks",
38961          "type": "boolean",
38962          "uniqueItems": true
38963        },
38964        {
38965          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
38966          "in": "query",
38967          "name": "continue",
38968          "type": "string",
38969          "uniqueItems": true
38970        },
38971        {
38972          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
38973          "in": "query",
38974          "name": "fieldSelector",
38975          "type": "string",
38976          "uniqueItems": true
38977        },
38978        {
38979          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
38980          "in": "query",
38981          "name": "labelSelector",
38982          "type": "string",
38983          "uniqueItems": true
38984        },
38985        {
38986          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
38987          "in": "query",
38988          "name": "limit",
38989          "type": "integer",
38990          "uniqueItems": true
38991        },
38992        {
38993          "description": "name of the CustomResourceDefinition",
38994          "in": "path",
38995          "name": "name",
38996          "required": true,
38997          "type": "string",
38998          "uniqueItems": true
38999        },
39000        {
39001          "description": "If 'true', then the output is pretty printed.",
39002          "in": "query",
39003          "name": "pretty",
39004          "type": "string",
39005          "uniqueItems": true
39006        },
39007        {
39008          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
39009          "in": "query",
39010          "name": "resourceVersion",
39011          "type": "string",
39012          "uniqueItems": true
39013        },
39014        {
39015          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
39016          "in": "query",
39017          "name": "resourceVersionMatch",
39018          "type": "string",
39019          "uniqueItems": true
39020        },
39021        {
39022          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
39023          "in": "query",
39024          "name": "timeoutSeconds",
39025          "type": "integer",
39026          "uniqueItems": true
39027        },
39028        {
39029          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
39030          "in": "query",
39031          "name": "watch",
39032          "type": "boolean",
39033          "uniqueItems": true
39034        }
39035      ]
39036    },
39037    "/apis/apiregistration.k8s.io/": {
39038      "get": {
39039        "consumes": [
39040          "application/json",
39041          "application/yaml",
39042          "application/vnd.kubernetes.protobuf"
39043        ],
39044        "description": "get information of a group",
39045        "operationId": "getApiregistrationAPIGroup",
39046        "produces": [
39047          "application/json",
39048          "application/yaml",
39049          "application/vnd.kubernetes.protobuf"
39050        ],
39051        "responses": {
39052          "200": {
39053            "description": "OK",
39054            "schema": {
39055              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup"
39056            }
39057          },
39058          "401": {
39059            "description": "Unauthorized"
39060          }
39061        },
39062        "schemes": [
39063          "https"
39064        ],
39065        "tags": [
39066          "apiregistration"
39067        ]
39068      }
39069    },
39070    "/apis/apiregistration.k8s.io/v1/": {
39071      "get": {
39072        "consumes": [
39073          "application/json",
39074          "application/yaml",
39075          "application/vnd.kubernetes.protobuf"
39076        ],
39077        "description": "get available resources",
39078        "operationId": "getApiregistrationV1APIResources",
39079        "produces": [
39080          "application/json",
39081          "application/yaml",
39082          "application/vnd.kubernetes.protobuf"
39083        ],
39084        "responses": {
39085          "200": {
39086            "description": "OK",
39087            "schema": {
39088              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
39089            }
39090          },
39091          "401": {
39092            "description": "Unauthorized"
39093          }
39094        },
39095        "schemes": [
39096          "https"
39097        ],
39098        "tags": [
39099          "apiregistration_v1"
39100        ]
39101      }
39102    },
39103    "/apis/apiregistration.k8s.io/v1/apiservices": {
39104      "delete": {
39105        "consumes": [
39106          "*/*"
39107        ],
39108        "description": "delete collection of APIService",
39109        "operationId": "deleteApiregistrationV1CollectionAPIService",
39110        "parameters": [
39111          {
39112            "in": "body",
39113            "name": "body",
39114            "schema": {
39115              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
39116            }
39117          },
39118          {
39119            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
39120            "in": "query",
39121            "name": "continue",
39122            "type": "string",
39123            "uniqueItems": true
39124          },
39125          {
39126            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
39127            "in": "query",
39128            "name": "dryRun",
39129            "type": "string",
39130            "uniqueItems": true
39131          },
39132          {
39133            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
39134            "in": "query",
39135            "name": "fieldSelector",
39136            "type": "string",
39137            "uniqueItems": true
39138          },
39139          {
39140            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
39141            "in": "query",
39142            "name": "gracePeriodSeconds",
39143            "type": "integer",
39144            "uniqueItems": true
39145          },
39146          {
39147            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
39148            "in": "query",
39149            "name": "labelSelector",
39150            "type": "string",
39151            "uniqueItems": true
39152          },
39153          {
39154            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
39155            "in": "query",
39156            "name": "limit",
39157            "type": "integer",
39158            "uniqueItems": true
39159          },
39160          {
39161            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
39162            "in": "query",
39163            "name": "orphanDependents",
39164            "type": "boolean",
39165            "uniqueItems": true
39166          },
39167          {
39168            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
39169            "in": "query",
39170            "name": "propagationPolicy",
39171            "type": "string",
39172            "uniqueItems": true
39173          },
39174          {
39175            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
39176            "in": "query",
39177            "name": "resourceVersion",
39178            "type": "string",
39179            "uniqueItems": true
39180          },
39181          {
39182            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
39183            "in": "query",
39184            "name": "resourceVersionMatch",
39185            "type": "string",
39186            "uniqueItems": true
39187          },
39188          {
39189            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
39190            "in": "query",
39191            "name": "timeoutSeconds",
39192            "type": "integer",
39193            "uniqueItems": true
39194          }
39195        ],
39196        "produces": [
39197          "application/json",
39198          "application/yaml",
39199          "application/vnd.kubernetes.protobuf"
39200        ],
39201        "responses": {
39202          "200": {
39203            "description": "OK",
39204            "schema": {
39205              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
39206            }
39207          },
39208          "401": {
39209            "description": "Unauthorized"
39210          }
39211        },
39212        "schemes": [
39213          "https"
39214        ],
39215        "tags": [
39216          "apiregistration_v1"
39217        ],
39218        "x-kubernetes-action": "deletecollection",
39219        "x-kubernetes-group-version-kind": {
39220          "group": "apiregistration.k8s.io",
39221          "kind": "APIService",
39222          "version": "v1"
39223        }
39224      },
39225      "get": {
39226        "consumes": [
39227          "*/*"
39228        ],
39229        "description": "list or watch objects of kind APIService",
39230        "operationId": "listApiregistrationV1APIService",
39231        "parameters": [
39232          {
39233            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
39234            "in": "query",
39235            "name": "allowWatchBookmarks",
39236            "type": "boolean",
39237            "uniqueItems": true
39238          },
39239          {
39240            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
39241            "in": "query",
39242            "name": "continue",
39243            "type": "string",
39244            "uniqueItems": true
39245          },
39246          {
39247            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
39248            "in": "query",
39249            "name": "fieldSelector",
39250            "type": "string",
39251            "uniqueItems": true
39252          },
39253          {
39254            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
39255            "in": "query",
39256            "name": "labelSelector",
39257            "type": "string",
39258            "uniqueItems": true
39259          },
39260          {
39261            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
39262            "in": "query",
39263            "name": "limit",
39264            "type": "integer",
39265            "uniqueItems": true
39266          },
39267          {
39268            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
39269            "in": "query",
39270            "name": "resourceVersion",
39271            "type": "string",
39272            "uniqueItems": true
39273          },
39274          {
39275            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
39276            "in": "query",
39277            "name": "resourceVersionMatch",
39278            "type": "string",
39279            "uniqueItems": true
39280          },
39281          {
39282            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
39283            "in": "query",
39284            "name": "timeoutSeconds",
39285            "type": "integer",
39286            "uniqueItems": true
39287          },
39288          {
39289            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
39290            "in": "query",
39291            "name": "watch",
39292            "type": "boolean",
39293            "uniqueItems": true
39294          }
39295        ],
39296        "produces": [
39297          "application/json",
39298          "application/yaml",
39299          "application/vnd.kubernetes.protobuf",
39300          "application/json;stream=watch",
39301          "application/vnd.kubernetes.protobuf;stream=watch"
39302        ],
39303        "responses": {
39304          "200": {
39305            "description": "OK",
39306            "schema": {
39307              "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIServiceList"
39308            }
39309          },
39310          "401": {
39311            "description": "Unauthorized"
39312          }
39313        },
39314        "schemes": [
39315          "https"
39316        ],
39317        "tags": [
39318          "apiregistration_v1"
39319        ],
39320        "x-kubernetes-action": "list",
39321        "x-kubernetes-group-version-kind": {
39322          "group": "apiregistration.k8s.io",
39323          "kind": "APIService",
39324          "version": "v1"
39325        }
39326      },
39327      "parameters": [
39328        {
39329          "description": "If 'true', then the output is pretty printed.",
39330          "in": "query",
39331          "name": "pretty",
39332          "type": "string",
39333          "uniqueItems": true
39334        }
39335      ],
39336      "post": {
39337        "consumes": [
39338          "*/*"
39339        ],
39340        "description": "create an APIService",
39341        "operationId": "createApiregistrationV1APIService",
39342        "parameters": [
39343          {
39344            "in": "body",
39345            "name": "body",
39346            "required": true,
39347            "schema": {
39348              "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService"
39349            }
39350          },
39351          {
39352            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
39353            "in": "query",
39354            "name": "dryRun",
39355            "type": "string",
39356            "uniqueItems": true
39357          },
39358          {
39359            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
39360            "in": "query",
39361            "name": "fieldManager",
39362            "type": "string",
39363            "uniqueItems": true
39364          }
39365        ],
39366        "produces": [
39367          "application/json",
39368          "application/yaml",
39369          "application/vnd.kubernetes.protobuf"
39370        ],
39371        "responses": {
39372          "200": {
39373            "description": "OK",
39374            "schema": {
39375              "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService"
39376            }
39377          },
39378          "201": {
39379            "description": "Created",
39380            "schema": {
39381              "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService"
39382            }
39383          },
39384          "202": {
39385            "description": "Accepted",
39386            "schema": {
39387              "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService"
39388            }
39389          },
39390          "401": {
39391            "description": "Unauthorized"
39392          }
39393        },
39394        "schemes": [
39395          "https"
39396        ],
39397        "tags": [
39398          "apiregistration_v1"
39399        ],
39400        "x-kubernetes-action": "post",
39401        "x-kubernetes-group-version-kind": {
39402          "group": "apiregistration.k8s.io",
39403          "kind": "APIService",
39404          "version": "v1"
39405        }
39406      }
39407    },
39408    "/apis/apiregistration.k8s.io/v1/apiservices/{name}": {
39409      "delete": {
39410        "consumes": [
39411          "*/*"
39412        ],
39413        "description": "delete an APIService",
39414        "operationId": "deleteApiregistrationV1APIService",
39415        "parameters": [
39416          {
39417            "in": "body",
39418            "name": "body",
39419            "schema": {
39420              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
39421            }
39422          },
39423          {
39424            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
39425            "in": "query",
39426            "name": "dryRun",
39427            "type": "string",
39428            "uniqueItems": true
39429          },
39430          {
39431            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
39432            "in": "query",
39433            "name": "gracePeriodSeconds",
39434            "type": "integer",
39435            "uniqueItems": true
39436          },
39437          {
39438            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
39439            "in": "query",
39440            "name": "orphanDependents",
39441            "type": "boolean",
39442            "uniqueItems": true
39443          },
39444          {
39445            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
39446            "in": "query",
39447            "name": "propagationPolicy",
39448            "type": "string",
39449            "uniqueItems": true
39450          }
39451        ],
39452        "produces": [
39453          "application/json",
39454          "application/yaml",
39455          "application/vnd.kubernetes.protobuf"
39456        ],
39457        "responses": {
39458          "200": {
39459            "description": "OK",
39460            "schema": {
39461              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
39462            }
39463          },
39464          "202": {
39465            "description": "Accepted",
39466            "schema": {
39467              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
39468            }
39469          },
39470          "401": {
39471            "description": "Unauthorized"
39472          }
39473        },
39474        "schemes": [
39475          "https"
39476        ],
39477        "tags": [
39478          "apiregistration_v1"
39479        ],
39480        "x-kubernetes-action": "delete",
39481        "x-kubernetes-group-version-kind": {
39482          "group": "apiregistration.k8s.io",
39483          "kind": "APIService",
39484          "version": "v1"
39485        }
39486      },
39487      "get": {
39488        "consumes": [
39489          "*/*"
39490        ],
39491        "description": "read the specified APIService",
39492        "operationId": "readApiregistrationV1APIService",
39493        "produces": [
39494          "application/json",
39495          "application/yaml",
39496          "application/vnd.kubernetes.protobuf"
39497        ],
39498        "responses": {
39499          "200": {
39500            "description": "OK",
39501            "schema": {
39502              "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService"
39503            }
39504          },
39505          "401": {
39506            "description": "Unauthorized"
39507          }
39508        },
39509        "schemes": [
39510          "https"
39511        ],
39512        "tags": [
39513          "apiregistration_v1"
39514        ],
39515        "x-kubernetes-action": "get",
39516        "x-kubernetes-group-version-kind": {
39517          "group": "apiregistration.k8s.io",
39518          "kind": "APIService",
39519          "version": "v1"
39520        }
39521      },
39522      "parameters": [
39523        {
39524          "description": "name of the APIService",
39525          "in": "path",
39526          "name": "name",
39527          "required": true,
39528          "type": "string",
39529          "uniqueItems": true
39530        },
39531        {
39532          "description": "If 'true', then the output is pretty printed.",
39533          "in": "query",
39534          "name": "pretty",
39535          "type": "string",
39536          "uniqueItems": true
39537        }
39538      ],
39539      "patch": {
39540        "consumes": [
39541          "application/json-patch+json",
39542          "application/merge-patch+json",
39543          "application/strategic-merge-patch+json",
39544          "application/apply-patch+yaml"
39545        ],
39546        "description": "partially update the specified APIService",
39547        "operationId": "patchApiregistrationV1APIService",
39548        "parameters": [
39549          {
39550            "in": "body",
39551            "name": "body",
39552            "required": true,
39553            "schema": {
39554              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
39555            }
39556          },
39557          {
39558            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
39559            "in": "query",
39560            "name": "dryRun",
39561            "type": "string",
39562            "uniqueItems": true
39563          },
39564          {
39565            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
39566            "in": "query",
39567            "name": "fieldManager",
39568            "type": "string",
39569            "uniqueItems": true
39570          },
39571          {
39572            "description": "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.",
39573            "in": "query",
39574            "name": "force",
39575            "type": "boolean",
39576            "uniqueItems": true
39577          }
39578        ],
39579        "produces": [
39580          "application/json",
39581          "application/yaml",
39582          "application/vnd.kubernetes.protobuf"
39583        ],
39584        "responses": {
39585          "200": {
39586            "description": "OK",
39587            "schema": {
39588              "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService"
39589            }
39590          },
39591          "201": {
39592            "description": "Created",
39593            "schema": {
39594              "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService"
39595            }
39596          },
39597          "401": {
39598            "description": "Unauthorized"
39599          }
39600        },
39601        "schemes": [
39602          "https"
39603        ],
39604        "tags": [
39605          "apiregistration_v1"
39606        ],
39607        "x-kubernetes-action": "patch",
39608        "x-kubernetes-group-version-kind": {
39609          "group": "apiregistration.k8s.io",
39610          "kind": "APIService",
39611          "version": "v1"
39612        }
39613      },
39614      "put": {
39615        "consumes": [
39616          "*/*"
39617        ],
39618        "description": "replace the specified APIService",
39619        "operationId": "replaceApiregistrationV1APIService",
39620        "parameters": [
39621          {
39622            "in": "body",
39623            "name": "body",
39624            "required": true,
39625            "schema": {
39626              "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService"
39627            }
39628          },
39629          {
39630            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
39631            "in": "query",
39632            "name": "dryRun",
39633            "type": "string",
39634            "uniqueItems": true
39635          },
39636          {
39637            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
39638            "in": "query",
39639            "name": "fieldManager",
39640            "type": "string",
39641            "uniqueItems": true
39642          }
39643        ],
39644        "produces": [
39645          "application/json",
39646          "application/yaml",
39647          "application/vnd.kubernetes.protobuf"
39648        ],
39649        "responses": {
39650          "200": {
39651            "description": "OK",
39652            "schema": {
39653              "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService"
39654            }
39655          },
39656          "201": {
39657            "description": "Created",
39658            "schema": {
39659              "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService"
39660            }
39661          },
39662          "401": {
39663            "description": "Unauthorized"
39664          }
39665        },
39666        "schemes": [
39667          "https"
39668        ],
39669        "tags": [
39670          "apiregistration_v1"
39671        ],
39672        "x-kubernetes-action": "put",
39673        "x-kubernetes-group-version-kind": {
39674          "group": "apiregistration.k8s.io",
39675          "kind": "APIService",
39676          "version": "v1"
39677        }
39678      }
39679    },
39680    "/apis/apiregistration.k8s.io/v1/apiservices/{name}/status": {
39681      "get": {
39682        "consumes": [
39683          "*/*"
39684        ],
39685        "description": "read status of the specified APIService",
39686        "operationId": "readApiregistrationV1APIServiceStatus",
39687        "produces": [
39688          "application/json",
39689          "application/yaml",
39690          "application/vnd.kubernetes.protobuf"
39691        ],
39692        "responses": {
39693          "200": {
39694            "description": "OK",
39695            "schema": {
39696              "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService"
39697            }
39698          },
39699          "401": {
39700            "description": "Unauthorized"
39701          }
39702        },
39703        "schemes": [
39704          "https"
39705        ],
39706        "tags": [
39707          "apiregistration_v1"
39708        ],
39709        "x-kubernetes-action": "get",
39710        "x-kubernetes-group-version-kind": {
39711          "group": "apiregistration.k8s.io",
39712          "kind": "APIService",
39713          "version": "v1"
39714        }
39715      },
39716      "parameters": [
39717        {
39718          "description": "name of the APIService",
39719          "in": "path",
39720          "name": "name",
39721          "required": true,
39722          "type": "string",
39723          "uniqueItems": true
39724        },
39725        {
39726          "description": "If 'true', then the output is pretty printed.",
39727          "in": "query",
39728          "name": "pretty",
39729          "type": "string",
39730          "uniqueItems": true
39731        }
39732      ],
39733      "patch": {
39734        "consumes": [
39735          "application/json-patch+json",
39736          "application/merge-patch+json",
39737          "application/strategic-merge-patch+json",
39738          "application/apply-patch+yaml"
39739        ],
39740        "description": "partially update status of the specified APIService",
39741        "operationId": "patchApiregistrationV1APIServiceStatus",
39742        "parameters": [
39743          {
39744            "in": "body",
39745            "name": "body",
39746            "required": true,
39747            "schema": {
39748              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
39749            }
39750          },
39751          {
39752            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
39753            "in": "query",
39754            "name": "dryRun",
39755            "type": "string",
39756            "uniqueItems": true
39757          },
39758          {
39759            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
39760            "in": "query",
39761            "name": "fieldManager",
39762            "type": "string",
39763            "uniqueItems": true
39764          },
39765          {
39766            "description": "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.",
39767            "in": "query",
39768            "name": "force",
39769            "type": "boolean",
39770            "uniqueItems": true
39771          }
39772        ],
39773        "produces": [
39774          "application/json",
39775          "application/yaml",
39776          "application/vnd.kubernetes.protobuf"
39777        ],
39778        "responses": {
39779          "200": {
39780            "description": "OK",
39781            "schema": {
39782              "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService"
39783            }
39784          },
39785          "201": {
39786            "description": "Created",
39787            "schema": {
39788              "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService"
39789            }
39790          },
39791          "401": {
39792            "description": "Unauthorized"
39793          }
39794        },
39795        "schemes": [
39796          "https"
39797        ],
39798        "tags": [
39799          "apiregistration_v1"
39800        ],
39801        "x-kubernetes-action": "patch",
39802        "x-kubernetes-group-version-kind": {
39803          "group": "apiregistration.k8s.io",
39804          "kind": "APIService",
39805          "version": "v1"
39806        }
39807      },
39808      "put": {
39809        "consumes": [
39810          "*/*"
39811        ],
39812        "description": "replace status of the specified APIService",
39813        "operationId": "replaceApiregistrationV1APIServiceStatus",
39814        "parameters": [
39815          {
39816            "in": "body",
39817            "name": "body",
39818            "required": true,
39819            "schema": {
39820              "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService"
39821            }
39822          },
39823          {
39824            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
39825            "in": "query",
39826            "name": "dryRun",
39827            "type": "string",
39828            "uniqueItems": true
39829          },
39830          {
39831            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
39832            "in": "query",
39833            "name": "fieldManager",
39834            "type": "string",
39835            "uniqueItems": true
39836          }
39837        ],
39838        "produces": [
39839          "application/json",
39840          "application/yaml",
39841          "application/vnd.kubernetes.protobuf"
39842        ],
39843        "responses": {
39844          "200": {
39845            "description": "OK",
39846            "schema": {
39847              "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService"
39848            }
39849          },
39850          "201": {
39851            "description": "Created",
39852            "schema": {
39853              "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService"
39854            }
39855          },
39856          "401": {
39857            "description": "Unauthorized"
39858          }
39859        },
39860        "schemes": [
39861          "https"
39862        ],
39863        "tags": [
39864          "apiregistration_v1"
39865        ],
39866        "x-kubernetes-action": "put",
39867        "x-kubernetes-group-version-kind": {
39868          "group": "apiregistration.k8s.io",
39869          "kind": "APIService",
39870          "version": "v1"
39871        }
39872      }
39873    },
39874    "/apis/apiregistration.k8s.io/v1/watch/apiservices": {
39875      "get": {
39876        "consumes": [
39877          "*/*"
39878        ],
39879        "description": "watch individual changes to a list of APIService. deprecated: use the 'watch' parameter with a list operation instead.",
39880        "operationId": "watchApiregistrationV1APIServiceList",
39881        "produces": [
39882          "application/json",
39883          "application/yaml",
39884          "application/vnd.kubernetes.protobuf",
39885          "application/json;stream=watch",
39886          "application/vnd.kubernetes.protobuf;stream=watch"
39887        ],
39888        "responses": {
39889          "200": {
39890            "description": "OK",
39891            "schema": {
39892              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
39893            }
39894          },
39895          "401": {
39896            "description": "Unauthorized"
39897          }
39898        },
39899        "schemes": [
39900          "https"
39901        ],
39902        "tags": [
39903          "apiregistration_v1"
39904        ],
39905        "x-kubernetes-action": "watchlist",
39906        "x-kubernetes-group-version-kind": {
39907          "group": "apiregistration.k8s.io",
39908          "kind": "APIService",
39909          "version": "v1"
39910        }
39911      },
39912      "parameters": [
39913        {
39914          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
39915          "in": "query",
39916          "name": "allowWatchBookmarks",
39917          "type": "boolean",
39918          "uniqueItems": true
39919        },
39920        {
39921          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
39922          "in": "query",
39923          "name": "continue",
39924          "type": "string",
39925          "uniqueItems": true
39926        },
39927        {
39928          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
39929          "in": "query",
39930          "name": "fieldSelector",
39931          "type": "string",
39932          "uniqueItems": true
39933        },
39934        {
39935          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
39936          "in": "query",
39937          "name": "labelSelector",
39938          "type": "string",
39939          "uniqueItems": true
39940        },
39941        {
39942          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
39943          "in": "query",
39944          "name": "limit",
39945          "type": "integer",
39946          "uniqueItems": true
39947        },
39948        {
39949          "description": "If 'true', then the output is pretty printed.",
39950          "in": "query",
39951          "name": "pretty",
39952          "type": "string",
39953          "uniqueItems": true
39954        },
39955        {
39956          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
39957          "in": "query",
39958          "name": "resourceVersion",
39959          "type": "string",
39960          "uniqueItems": true
39961        },
39962        {
39963          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
39964          "in": "query",
39965          "name": "resourceVersionMatch",
39966          "type": "string",
39967          "uniqueItems": true
39968        },
39969        {
39970          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
39971          "in": "query",
39972          "name": "timeoutSeconds",
39973          "type": "integer",
39974          "uniqueItems": true
39975        },
39976        {
39977          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
39978          "in": "query",
39979          "name": "watch",
39980          "type": "boolean",
39981          "uniqueItems": true
39982        }
39983      ]
39984    },
39985    "/apis/apiregistration.k8s.io/v1/watch/apiservices/{name}": {
39986      "get": {
39987        "consumes": [
39988          "*/*"
39989        ],
39990        "description": "watch changes to an object of kind APIService. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.",
39991        "operationId": "watchApiregistrationV1APIService",
39992        "produces": [
39993          "application/json",
39994          "application/yaml",
39995          "application/vnd.kubernetes.protobuf",
39996          "application/json;stream=watch",
39997          "application/vnd.kubernetes.protobuf;stream=watch"
39998        ],
39999        "responses": {
40000          "200": {
40001            "description": "OK",
40002            "schema": {
40003              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
40004            }
40005          },
40006          "401": {
40007            "description": "Unauthorized"
40008          }
40009        },
40010        "schemes": [
40011          "https"
40012        ],
40013        "tags": [
40014          "apiregistration_v1"
40015        ],
40016        "x-kubernetes-action": "watch",
40017        "x-kubernetes-group-version-kind": {
40018          "group": "apiregistration.k8s.io",
40019          "kind": "APIService",
40020          "version": "v1"
40021        }
40022      },
40023      "parameters": [
40024        {
40025          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
40026          "in": "query",
40027          "name": "allowWatchBookmarks",
40028          "type": "boolean",
40029          "uniqueItems": true
40030        },
40031        {
40032          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
40033          "in": "query",
40034          "name": "continue",
40035          "type": "string",
40036          "uniqueItems": true
40037        },
40038        {
40039          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
40040          "in": "query",
40041          "name": "fieldSelector",
40042          "type": "string",
40043          "uniqueItems": true
40044        },
40045        {
40046          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
40047          "in": "query",
40048          "name": "labelSelector",
40049          "type": "string",
40050          "uniqueItems": true
40051        },
40052        {
40053          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
40054          "in": "query",
40055          "name": "limit",
40056          "type": "integer",
40057          "uniqueItems": true
40058        },
40059        {
40060          "description": "name of the APIService",
40061          "in": "path",
40062          "name": "name",
40063          "required": true,
40064          "type": "string",
40065          "uniqueItems": true
40066        },
40067        {
40068          "description": "If 'true', then the output is pretty printed.",
40069          "in": "query",
40070          "name": "pretty",
40071          "type": "string",
40072          "uniqueItems": true
40073        },
40074        {
40075          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
40076          "in": "query",
40077          "name": "resourceVersion",
40078          "type": "string",
40079          "uniqueItems": true
40080        },
40081        {
40082          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
40083          "in": "query",
40084          "name": "resourceVersionMatch",
40085          "type": "string",
40086          "uniqueItems": true
40087        },
40088        {
40089          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
40090          "in": "query",
40091          "name": "timeoutSeconds",
40092          "type": "integer",
40093          "uniqueItems": true
40094        },
40095        {
40096          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
40097          "in": "query",
40098          "name": "watch",
40099          "type": "boolean",
40100          "uniqueItems": true
40101        }
40102      ]
40103    },
40104    "/apis/apps/": {
40105      "get": {
40106        "consumes": [
40107          "application/json",
40108          "application/yaml",
40109          "application/vnd.kubernetes.protobuf"
40110        ],
40111        "description": "get information of a group",
40112        "operationId": "getAppsAPIGroup",
40113        "produces": [
40114          "application/json",
40115          "application/yaml",
40116          "application/vnd.kubernetes.protobuf"
40117        ],
40118        "responses": {
40119          "200": {
40120            "description": "OK",
40121            "schema": {
40122              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup"
40123            }
40124          },
40125          "401": {
40126            "description": "Unauthorized"
40127          }
40128        },
40129        "schemes": [
40130          "https"
40131        ],
40132        "tags": [
40133          "apps"
40134        ]
40135      }
40136    },
40137    "/apis/apps/v1/": {
40138      "get": {
40139        "consumes": [
40140          "application/json",
40141          "application/yaml",
40142          "application/vnd.kubernetes.protobuf"
40143        ],
40144        "description": "get available resources",
40145        "operationId": "getAppsV1APIResources",
40146        "produces": [
40147          "application/json",
40148          "application/yaml",
40149          "application/vnd.kubernetes.protobuf"
40150        ],
40151        "responses": {
40152          "200": {
40153            "description": "OK",
40154            "schema": {
40155              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
40156            }
40157          },
40158          "401": {
40159            "description": "Unauthorized"
40160          }
40161        },
40162        "schemes": [
40163          "https"
40164        ],
40165        "tags": [
40166          "apps_v1"
40167        ]
40168      }
40169    },
40170    "/apis/apps/v1/controllerrevisions": {
40171      "get": {
40172        "consumes": [
40173          "*/*"
40174        ],
40175        "description": "list or watch objects of kind ControllerRevision",
40176        "operationId": "listAppsV1ControllerRevisionForAllNamespaces",
40177        "produces": [
40178          "application/json",
40179          "application/yaml",
40180          "application/vnd.kubernetes.protobuf",
40181          "application/json;stream=watch",
40182          "application/vnd.kubernetes.protobuf;stream=watch"
40183        ],
40184        "responses": {
40185          "200": {
40186            "description": "OK",
40187            "schema": {
40188              "$ref": "#/definitions/io.k8s.api.apps.v1.ControllerRevisionList"
40189            }
40190          },
40191          "401": {
40192            "description": "Unauthorized"
40193          }
40194        },
40195        "schemes": [
40196          "https"
40197        ],
40198        "tags": [
40199          "apps_v1"
40200        ],
40201        "x-kubernetes-action": "list",
40202        "x-kubernetes-group-version-kind": {
40203          "group": "apps",
40204          "kind": "ControllerRevision",
40205          "version": "v1"
40206        }
40207      },
40208      "parameters": [
40209        {
40210          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
40211          "in": "query",
40212          "name": "allowWatchBookmarks",
40213          "type": "boolean",
40214          "uniqueItems": true
40215        },
40216        {
40217          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
40218          "in": "query",
40219          "name": "continue",
40220          "type": "string",
40221          "uniqueItems": true
40222        },
40223        {
40224          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
40225          "in": "query",
40226          "name": "fieldSelector",
40227          "type": "string",
40228          "uniqueItems": true
40229        },
40230        {
40231          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
40232          "in": "query",
40233          "name": "labelSelector",
40234          "type": "string",
40235          "uniqueItems": true
40236        },
40237        {
40238          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
40239          "in": "query",
40240          "name": "limit",
40241          "type": "integer",
40242          "uniqueItems": true
40243        },
40244        {
40245          "description": "If 'true', then the output is pretty printed.",
40246          "in": "query",
40247          "name": "pretty",
40248          "type": "string",
40249          "uniqueItems": true
40250        },
40251        {
40252          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
40253          "in": "query",
40254          "name": "resourceVersion",
40255          "type": "string",
40256          "uniqueItems": true
40257        },
40258        {
40259          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
40260          "in": "query",
40261          "name": "resourceVersionMatch",
40262          "type": "string",
40263          "uniqueItems": true
40264        },
40265        {
40266          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
40267          "in": "query",
40268          "name": "timeoutSeconds",
40269          "type": "integer",
40270          "uniqueItems": true
40271        },
40272        {
40273          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
40274          "in": "query",
40275          "name": "watch",
40276          "type": "boolean",
40277          "uniqueItems": true
40278        }
40279      ]
40280    },
40281    "/apis/apps/v1/daemonsets": {
40282      "get": {
40283        "consumes": [
40284          "*/*"
40285        ],
40286        "description": "list or watch objects of kind DaemonSet",
40287        "operationId": "listAppsV1DaemonSetForAllNamespaces",
40288        "produces": [
40289          "application/json",
40290          "application/yaml",
40291          "application/vnd.kubernetes.protobuf",
40292          "application/json;stream=watch",
40293          "application/vnd.kubernetes.protobuf;stream=watch"
40294        ],
40295        "responses": {
40296          "200": {
40297            "description": "OK",
40298            "schema": {
40299              "$ref": "#/definitions/io.k8s.api.apps.v1.DaemonSetList"
40300            }
40301          },
40302          "401": {
40303            "description": "Unauthorized"
40304          }
40305        },
40306        "schemes": [
40307          "https"
40308        ],
40309        "tags": [
40310          "apps_v1"
40311        ],
40312        "x-kubernetes-action": "list",
40313        "x-kubernetes-group-version-kind": {
40314          "group": "apps",
40315          "kind": "DaemonSet",
40316          "version": "v1"
40317        }
40318      },
40319      "parameters": [
40320        {
40321          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
40322          "in": "query",
40323          "name": "allowWatchBookmarks",
40324          "type": "boolean",
40325          "uniqueItems": true
40326        },
40327        {
40328          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
40329          "in": "query",
40330          "name": "continue",
40331          "type": "string",
40332          "uniqueItems": true
40333        },
40334        {
40335          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
40336          "in": "query",
40337          "name": "fieldSelector",
40338          "type": "string",
40339          "uniqueItems": true
40340        },
40341        {
40342          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
40343          "in": "query",
40344          "name": "labelSelector",
40345          "type": "string",
40346          "uniqueItems": true
40347        },
40348        {
40349          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
40350          "in": "query",
40351          "name": "limit",
40352          "type": "integer",
40353          "uniqueItems": true
40354        },
40355        {
40356          "description": "If 'true', then the output is pretty printed.",
40357          "in": "query",
40358          "name": "pretty",
40359          "type": "string",
40360          "uniqueItems": true
40361        },
40362        {
40363          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
40364          "in": "query",
40365          "name": "resourceVersion",
40366          "type": "string",
40367          "uniqueItems": true
40368        },
40369        {
40370          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
40371          "in": "query",
40372          "name": "resourceVersionMatch",
40373          "type": "string",
40374          "uniqueItems": true
40375        },
40376        {
40377          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
40378          "in": "query",
40379          "name": "timeoutSeconds",
40380          "type": "integer",
40381          "uniqueItems": true
40382        },
40383        {
40384          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
40385          "in": "query",
40386          "name": "watch",
40387          "type": "boolean",
40388          "uniqueItems": true
40389        }
40390      ]
40391    },
40392    "/apis/apps/v1/deployments": {
40393      "get": {
40394        "consumes": [
40395          "*/*"
40396        ],
40397        "description": "list or watch objects of kind Deployment",
40398        "operationId": "listAppsV1DeploymentForAllNamespaces",
40399        "produces": [
40400          "application/json",
40401          "application/yaml",
40402          "application/vnd.kubernetes.protobuf",
40403          "application/json;stream=watch",
40404          "application/vnd.kubernetes.protobuf;stream=watch"
40405        ],
40406        "responses": {
40407          "200": {
40408            "description": "OK",
40409            "schema": {
40410              "$ref": "#/definitions/io.k8s.api.apps.v1.DeploymentList"
40411            }
40412          },
40413          "401": {
40414            "description": "Unauthorized"
40415          }
40416        },
40417        "schemes": [
40418          "https"
40419        ],
40420        "tags": [
40421          "apps_v1"
40422        ],
40423        "x-kubernetes-action": "list",
40424        "x-kubernetes-group-version-kind": {
40425          "group": "apps",
40426          "kind": "Deployment",
40427          "version": "v1"
40428        }
40429      },
40430      "parameters": [
40431        {
40432          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
40433          "in": "query",
40434          "name": "allowWatchBookmarks",
40435          "type": "boolean",
40436          "uniqueItems": true
40437        },
40438        {
40439          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
40440          "in": "query",
40441          "name": "continue",
40442          "type": "string",
40443          "uniqueItems": true
40444        },
40445        {
40446          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
40447          "in": "query",
40448          "name": "fieldSelector",
40449          "type": "string",
40450          "uniqueItems": true
40451        },
40452        {
40453          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
40454          "in": "query",
40455          "name": "labelSelector",
40456          "type": "string",
40457          "uniqueItems": true
40458        },
40459        {
40460          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
40461          "in": "query",
40462          "name": "limit",
40463          "type": "integer",
40464          "uniqueItems": true
40465        },
40466        {
40467          "description": "If 'true', then the output is pretty printed.",
40468          "in": "query",
40469          "name": "pretty",
40470          "type": "string",
40471          "uniqueItems": true
40472        },
40473        {
40474          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
40475          "in": "query",
40476          "name": "resourceVersion",
40477          "type": "string",
40478          "uniqueItems": true
40479        },
40480        {
40481          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
40482          "in": "query",
40483          "name": "resourceVersionMatch",
40484          "type": "string",
40485          "uniqueItems": true
40486        },
40487        {
40488          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
40489          "in": "query",
40490          "name": "timeoutSeconds",
40491          "type": "integer",
40492          "uniqueItems": true
40493        },
40494        {
40495          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
40496          "in": "query",
40497          "name": "watch",
40498          "type": "boolean",
40499          "uniqueItems": true
40500        }
40501      ]
40502    },
40503    "/apis/apps/v1/namespaces/{namespace}/controllerrevisions": {
40504      "delete": {
40505        "consumes": [
40506          "*/*"
40507        ],
40508        "description": "delete collection of ControllerRevision",
40509        "operationId": "deleteAppsV1CollectionNamespacedControllerRevision",
40510        "parameters": [
40511          {
40512            "in": "body",
40513            "name": "body",
40514            "schema": {
40515              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
40516            }
40517          },
40518          {
40519            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
40520            "in": "query",
40521            "name": "continue",
40522            "type": "string",
40523            "uniqueItems": true
40524          },
40525          {
40526            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
40527            "in": "query",
40528            "name": "dryRun",
40529            "type": "string",
40530            "uniqueItems": true
40531          },
40532          {
40533            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
40534            "in": "query",
40535            "name": "fieldSelector",
40536            "type": "string",
40537            "uniqueItems": true
40538          },
40539          {
40540            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
40541            "in": "query",
40542            "name": "gracePeriodSeconds",
40543            "type": "integer",
40544            "uniqueItems": true
40545          },
40546          {
40547            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
40548            "in": "query",
40549            "name": "labelSelector",
40550            "type": "string",
40551            "uniqueItems": true
40552          },
40553          {
40554            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
40555            "in": "query",
40556            "name": "limit",
40557            "type": "integer",
40558            "uniqueItems": true
40559          },
40560          {
40561            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
40562            "in": "query",
40563            "name": "orphanDependents",
40564            "type": "boolean",
40565            "uniqueItems": true
40566          },
40567          {
40568            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
40569            "in": "query",
40570            "name": "propagationPolicy",
40571            "type": "string",
40572            "uniqueItems": true
40573          },
40574          {
40575            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
40576            "in": "query",
40577            "name": "resourceVersion",
40578            "type": "string",
40579            "uniqueItems": true
40580          },
40581          {
40582            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
40583            "in": "query",
40584            "name": "resourceVersionMatch",
40585            "type": "string",
40586            "uniqueItems": true
40587          },
40588          {
40589            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
40590            "in": "query",
40591            "name": "timeoutSeconds",
40592            "type": "integer",
40593            "uniqueItems": true
40594          }
40595        ],
40596        "produces": [
40597          "application/json",
40598          "application/yaml",
40599          "application/vnd.kubernetes.protobuf"
40600        ],
40601        "responses": {
40602          "200": {
40603            "description": "OK",
40604            "schema": {
40605              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
40606            }
40607          },
40608          "401": {
40609            "description": "Unauthorized"
40610          }
40611        },
40612        "schemes": [
40613          "https"
40614        ],
40615        "tags": [
40616          "apps_v1"
40617        ],
40618        "x-kubernetes-action": "deletecollection",
40619        "x-kubernetes-group-version-kind": {
40620          "group": "apps",
40621          "kind": "ControllerRevision",
40622          "version": "v1"
40623        }
40624      },
40625      "get": {
40626        "consumes": [
40627          "*/*"
40628        ],
40629        "description": "list or watch objects of kind ControllerRevision",
40630        "operationId": "listAppsV1NamespacedControllerRevision",
40631        "parameters": [
40632          {
40633            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
40634            "in": "query",
40635            "name": "allowWatchBookmarks",
40636            "type": "boolean",
40637            "uniqueItems": true
40638          },
40639          {
40640            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
40641            "in": "query",
40642            "name": "continue",
40643            "type": "string",
40644            "uniqueItems": true
40645          },
40646          {
40647            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
40648            "in": "query",
40649            "name": "fieldSelector",
40650            "type": "string",
40651            "uniqueItems": true
40652          },
40653          {
40654            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
40655            "in": "query",
40656            "name": "labelSelector",
40657            "type": "string",
40658            "uniqueItems": true
40659          },
40660          {
40661            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
40662            "in": "query",
40663            "name": "limit",
40664            "type": "integer",
40665            "uniqueItems": true
40666          },
40667          {
40668            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
40669            "in": "query",
40670            "name": "resourceVersion",
40671            "type": "string",
40672            "uniqueItems": true
40673          },
40674          {
40675            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
40676            "in": "query",
40677            "name": "resourceVersionMatch",
40678            "type": "string",
40679            "uniqueItems": true
40680          },
40681          {
40682            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
40683            "in": "query",
40684            "name": "timeoutSeconds",
40685            "type": "integer",
40686            "uniqueItems": true
40687          },
40688          {
40689            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
40690            "in": "query",
40691            "name": "watch",
40692            "type": "boolean",
40693            "uniqueItems": true
40694          }
40695        ],
40696        "produces": [
40697          "application/json",
40698          "application/yaml",
40699          "application/vnd.kubernetes.protobuf",
40700          "application/json;stream=watch",
40701          "application/vnd.kubernetes.protobuf;stream=watch"
40702        ],
40703        "responses": {
40704          "200": {
40705            "description": "OK",
40706            "schema": {
40707              "$ref": "#/definitions/io.k8s.api.apps.v1.ControllerRevisionList"
40708            }
40709          },
40710          "401": {
40711            "description": "Unauthorized"
40712          }
40713        },
40714        "schemes": [
40715          "https"
40716        ],
40717        "tags": [
40718          "apps_v1"
40719        ],
40720        "x-kubernetes-action": "list",
40721        "x-kubernetes-group-version-kind": {
40722          "group": "apps",
40723          "kind": "ControllerRevision",
40724          "version": "v1"
40725        }
40726      },
40727      "parameters": [
40728        {
40729          "description": "object name and auth scope, such as for teams and projects",
40730          "in": "path",
40731          "name": "namespace",
40732          "required": true,
40733          "type": "string",
40734          "uniqueItems": true
40735        },
40736        {
40737          "description": "If 'true', then the output is pretty printed.",
40738          "in": "query",
40739          "name": "pretty",
40740          "type": "string",
40741          "uniqueItems": true
40742        }
40743      ],
40744      "post": {
40745        "consumes": [
40746          "*/*"
40747        ],
40748        "description": "create a ControllerRevision",
40749        "operationId": "createAppsV1NamespacedControllerRevision",
40750        "parameters": [
40751          {
40752            "in": "body",
40753            "name": "body",
40754            "required": true,
40755            "schema": {
40756              "$ref": "#/definitions/io.k8s.api.apps.v1.ControllerRevision"
40757            }
40758          },
40759          {
40760            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
40761            "in": "query",
40762            "name": "dryRun",
40763            "type": "string",
40764            "uniqueItems": true
40765          },
40766          {
40767            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
40768            "in": "query",
40769            "name": "fieldManager",
40770            "type": "string",
40771            "uniqueItems": true
40772          }
40773        ],
40774        "produces": [
40775          "application/json",
40776          "application/yaml",
40777          "application/vnd.kubernetes.protobuf"
40778        ],
40779        "responses": {
40780          "200": {
40781            "description": "OK",
40782            "schema": {
40783              "$ref": "#/definitions/io.k8s.api.apps.v1.ControllerRevision"
40784            }
40785          },
40786          "201": {
40787            "description": "Created",
40788            "schema": {
40789              "$ref": "#/definitions/io.k8s.api.apps.v1.ControllerRevision"
40790            }
40791          },
40792          "202": {
40793            "description": "Accepted",
40794            "schema": {
40795              "$ref": "#/definitions/io.k8s.api.apps.v1.ControllerRevision"
40796            }
40797          },
40798          "401": {
40799            "description": "Unauthorized"
40800          }
40801        },
40802        "schemes": [
40803          "https"
40804        ],
40805        "tags": [
40806          "apps_v1"
40807        ],
40808        "x-kubernetes-action": "post",
40809        "x-kubernetes-group-version-kind": {
40810          "group": "apps",
40811          "kind": "ControllerRevision",
40812          "version": "v1"
40813        }
40814      }
40815    },
40816    "/apis/apps/v1/namespaces/{namespace}/controllerrevisions/{name}": {
40817      "delete": {
40818        "consumes": [
40819          "*/*"
40820        ],
40821        "description": "delete a ControllerRevision",
40822        "operationId": "deleteAppsV1NamespacedControllerRevision",
40823        "parameters": [
40824          {
40825            "in": "body",
40826            "name": "body",
40827            "schema": {
40828              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
40829            }
40830          },
40831          {
40832            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
40833            "in": "query",
40834            "name": "dryRun",
40835            "type": "string",
40836            "uniqueItems": true
40837          },
40838          {
40839            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
40840            "in": "query",
40841            "name": "gracePeriodSeconds",
40842            "type": "integer",
40843            "uniqueItems": true
40844          },
40845          {
40846            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
40847            "in": "query",
40848            "name": "orphanDependents",
40849            "type": "boolean",
40850            "uniqueItems": true
40851          },
40852          {
40853            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
40854            "in": "query",
40855            "name": "propagationPolicy",
40856            "type": "string",
40857            "uniqueItems": true
40858          }
40859        ],
40860        "produces": [
40861          "application/json",
40862          "application/yaml",
40863          "application/vnd.kubernetes.protobuf"
40864        ],
40865        "responses": {
40866          "200": {
40867            "description": "OK",
40868            "schema": {
40869              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
40870            }
40871          },
40872          "202": {
40873            "description": "Accepted",
40874            "schema": {
40875              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
40876            }
40877          },
40878          "401": {
40879            "description": "Unauthorized"
40880          }
40881        },
40882        "schemes": [
40883          "https"
40884        ],
40885        "tags": [
40886          "apps_v1"
40887        ],
40888        "x-kubernetes-action": "delete",
40889        "x-kubernetes-group-version-kind": {
40890          "group": "apps",
40891          "kind": "ControllerRevision",
40892          "version": "v1"
40893        }
40894      },
40895      "get": {
40896        "consumes": [
40897          "*/*"
40898        ],
40899        "description": "read the specified ControllerRevision",
40900        "operationId": "readAppsV1NamespacedControllerRevision",
40901        "produces": [
40902          "application/json",
40903          "application/yaml",
40904          "application/vnd.kubernetes.protobuf"
40905        ],
40906        "responses": {
40907          "200": {
40908            "description": "OK",
40909            "schema": {
40910              "$ref": "#/definitions/io.k8s.api.apps.v1.ControllerRevision"
40911            }
40912          },
40913          "401": {
40914            "description": "Unauthorized"
40915          }
40916        },
40917        "schemes": [
40918          "https"
40919        ],
40920        "tags": [
40921          "apps_v1"
40922        ],
40923        "x-kubernetes-action": "get",
40924        "x-kubernetes-group-version-kind": {
40925          "group": "apps",
40926          "kind": "ControllerRevision",
40927          "version": "v1"
40928        }
40929      },
40930      "parameters": [
40931        {
40932          "description": "name of the ControllerRevision",
40933          "in": "path",
40934          "name": "name",
40935          "required": true,
40936          "type": "string",
40937          "uniqueItems": true
40938        },
40939        {
40940          "description": "object name and auth scope, such as for teams and projects",
40941          "in": "path",
40942          "name": "namespace",
40943          "required": true,
40944          "type": "string",
40945          "uniqueItems": true
40946        },
40947        {
40948          "description": "If 'true', then the output is pretty printed.",
40949          "in": "query",
40950          "name": "pretty",
40951          "type": "string",
40952          "uniqueItems": true
40953        }
40954      ],
40955      "patch": {
40956        "consumes": [
40957          "application/json-patch+json",
40958          "application/merge-patch+json",
40959          "application/strategic-merge-patch+json",
40960          "application/apply-patch+yaml"
40961        ],
40962        "description": "partially update the specified ControllerRevision",
40963        "operationId": "patchAppsV1NamespacedControllerRevision",
40964        "parameters": [
40965          {
40966            "in": "body",
40967            "name": "body",
40968            "required": true,
40969            "schema": {
40970              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
40971            }
40972          },
40973          {
40974            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
40975            "in": "query",
40976            "name": "dryRun",
40977            "type": "string",
40978            "uniqueItems": true
40979          },
40980          {
40981            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
40982            "in": "query",
40983            "name": "fieldManager",
40984            "type": "string",
40985            "uniqueItems": true
40986          },
40987          {
40988            "description": "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.",
40989            "in": "query",
40990            "name": "force",
40991            "type": "boolean",
40992            "uniqueItems": true
40993          }
40994        ],
40995        "produces": [
40996          "application/json",
40997          "application/yaml",
40998          "application/vnd.kubernetes.protobuf"
40999        ],
41000        "responses": {
41001          "200": {
41002            "description": "OK",
41003            "schema": {
41004              "$ref": "#/definitions/io.k8s.api.apps.v1.ControllerRevision"
41005            }
41006          },
41007          "201": {
41008            "description": "Created",
41009            "schema": {
41010              "$ref": "#/definitions/io.k8s.api.apps.v1.ControllerRevision"
41011            }
41012          },
41013          "401": {
41014            "description": "Unauthorized"
41015          }
41016        },
41017        "schemes": [
41018          "https"
41019        ],
41020        "tags": [
41021          "apps_v1"
41022        ],
41023        "x-kubernetes-action": "patch",
41024        "x-kubernetes-group-version-kind": {
41025          "group": "apps",
41026          "kind": "ControllerRevision",
41027          "version": "v1"
41028        }
41029      },
41030      "put": {
41031        "consumes": [
41032          "*/*"
41033        ],
41034        "description": "replace the specified ControllerRevision",
41035        "operationId": "replaceAppsV1NamespacedControllerRevision",
41036        "parameters": [
41037          {
41038            "in": "body",
41039            "name": "body",
41040            "required": true,
41041            "schema": {
41042              "$ref": "#/definitions/io.k8s.api.apps.v1.ControllerRevision"
41043            }
41044          },
41045          {
41046            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
41047            "in": "query",
41048            "name": "dryRun",
41049            "type": "string",
41050            "uniqueItems": true
41051          },
41052          {
41053            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
41054            "in": "query",
41055            "name": "fieldManager",
41056            "type": "string",
41057            "uniqueItems": true
41058          }
41059        ],
41060        "produces": [
41061          "application/json",
41062          "application/yaml",
41063          "application/vnd.kubernetes.protobuf"
41064        ],
41065        "responses": {
41066          "200": {
41067            "description": "OK",
41068            "schema": {
41069              "$ref": "#/definitions/io.k8s.api.apps.v1.ControllerRevision"
41070            }
41071          },
41072          "201": {
41073            "description": "Created",
41074            "schema": {
41075              "$ref": "#/definitions/io.k8s.api.apps.v1.ControllerRevision"
41076            }
41077          },
41078          "401": {
41079            "description": "Unauthorized"
41080          }
41081        },
41082        "schemes": [
41083          "https"
41084        ],
41085        "tags": [
41086          "apps_v1"
41087        ],
41088        "x-kubernetes-action": "put",
41089        "x-kubernetes-group-version-kind": {
41090          "group": "apps",
41091          "kind": "ControllerRevision",
41092          "version": "v1"
41093        }
41094      }
41095    },
41096    "/apis/apps/v1/namespaces/{namespace}/daemonsets": {
41097      "delete": {
41098        "consumes": [
41099          "*/*"
41100        ],
41101        "description": "delete collection of DaemonSet",
41102        "operationId": "deleteAppsV1CollectionNamespacedDaemonSet",
41103        "parameters": [
41104          {
41105            "in": "body",
41106            "name": "body",
41107            "schema": {
41108              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
41109            }
41110          },
41111          {
41112            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
41113            "in": "query",
41114            "name": "continue",
41115            "type": "string",
41116            "uniqueItems": true
41117          },
41118          {
41119            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
41120            "in": "query",
41121            "name": "dryRun",
41122            "type": "string",
41123            "uniqueItems": true
41124          },
41125          {
41126            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
41127            "in": "query",
41128            "name": "fieldSelector",
41129            "type": "string",
41130            "uniqueItems": true
41131          },
41132          {
41133            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
41134            "in": "query",
41135            "name": "gracePeriodSeconds",
41136            "type": "integer",
41137            "uniqueItems": true
41138          },
41139          {
41140            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
41141            "in": "query",
41142            "name": "labelSelector",
41143            "type": "string",
41144            "uniqueItems": true
41145          },
41146          {
41147            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
41148            "in": "query",
41149            "name": "limit",
41150            "type": "integer",
41151            "uniqueItems": true
41152          },
41153          {
41154            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
41155            "in": "query",
41156            "name": "orphanDependents",
41157            "type": "boolean",
41158            "uniqueItems": true
41159          },
41160          {
41161            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
41162            "in": "query",
41163            "name": "propagationPolicy",
41164            "type": "string",
41165            "uniqueItems": true
41166          },
41167          {
41168            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
41169            "in": "query",
41170            "name": "resourceVersion",
41171            "type": "string",
41172            "uniqueItems": true
41173          },
41174          {
41175            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
41176            "in": "query",
41177            "name": "resourceVersionMatch",
41178            "type": "string",
41179            "uniqueItems": true
41180          },
41181          {
41182            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
41183            "in": "query",
41184            "name": "timeoutSeconds",
41185            "type": "integer",
41186            "uniqueItems": true
41187          }
41188        ],
41189        "produces": [
41190          "application/json",
41191          "application/yaml",
41192          "application/vnd.kubernetes.protobuf"
41193        ],
41194        "responses": {
41195          "200": {
41196            "description": "OK",
41197            "schema": {
41198              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
41199            }
41200          },
41201          "401": {
41202            "description": "Unauthorized"
41203          }
41204        },
41205        "schemes": [
41206          "https"
41207        ],
41208        "tags": [
41209          "apps_v1"
41210        ],
41211        "x-kubernetes-action": "deletecollection",
41212        "x-kubernetes-group-version-kind": {
41213          "group": "apps",
41214          "kind": "DaemonSet",
41215          "version": "v1"
41216        }
41217      },
41218      "get": {
41219        "consumes": [
41220          "*/*"
41221        ],
41222        "description": "list or watch objects of kind DaemonSet",
41223        "operationId": "listAppsV1NamespacedDaemonSet",
41224        "parameters": [
41225          {
41226            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
41227            "in": "query",
41228            "name": "allowWatchBookmarks",
41229            "type": "boolean",
41230            "uniqueItems": true
41231          },
41232          {
41233            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
41234            "in": "query",
41235            "name": "continue",
41236            "type": "string",
41237            "uniqueItems": true
41238          },
41239          {
41240            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
41241            "in": "query",
41242            "name": "fieldSelector",
41243            "type": "string",
41244            "uniqueItems": true
41245          },
41246          {
41247            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
41248            "in": "query",
41249            "name": "labelSelector",
41250            "type": "string",
41251            "uniqueItems": true
41252          },
41253          {
41254            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
41255            "in": "query",
41256            "name": "limit",
41257            "type": "integer",
41258            "uniqueItems": true
41259          },
41260          {
41261            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
41262            "in": "query",
41263            "name": "resourceVersion",
41264            "type": "string",
41265            "uniqueItems": true
41266          },
41267          {
41268            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
41269            "in": "query",
41270            "name": "resourceVersionMatch",
41271            "type": "string",
41272            "uniqueItems": true
41273          },
41274          {
41275            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
41276            "in": "query",
41277            "name": "timeoutSeconds",
41278            "type": "integer",
41279            "uniqueItems": true
41280          },
41281          {
41282            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
41283            "in": "query",
41284            "name": "watch",
41285            "type": "boolean",
41286            "uniqueItems": true
41287          }
41288        ],
41289        "produces": [
41290          "application/json",
41291          "application/yaml",
41292          "application/vnd.kubernetes.protobuf",
41293          "application/json;stream=watch",
41294          "application/vnd.kubernetes.protobuf;stream=watch"
41295        ],
41296        "responses": {
41297          "200": {
41298            "description": "OK",
41299            "schema": {
41300              "$ref": "#/definitions/io.k8s.api.apps.v1.DaemonSetList"
41301            }
41302          },
41303          "401": {
41304            "description": "Unauthorized"
41305          }
41306        },
41307        "schemes": [
41308          "https"
41309        ],
41310        "tags": [
41311          "apps_v1"
41312        ],
41313        "x-kubernetes-action": "list",
41314        "x-kubernetes-group-version-kind": {
41315          "group": "apps",
41316          "kind": "DaemonSet",
41317          "version": "v1"
41318        }
41319      },
41320      "parameters": [
41321        {
41322          "description": "object name and auth scope, such as for teams and projects",
41323          "in": "path",
41324          "name": "namespace",
41325          "required": true,
41326          "type": "string",
41327          "uniqueItems": true
41328        },
41329        {
41330          "description": "If 'true', then the output is pretty printed.",
41331          "in": "query",
41332          "name": "pretty",
41333          "type": "string",
41334          "uniqueItems": true
41335        }
41336      ],
41337      "post": {
41338        "consumes": [
41339          "*/*"
41340        ],
41341        "description": "create a DaemonSet",
41342        "operationId": "createAppsV1NamespacedDaemonSet",
41343        "parameters": [
41344          {
41345            "in": "body",
41346            "name": "body",
41347            "required": true,
41348            "schema": {
41349              "$ref": "#/definitions/io.k8s.api.apps.v1.DaemonSet"
41350            }
41351          },
41352          {
41353            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
41354            "in": "query",
41355            "name": "dryRun",
41356            "type": "string",
41357            "uniqueItems": true
41358          },
41359          {
41360            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
41361            "in": "query",
41362            "name": "fieldManager",
41363            "type": "string",
41364            "uniqueItems": true
41365          }
41366        ],
41367        "produces": [
41368          "application/json",
41369          "application/yaml",
41370          "application/vnd.kubernetes.protobuf"
41371        ],
41372        "responses": {
41373          "200": {
41374            "description": "OK",
41375            "schema": {
41376              "$ref": "#/definitions/io.k8s.api.apps.v1.DaemonSet"
41377            }
41378          },
41379          "201": {
41380            "description": "Created",
41381            "schema": {
41382              "$ref": "#/definitions/io.k8s.api.apps.v1.DaemonSet"
41383            }
41384          },
41385          "202": {
41386            "description": "Accepted",
41387            "schema": {
41388              "$ref": "#/definitions/io.k8s.api.apps.v1.DaemonSet"
41389            }
41390          },
41391          "401": {
41392            "description": "Unauthorized"
41393          }
41394        },
41395        "schemes": [
41396          "https"
41397        ],
41398        "tags": [
41399          "apps_v1"
41400        ],
41401        "x-kubernetes-action": "post",
41402        "x-kubernetes-group-version-kind": {
41403          "group": "apps",
41404          "kind": "DaemonSet",
41405          "version": "v1"
41406        }
41407      }
41408    },
41409    "/apis/apps/v1/namespaces/{namespace}/daemonsets/{name}": {
41410      "delete": {
41411        "consumes": [
41412          "*/*"
41413        ],
41414        "description": "delete a DaemonSet",
41415        "operationId": "deleteAppsV1NamespacedDaemonSet",
41416        "parameters": [
41417          {
41418            "in": "body",
41419            "name": "body",
41420            "schema": {
41421              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
41422            }
41423          },
41424          {
41425            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
41426            "in": "query",
41427            "name": "dryRun",
41428            "type": "string",
41429            "uniqueItems": true
41430          },
41431          {
41432            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
41433            "in": "query",
41434            "name": "gracePeriodSeconds",
41435            "type": "integer",
41436            "uniqueItems": true
41437          },
41438          {
41439            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
41440            "in": "query",
41441            "name": "orphanDependents",
41442            "type": "boolean",
41443            "uniqueItems": true
41444          },
41445          {
41446            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
41447            "in": "query",
41448            "name": "propagationPolicy",
41449            "type": "string",
41450            "uniqueItems": true
41451          }
41452        ],
41453        "produces": [
41454          "application/json",
41455          "application/yaml",
41456          "application/vnd.kubernetes.protobuf"
41457        ],
41458        "responses": {
41459          "200": {
41460            "description": "OK",
41461            "schema": {
41462              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
41463            }
41464          },
41465          "202": {
41466            "description": "Accepted",
41467            "schema": {
41468              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
41469            }
41470          },
41471          "401": {
41472            "description": "Unauthorized"
41473          }
41474        },
41475        "schemes": [
41476          "https"
41477        ],
41478        "tags": [
41479          "apps_v1"
41480        ],
41481        "x-kubernetes-action": "delete",
41482        "x-kubernetes-group-version-kind": {
41483          "group": "apps",
41484          "kind": "DaemonSet",
41485          "version": "v1"
41486        }
41487      },
41488      "get": {
41489        "consumes": [
41490          "*/*"
41491        ],
41492        "description": "read the specified DaemonSet",
41493        "operationId": "readAppsV1NamespacedDaemonSet",
41494        "produces": [
41495          "application/json",
41496          "application/yaml",
41497          "application/vnd.kubernetes.protobuf"
41498        ],
41499        "responses": {
41500          "200": {
41501            "description": "OK",
41502            "schema": {
41503              "$ref": "#/definitions/io.k8s.api.apps.v1.DaemonSet"
41504            }
41505          },
41506          "401": {
41507            "description": "Unauthorized"
41508          }
41509        },
41510        "schemes": [
41511          "https"
41512        ],
41513        "tags": [
41514          "apps_v1"
41515        ],
41516        "x-kubernetes-action": "get",
41517        "x-kubernetes-group-version-kind": {
41518          "group": "apps",
41519          "kind": "DaemonSet",
41520          "version": "v1"
41521        }
41522      },
41523      "parameters": [
41524        {
41525          "description": "name of the DaemonSet",
41526          "in": "path",
41527          "name": "name",
41528          "required": true,
41529          "type": "string",
41530          "uniqueItems": true
41531        },
41532        {
41533          "description": "object name and auth scope, such as for teams and projects",
41534          "in": "path",
41535          "name": "namespace",
41536          "required": true,
41537          "type": "string",
41538          "uniqueItems": true
41539        },
41540        {
41541          "description": "If 'true', then the output is pretty printed.",
41542          "in": "query",
41543          "name": "pretty",
41544          "type": "string",
41545          "uniqueItems": true
41546        }
41547      ],
41548      "patch": {
41549        "consumes": [
41550          "application/json-patch+json",
41551          "application/merge-patch+json",
41552          "application/strategic-merge-patch+json",
41553          "application/apply-patch+yaml"
41554        ],
41555        "description": "partially update the specified DaemonSet",
41556        "operationId": "patchAppsV1NamespacedDaemonSet",
41557        "parameters": [
41558          {
41559            "in": "body",
41560            "name": "body",
41561            "required": true,
41562            "schema": {
41563              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
41564            }
41565          },
41566          {
41567            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
41568            "in": "query",
41569            "name": "dryRun",
41570            "type": "string",
41571            "uniqueItems": true
41572          },
41573          {
41574            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
41575            "in": "query",
41576            "name": "fieldManager",
41577            "type": "string",
41578            "uniqueItems": true
41579          },
41580          {
41581            "description": "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.",
41582            "in": "query",
41583            "name": "force",
41584            "type": "boolean",
41585            "uniqueItems": true
41586          }
41587        ],
41588        "produces": [
41589          "application/json",
41590          "application/yaml",
41591          "application/vnd.kubernetes.protobuf"
41592        ],
41593        "responses": {
41594          "200": {
41595            "description": "OK",
41596            "schema": {
41597              "$ref": "#/definitions/io.k8s.api.apps.v1.DaemonSet"
41598            }
41599          },
41600          "201": {
41601            "description": "Created",
41602            "schema": {
41603              "$ref": "#/definitions/io.k8s.api.apps.v1.DaemonSet"
41604            }
41605          },
41606          "401": {
41607            "description": "Unauthorized"
41608          }
41609        },
41610        "schemes": [
41611          "https"
41612        ],
41613        "tags": [
41614          "apps_v1"
41615        ],
41616        "x-kubernetes-action": "patch",
41617        "x-kubernetes-group-version-kind": {
41618          "group": "apps",
41619          "kind": "DaemonSet",
41620          "version": "v1"
41621        }
41622      },
41623      "put": {
41624        "consumes": [
41625          "*/*"
41626        ],
41627        "description": "replace the specified DaemonSet",
41628        "operationId": "replaceAppsV1NamespacedDaemonSet",
41629        "parameters": [
41630          {
41631            "in": "body",
41632            "name": "body",
41633            "required": true,
41634            "schema": {
41635              "$ref": "#/definitions/io.k8s.api.apps.v1.DaemonSet"
41636            }
41637          },
41638          {
41639            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
41640            "in": "query",
41641            "name": "dryRun",
41642            "type": "string",
41643            "uniqueItems": true
41644          },
41645          {
41646            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
41647            "in": "query",
41648            "name": "fieldManager",
41649            "type": "string",
41650            "uniqueItems": true
41651          }
41652        ],
41653        "produces": [
41654          "application/json",
41655          "application/yaml",
41656          "application/vnd.kubernetes.protobuf"
41657        ],
41658        "responses": {
41659          "200": {
41660            "description": "OK",
41661            "schema": {
41662              "$ref": "#/definitions/io.k8s.api.apps.v1.DaemonSet"
41663            }
41664          },
41665          "201": {
41666            "description": "Created",
41667            "schema": {
41668              "$ref": "#/definitions/io.k8s.api.apps.v1.DaemonSet"
41669            }
41670          },
41671          "401": {
41672            "description": "Unauthorized"
41673          }
41674        },
41675        "schemes": [
41676          "https"
41677        ],
41678        "tags": [
41679          "apps_v1"
41680        ],
41681        "x-kubernetes-action": "put",
41682        "x-kubernetes-group-version-kind": {
41683          "group": "apps",
41684          "kind": "DaemonSet",
41685          "version": "v1"
41686        }
41687      }
41688    },
41689    "/apis/apps/v1/namespaces/{namespace}/daemonsets/{name}/status": {
41690      "get": {
41691        "consumes": [
41692          "*/*"
41693        ],
41694        "description": "read status of the specified DaemonSet",
41695        "operationId": "readAppsV1NamespacedDaemonSetStatus",
41696        "produces": [
41697          "application/json",
41698          "application/yaml",
41699          "application/vnd.kubernetes.protobuf"
41700        ],
41701        "responses": {
41702          "200": {
41703            "description": "OK",
41704            "schema": {
41705              "$ref": "#/definitions/io.k8s.api.apps.v1.DaemonSet"
41706            }
41707          },
41708          "401": {
41709            "description": "Unauthorized"
41710          }
41711        },
41712        "schemes": [
41713          "https"
41714        ],
41715        "tags": [
41716          "apps_v1"
41717        ],
41718        "x-kubernetes-action": "get",
41719        "x-kubernetes-group-version-kind": {
41720          "group": "apps",
41721          "kind": "DaemonSet",
41722          "version": "v1"
41723        }
41724      },
41725      "parameters": [
41726        {
41727          "description": "name of the DaemonSet",
41728          "in": "path",
41729          "name": "name",
41730          "required": true,
41731          "type": "string",
41732          "uniqueItems": true
41733        },
41734        {
41735          "description": "object name and auth scope, such as for teams and projects",
41736          "in": "path",
41737          "name": "namespace",
41738          "required": true,
41739          "type": "string",
41740          "uniqueItems": true
41741        },
41742        {
41743          "description": "If 'true', then the output is pretty printed.",
41744          "in": "query",
41745          "name": "pretty",
41746          "type": "string",
41747          "uniqueItems": true
41748        }
41749      ],
41750      "patch": {
41751        "consumes": [
41752          "application/json-patch+json",
41753          "application/merge-patch+json",
41754          "application/strategic-merge-patch+json",
41755          "application/apply-patch+yaml"
41756        ],
41757        "description": "partially update status of the specified DaemonSet",
41758        "operationId": "patchAppsV1NamespacedDaemonSetStatus",
41759        "parameters": [
41760          {
41761            "in": "body",
41762            "name": "body",
41763            "required": true,
41764            "schema": {
41765              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
41766            }
41767          },
41768          {
41769            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
41770            "in": "query",
41771            "name": "dryRun",
41772            "type": "string",
41773            "uniqueItems": true
41774          },
41775          {
41776            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
41777            "in": "query",
41778            "name": "fieldManager",
41779            "type": "string",
41780            "uniqueItems": true
41781          },
41782          {
41783            "description": "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.",
41784            "in": "query",
41785            "name": "force",
41786            "type": "boolean",
41787            "uniqueItems": true
41788          }
41789        ],
41790        "produces": [
41791          "application/json",
41792          "application/yaml",
41793          "application/vnd.kubernetes.protobuf"
41794        ],
41795        "responses": {
41796          "200": {
41797            "description": "OK",
41798            "schema": {
41799              "$ref": "#/definitions/io.k8s.api.apps.v1.DaemonSet"
41800            }
41801          },
41802          "201": {
41803            "description": "Created",
41804            "schema": {
41805              "$ref": "#/definitions/io.k8s.api.apps.v1.DaemonSet"
41806            }
41807          },
41808          "401": {
41809            "description": "Unauthorized"
41810          }
41811        },
41812        "schemes": [
41813          "https"
41814        ],
41815        "tags": [
41816          "apps_v1"
41817        ],
41818        "x-kubernetes-action": "patch",
41819        "x-kubernetes-group-version-kind": {
41820          "group": "apps",
41821          "kind": "DaemonSet",
41822          "version": "v1"
41823        }
41824      },
41825      "put": {
41826        "consumes": [
41827          "*/*"
41828        ],
41829        "description": "replace status of the specified DaemonSet",
41830        "operationId": "replaceAppsV1NamespacedDaemonSetStatus",
41831        "parameters": [
41832          {
41833            "in": "body",
41834            "name": "body",
41835            "required": true,
41836            "schema": {
41837              "$ref": "#/definitions/io.k8s.api.apps.v1.DaemonSet"
41838            }
41839          },
41840          {
41841            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
41842            "in": "query",
41843            "name": "dryRun",
41844            "type": "string",
41845            "uniqueItems": true
41846          },
41847          {
41848            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
41849            "in": "query",
41850            "name": "fieldManager",
41851            "type": "string",
41852            "uniqueItems": true
41853          }
41854        ],
41855        "produces": [
41856          "application/json",
41857          "application/yaml",
41858          "application/vnd.kubernetes.protobuf"
41859        ],
41860        "responses": {
41861          "200": {
41862            "description": "OK",
41863            "schema": {
41864              "$ref": "#/definitions/io.k8s.api.apps.v1.DaemonSet"
41865            }
41866          },
41867          "201": {
41868            "description": "Created",
41869            "schema": {
41870              "$ref": "#/definitions/io.k8s.api.apps.v1.DaemonSet"
41871            }
41872          },
41873          "401": {
41874            "description": "Unauthorized"
41875          }
41876        },
41877        "schemes": [
41878          "https"
41879        ],
41880        "tags": [
41881          "apps_v1"
41882        ],
41883        "x-kubernetes-action": "put",
41884        "x-kubernetes-group-version-kind": {
41885          "group": "apps",
41886          "kind": "DaemonSet",
41887          "version": "v1"
41888        }
41889      }
41890    },
41891    "/apis/apps/v1/namespaces/{namespace}/deployments": {
41892      "delete": {
41893        "consumes": [
41894          "*/*"
41895        ],
41896        "description": "delete collection of Deployment",
41897        "operationId": "deleteAppsV1CollectionNamespacedDeployment",
41898        "parameters": [
41899          {
41900            "in": "body",
41901            "name": "body",
41902            "schema": {
41903              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
41904            }
41905          },
41906          {
41907            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
41908            "in": "query",
41909            "name": "continue",
41910            "type": "string",
41911            "uniqueItems": true
41912          },
41913          {
41914            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
41915            "in": "query",
41916            "name": "dryRun",
41917            "type": "string",
41918            "uniqueItems": true
41919          },
41920          {
41921            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
41922            "in": "query",
41923            "name": "fieldSelector",
41924            "type": "string",
41925            "uniqueItems": true
41926          },
41927          {
41928            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
41929            "in": "query",
41930            "name": "gracePeriodSeconds",
41931            "type": "integer",
41932            "uniqueItems": true
41933          },
41934          {
41935            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
41936            "in": "query",
41937            "name": "labelSelector",
41938            "type": "string",
41939            "uniqueItems": true
41940          },
41941          {
41942            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
41943            "in": "query",
41944            "name": "limit",
41945            "type": "integer",
41946            "uniqueItems": true
41947          },
41948          {
41949            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
41950            "in": "query",
41951            "name": "orphanDependents",
41952            "type": "boolean",
41953            "uniqueItems": true
41954          },
41955          {
41956            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
41957            "in": "query",
41958            "name": "propagationPolicy",
41959            "type": "string",
41960            "uniqueItems": true
41961          },
41962          {
41963            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
41964            "in": "query",
41965            "name": "resourceVersion",
41966            "type": "string",
41967            "uniqueItems": true
41968          },
41969          {
41970            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
41971            "in": "query",
41972            "name": "resourceVersionMatch",
41973            "type": "string",
41974            "uniqueItems": true
41975          },
41976          {
41977            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
41978            "in": "query",
41979            "name": "timeoutSeconds",
41980            "type": "integer",
41981            "uniqueItems": true
41982          }
41983        ],
41984        "produces": [
41985          "application/json",
41986          "application/yaml",
41987          "application/vnd.kubernetes.protobuf"
41988        ],
41989        "responses": {
41990          "200": {
41991            "description": "OK",
41992            "schema": {
41993              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
41994            }
41995          },
41996          "401": {
41997            "description": "Unauthorized"
41998          }
41999        },
42000        "schemes": [
42001          "https"
42002        ],
42003        "tags": [
42004          "apps_v1"
42005        ],
42006        "x-kubernetes-action": "deletecollection",
42007        "x-kubernetes-group-version-kind": {
42008          "group": "apps",
42009          "kind": "Deployment",
42010          "version": "v1"
42011        }
42012      },
42013      "get": {
42014        "consumes": [
42015          "*/*"
42016        ],
42017        "description": "list or watch objects of kind Deployment",
42018        "operationId": "listAppsV1NamespacedDeployment",
42019        "parameters": [
42020          {
42021            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
42022            "in": "query",
42023            "name": "allowWatchBookmarks",
42024            "type": "boolean",
42025            "uniqueItems": true
42026          },
42027          {
42028            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
42029            "in": "query",
42030            "name": "continue",
42031            "type": "string",
42032            "uniqueItems": true
42033          },
42034          {
42035            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
42036            "in": "query",
42037            "name": "fieldSelector",
42038            "type": "string",
42039            "uniqueItems": true
42040          },
42041          {
42042            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
42043            "in": "query",
42044            "name": "labelSelector",
42045            "type": "string",
42046            "uniqueItems": true
42047          },
42048          {
42049            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
42050            "in": "query",
42051            "name": "limit",
42052            "type": "integer",
42053            "uniqueItems": true
42054          },
42055          {
42056            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
42057            "in": "query",
42058            "name": "resourceVersion",
42059            "type": "string",
42060            "uniqueItems": true
42061          },
42062          {
42063            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
42064            "in": "query",
42065            "name": "resourceVersionMatch",
42066            "type": "string",
42067            "uniqueItems": true
42068          },
42069          {
42070            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
42071            "in": "query",
42072            "name": "timeoutSeconds",
42073            "type": "integer",
42074            "uniqueItems": true
42075          },
42076          {
42077            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
42078            "in": "query",
42079            "name": "watch",
42080            "type": "boolean",
42081            "uniqueItems": true
42082          }
42083        ],
42084        "produces": [
42085          "application/json",
42086          "application/yaml",
42087          "application/vnd.kubernetes.protobuf",
42088          "application/json;stream=watch",
42089          "application/vnd.kubernetes.protobuf;stream=watch"
42090        ],
42091        "responses": {
42092          "200": {
42093            "description": "OK",
42094            "schema": {
42095              "$ref": "#/definitions/io.k8s.api.apps.v1.DeploymentList"
42096            }
42097          },
42098          "401": {
42099            "description": "Unauthorized"
42100          }
42101        },
42102        "schemes": [
42103          "https"
42104        ],
42105        "tags": [
42106          "apps_v1"
42107        ],
42108        "x-kubernetes-action": "list",
42109        "x-kubernetes-group-version-kind": {
42110          "group": "apps",
42111          "kind": "Deployment",
42112          "version": "v1"
42113        }
42114      },
42115      "parameters": [
42116        {
42117          "description": "object name and auth scope, such as for teams and projects",
42118          "in": "path",
42119          "name": "namespace",
42120          "required": true,
42121          "type": "string",
42122          "uniqueItems": true
42123        },
42124        {
42125          "description": "If 'true', then the output is pretty printed.",
42126          "in": "query",
42127          "name": "pretty",
42128          "type": "string",
42129          "uniqueItems": true
42130        }
42131      ],
42132      "post": {
42133        "consumes": [
42134          "*/*"
42135        ],
42136        "description": "create a Deployment",
42137        "operationId": "createAppsV1NamespacedDeployment",
42138        "parameters": [
42139          {
42140            "in": "body",
42141            "name": "body",
42142            "required": true,
42143            "schema": {
42144              "$ref": "#/definitions/io.k8s.api.apps.v1.Deployment"
42145            }
42146          },
42147          {
42148            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
42149            "in": "query",
42150            "name": "dryRun",
42151            "type": "string",
42152            "uniqueItems": true
42153          },
42154          {
42155            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
42156            "in": "query",
42157            "name": "fieldManager",
42158            "type": "string",
42159            "uniqueItems": true
42160          }
42161        ],
42162        "produces": [
42163          "application/json",
42164          "application/yaml",
42165          "application/vnd.kubernetes.protobuf"
42166        ],
42167        "responses": {
42168          "200": {
42169            "description": "OK",
42170            "schema": {
42171              "$ref": "#/definitions/io.k8s.api.apps.v1.Deployment"
42172            }
42173          },
42174          "201": {
42175            "description": "Created",
42176            "schema": {
42177              "$ref": "#/definitions/io.k8s.api.apps.v1.Deployment"
42178            }
42179          },
42180          "202": {
42181            "description": "Accepted",
42182            "schema": {
42183              "$ref": "#/definitions/io.k8s.api.apps.v1.Deployment"
42184            }
42185          },
42186          "401": {
42187            "description": "Unauthorized"
42188          }
42189        },
42190        "schemes": [
42191          "https"
42192        ],
42193        "tags": [
42194          "apps_v1"
42195        ],
42196        "x-kubernetes-action": "post",
42197        "x-kubernetes-group-version-kind": {
42198          "group": "apps",
42199          "kind": "Deployment",
42200          "version": "v1"
42201        }
42202      }
42203    },
42204    "/apis/apps/v1/namespaces/{namespace}/deployments/{name}": {
42205      "delete": {
42206        "consumes": [
42207          "*/*"
42208        ],
42209        "description": "delete a Deployment",
42210        "operationId": "deleteAppsV1NamespacedDeployment",
42211        "parameters": [
42212          {
42213            "in": "body",
42214            "name": "body",
42215            "schema": {
42216              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
42217            }
42218          },
42219          {
42220            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
42221            "in": "query",
42222            "name": "dryRun",
42223            "type": "string",
42224            "uniqueItems": true
42225          },
42226          {
42227            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
42228            "in": "query",
42229            "name": "gracePeriodSeconds",
42230            "type": "integer",
42231            "uniqueItems": true
42232          },
42233          {
42234            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
42235            "in": "query",
42236            "name": "orphanDependents",
42237            "type": "boolean",
42238            "uniqueItems": true
42239          },
42240          {
42241            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
42242            "in": "query",
42243            "name": "propagationPolicy",
42244            "type": "string",
42245            "uniqueItems": true
42246          }
42247        ],
42248        "produces": [
42249          "application/json",
42250          "application/yaml",
42251          "application/vnd.kubernetes.protobuf"
42252        ],
42253        "responses": {
42254          "200": {
42255            "description": "OK",
42256            "schema": {
42257              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
42258            }
42259          },
42260          "202": {
42261            "description": "Accepted",
42262            "schema": {
42263              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
42264            }
42265          },
42266          "401": {
42267            "description": "Unauthorized"
42268          }
42269        },
42270        "schemes": [
42271          "https"
42272        ],
42273        "tags": [
42274          "apps_v1"
42275        ],
42276        "x-kubernetes-action": "delete",
42277        "x-kubernetes-group-version-kind": {
42278          "group": "apps",
42279          "kind": "Deployment",
42280          "version": "v1"
42281        }
42282      },
42283      "get": {
42284        "consumes": [
42285          "*/*"
42286        ],
42287        "description": "read the specified Deployment",
42288        "operationId": "readAppsV1NamespacedDeployment",
42289        "produces": [
42290          "application/json",
42291          "application/yaml",
42292          "application/vnd.kubernetes.protobuf"
42293        ],
42294        "responses": {
42295          "200": {
42296            "description": "OK",
42297            "schema": {
42298              "$ref": "#/definitions/io.k8s.api.apps.v1.Deployment"
42299            }
42300          },
42301          "401": {
42302            "description": "Unauthorized"
42303          }
42304        },
42305        "schemes": [
42306          "https"
42307        ],
42308        "tags": [
42309          "apps_v1"
42310        ],
42311        "x-kubernetes-action": "get",
42312        "x-kubernetes-group-version-kind": {
42313          "group": "apps",
42314          "kind": "Deployment",
42315          "version": "v1"
42316        }
42317      },
42318      "parameters": [
42319        {
42320          "description": "name of the Deployment",
42321          "in": "path",
42322          "name": "name",
42323          "required": true,
42324          "type": "string",
42325          "uniqueItems": true
42326        },
42327        {
42328          "description": "object name and auth scope, such as for teams and projects",
42329          "in": "path",
42330          "name": "namespace",
42331          "required": true,
42332          "type": "string",
42333          "uniqueItems": true
42334        },
42335        {
42336          "description": "If 'true', then the output is pretty printed.",
42337          "in": "query",
42338          "name": "pretty",
42339          "type": "string",
42340          "uniqueItems": true
42341        }
42342      ],
42343      "patch": {
42344        "consumes": [
42345          "application/json-patch+json",
42346          "application/merge-patch+json",
42347          "application/strategic-merge-patch+json",
42348          "application/apply-patch+yaml"
42349        ],
42350        "description": "partially update the specified Deployment",
42351        "operationId": "patchAppsV1NamespacedDeployment",
42352        "parameters": [
42353          {
42354            "in": "body",
42355            "name": "body",
42356            "required": true,
42357            "schema": {
42358              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
42359            }
42360          },
42361          {
42362            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
42363            "in": "query",
42364            "name": "dryRun",
42365            "type": "string",
42366            "uniqueItems": true
42367          },
42368          {
42369            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
42370            "in": "query",
42371            "name": "fieldManager",
42372            "type": "string",
42373            "uniqueItems": true
42374          },
42375          {
42376            "description": "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.",
42377            "in": "query",
42378            "name": "force",
42379            "type": "boolean",
42380            "uniqueItems": true
42381          }
42382        ],
42383        "produces": [
42384          "application/json",
42385          "application/yaml",
42386          "application/vnd.kubernetes.protobuf"
42387        ],
42388        "responses": {
42389          "200": {
42390            "description": "OK",
42391            "schema": {
42392              "$ref": "#/definitions/io.k8s.api.apps.v1.Deployment"
42393            }
42394          },
42395          "201": {
42396            "description": "Created",
42397            "schema": {
42398              "$ref": "#/definitions/io.k8s.api.apps.v1.Deployment"
42399            }
42400          },
42401          "401": {
42402            "description": "Unauthorized"
42403          }
42404        },
42405        "schemes": [
42406          "https"
42407        ],
42408        "tags": [
42409          "apps_v1"
42410        ],
42411        "x-kubernetes-action": "patch",
42412        "x-kubernetes-group-version-kind": {
42413          "group": "apps",
42414          "kind": "Deployment",
42415          "version": "v1"
42416        }
42417      },
42418      "put": {
42419        "consumes": [
42420          "*/*"
42421        ],
42422        "description": "replace the specified Deployment",
42423        "operationId": "replaceAppsV1NamespacedDeployment",
42424        "parameters": [
42425          {
42426            "in": "body",
42427            "name": "body",
42428            "required": true,
42429            "schema": {
42430              "$ref": "#/definitions/io.k8s.api.apps.v1.Deployment"
42431            }
42432          },
42433          {
42434            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
42435            "in": "query",
42436            "name": "dryRun",
42437            "type": "string",
42438            "uniqueItems": true
42439          },
42440          {
42441            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
42442            "in": "query",
42443            "name": "fieldManager",
42444            "type": "string",
42445            "uniqueItems": true
42446          }
42447        ],
42448        "produces": [
42449          "application/json",
42450          "application/yaml",
42451          "application/vnd.kubernetes.protobuf"
42452        ],
42453        "responses": {
42454          "200": {
42455            "description": "OK",
42456            "schema": {
42457              "$ref": "#/definitions/io.k8s.api.apps.v1.Deployment"
42458            }
42459          },
42460          "201": {
42461            "description": "Created",
42462            "schema": {
42463              "$ref": "#/definitions/io.k8s.api.apps.v1.Deployment"
42464            }
42465          },
42466          "401": {
42467            "description": "Unauthorized"
42468          }
42469        },
42470        "schemes": [
42471          "https"
42472        ],
42473        "tags": [
42474          "apps_v1"
42475        ],
42476        "x-kubernetes-action": "put",
42477        "x-kubernetes-group-version-kind": {
42478          "group": "apps",
42479          "kind": "Deployment",
42480          "version": "v1"
42481        }
42482      }
42483    },
42484    "/apis/apps/v1/namespaces/{namespace}/deployments/{name}/scale": {
42485      "get": {
42486        "consumes": [
42487          "*/*"
42488        ],
42489        "description": "read scale of the specified Deployment",
42490        "operationId": "readAppsV1NamespacedDeploymentScale",
42491        "produces": [
42492          "application/json",
42493          "application/yaml",
42494          "application/vnd.kubernetes.protobuf"
42495        ],
42496        "responses": {
42497          "200": {
42498            "description": "OK",
42499            "schema": {
42500              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.Scale"
42501            }
42502          },
42503          "401": {
42504            "description": "Unauthorized"
42505          }
42506        },
42507        "schemes": [
42508          "https"
42509        ],
42510        "tags": [
42511          "apps_v1"
42512        ],
42513        "x-kubernetes-action": "get",
42514        "x-kubernetes-group-version-kind": {
42515          "group": "autoscaling",
42516          "kind": "Scale",
42517          "version": "v1"
42518        }
42519      },
42520      "parameters": [
42521        {
42522          "description": "name of the Scale",
42523          "in": "path",
42524          "name": "name",
42525          "required": true,
42526          "type": "string",
42527          "uniqueItems": true
42528        },
42529        {
42530          "description": "object name and auth scope, such as for teams and projects",
42531          "in": "path",
42532          "name": "namespace",
42533          "required": true,
42534          "type": "string",
42535          "uniqueItems": true
42536        },
42537        {
42538          "description": "If 'true', then the output is pretty printed.",
42539          "in": "query",
42540          "name": "pretty",
42541          "type": "string",
42542          "uniqueItems": true
42543        }
42544      ],
42545      "patch": {
42546        "consumes": [
42547          "application/json-patch+json",
42548          "application/merge-patch+json",
42549          "application/strategic-merge-patch+json",
42550          "application/apply-patch+yaml"
42551        ],
42552        "description": "partially update scale of the specified Deployment",
42553        "operationId": "patchAppsV1NamespacedDeploymentScale",
42554        "parameters": [
42555          {
42556            "in": "body",
42557            "name": "body",
42558            "required": true,
42559            "schema": {
42560              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
42561            }
42562          },
42563          {
42564            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
42565            "in": "query",
42566            "name": "dryRun",
42567            "type": "string",
42568            "uniqueItems": true
42569          },
42570          {
42571            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
42572            "in": "query",
42573            "name": "fieldManager",
42574            "type": "string",
42575            "uniqueItems": true
42576          },
42577          {
42578            "description": "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.",
42579            "in": "query",
42580            "name": "force",
42581            "type": "boolean",
42582            "uniqueItems": true
42583          }
42584        ],
42585        "produces": [
42586          "application/json",
42587          "application/yaml",
42588          "application/vnd.kubernetes.protobuf"
42589        ],
42590        "responses": {
42591          "200": {
42592            "description": "OK",
42593            "schema": {
42594              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.Scale"
42595            }
42596          },
42597          "201": {
42598            "description": "Created",
42599            "schema": {
42600              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.Scale"
42601            }
42602          },
42603          "401": {
42604            "description": "Unauthorized"
42605          }
42606        },
42607        "schemes": [
42608          "https"
42609        ],
42610        "tags": [
42611          "apps_v1"
42612        ],
42613        "x-kubernetes-action": "patch",
42614        "x-kubernetes-group-version-kind": {
42615          "group": "autoscaling",
42616          "kind": "Scale",
42617          "version": "v1"
42618        }
42619      },
42620      "put": {
42621        "consumes": [
42622          "*/*"
42623        ],
42624        "description": "replace scale of the specified Deployment",
42625        "operationId": "replaceAppsV1NamespacedDeploymentScale",
42626        "parameters": [
42627          {
42628            "in": "body",
42629            "name": "body",
42630            "required": true,
42631            "schema": {
42632              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.Scale"
42633            }
42634          },
42635          {
42636            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
42637            "in": "query",
42638            "name": "dryRun",
42639            "type": "string",
42640            "uniqueItems": true
42641          },
42642          {
42643            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
42644            "in": "query",
42645            "name": "fieldManager",
42646            "type": "string",
42647            "uniqueItems": true
42648          }
42649        ],
42650        "produces": [
42651          "application/json",
42652          "application/yaml",
42653          "application/vnd.kubernetes.protobuf"
42654        ],
42655        "responses": {
42656          "200": {
42657            "description": "OK",
42658            "schema": {
42659              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.Scale"
42660            }
42661          },
42662          "201": {
42663            "description": "Created",
42664            "schema": {
42665              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.Scale"
42666            }
42667          },
42668          "401": {
42669            "description": "Unauthorized"
42670          }
42671        },
42672        "schemes": [
42673          "https"
42674        ],
42675        "tags": [
42676          "apps_v1"
42677        ],
42678        "x-kubernetes-action": "put",
42679        "x-kubernetes-group-version-kind": {
42680          "group": "autoscaling",
42681          "kind": "Scale",
42682          "version": "v1"
42683        }
42684      }
42685    },
42686    "/apis/apps/v1/namespaces/{namespace}/deployments/{name}/status": {
42687      "get": {
42688        "consumes": [
42689          "*/*"
42690        ],
42691        "description": "read status of the specified Deployment",
42692        "operationId": "readAppsV1NamespacedDeploymentStatus",
42693        "produces": [
42694          "application/json",
42695          "application/yaml",
42696          "application/vnd.kubernetes.protobuf"
42697        ],
42698        "responses": {
42699          "200": {
42700            "description": "OK",
42701            "schema": {
42702              "$ref": "#/definitions/io.k8s.api.apps.v1.Deployment"
42703            }
42704          },
42705          "401": {
42706            "description": "Unauthorized"
42707          }
42708        },
42709        "schemes": [
42710          "https"
42711        ],
42712        "tags": [
42713          "apps_v1"
42714        ],
42715        "x-kubernetes-action": "get",
42716        "x-kubernetes-group-version-kind": {
42717          "group": "apps",
42718          "kind": "Deployment",
42719          "version": "v1"
42720        }
42721      },
42722      "parameters": [
42723        {
42724          "description": "name of the Deployment",
42725          "in": "path",
42726          "name": "name",
42727          "required": true,
42728          "type": "string",
42729          "uniqueItems": true
42730        },
42731        {
42732          "description": "object name and auth scope, such as for teams and projects",
42733          "in": "path",
42734          "name": "namespace",
42735          "required": true,
42736          "type": "string",
42737          "uniqueItems": true
42738        },
42739        {
42740          "description": "If 'true', then the output is pretty printed.",
42741          "in": "query",
42742          "name": "pretty",
42743          "type": "string",
42744          "uniqueItems": true
42745        }
42746      ],
42747      "patch": {
42748        "consumes": [
42749          "application/json-patch+json",
42750          "application/merge-patch+json",
42751          "application/strategic-merge-patch+json",
42752          "application/apply-patch+yaml"
42753        ],
42754        "description": "partially update status of the specified Deployment",
42755        "operationId": "patchAppsV1NamespacedDeploymentStatus",
42756        "parameters": [
42757          {
42758            "in": "body",
42759            "name": "body",
42760            "required": true,
42761            "schema": {
42762              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
42763            }
42764          },
42765          {
42766            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
42767            "in": "query",
42768            "name": "dryRun",
42769            "type": "string",
42770            "uniqueItems": true
42771          },
42772          {
42773            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
42774            "in": "query",
42775            "name": "fieldManager",
42776            "type": "string",
42777            "uniqueItems": true
42778          },
42779          {
42780            "description": "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.",
42781            "in": "query",
42782            "name": "force",
42783            "type": "boolean",
42784            "uniqueItems": true
42785          }
42786        ],
42787        "produces": [
42788          "application/json",
42789          "application/yaml",
42790          "application/vnd.kubernetes.protobuf"
42791        ],
42792        "responses": {
42793          "200": {
42794            "description": "OK",
42795            "schema": {
42796              "$ref": "#/definitions/io.k8s.api.apps.v1.Deployment"
42797            }
42798          },
42799          "201": {
42800            "description": "Created",
42801            "schema": {
42802              "$ref": "#/definitions/io.k8s.api.apps.v1.Deployment"
42803            }
42804          },
42805          "401": {
42806            "description": "Unauthorized"
42807          }
42808        },
42809        "schemes": [
42810          "https"
42811        ],
42812        "tags": [
42813          "apps_v1"
42814        ],
42815        "x-kubernetes-action": "patch",
42816        "x-kubernetes-group-version-kind": {
42817          "group": "apps",
42818          "kind": "Deployment",
42819          "version": "v1"
42820        }
42821      },
42822      "put": {
42823        "consumes": [
42824          "*/*"
42825        ],
42826        "description": "replace status of the specified Deployment",
42827        "operationId": "replaceAppsV1NamespacedDeploymentStatus",
42828        "parameters": [
42829          {
42830            "in": "body",
42831            "name": "body",
42832            "required": true,
42833            "schema": {
42834              "$ref": "#/definitions/io.k8s.api.apps.v1.Deployment"
42835            }
42836          },
42837          {
42838            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
42839            "in": "query",
42840            "name": "dryRun",
42841            "type": "string",
42842            "uniqueItems": true
42843          },
42844          {
42845            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
42846            "in": "query",
42847            "name": "fieldManager",
42848            "type": "string",
42849            "uniqueItems": true
42850          }
42851        ],
42852        "produces": [
42853          "application/json",
42854          "application/yaml",
42855          "application/vnd.kubernetes.protobuf"
42856        ],
42857        "responses": {
42858          "200": {
42859            "description": "OK",
42860            "schema": {
42861              "$ref": "#/definitions/io.k8s.api.apps.v1.Deployment"
42862            }
42863          },
42864          "201": {
42865            "description": "Created",
42866            "schema": {
42867              "$ref": "#/definitions/io.k8s.api.apps.v1.Deployment"
42868            }
42869          },
42870          "401": {
42871            "description": "Unauthorized"
42872          }
42873        },
42874        "schemes": [
42875          "https"
42876        ],
42877        "tags": [
42878          "apps_v1"
42879        ],
42880        "x-kubernetes-action": "put",
42881        "x-kubernetes-group-version-kind": {
42882          "group": "apps",
42883          "kind": "Deployment",
42884          "version": "v1"
42885        }
42886      }
42887    },
42888    "/apis/apps/v1/namespaces/{namespace}/replicasets": {
42889      "delete": {
42890        "consumes": [
42891          "*/*"
42892        ],
42893        "description": "delete collection of ReplicaSet",
42894        "operationId": "deleteAppsV1CollectionNamespacedReplicaSet",
42895        "parameters": [
42896          {
42897            "in": "body",
42898            "name": "body",
42899            "schema": {
42900              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
42901            }
42902          },
42903          {
42904            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
42905            "in": "query",
42906            "name": "continue",
42907            "type": "string",
42908            "uniqueItems": true
42909          },
42910          {
42911            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
42912            "in": "query",
42913            "name": "dryRun",
42914            "type": "string",
42915            "uniqueItems": true
42916          },
42917          {
42918            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
42919            "in": "query",
42920            "name": "fieldSelector",
42921            "type": "string",
42922            "uniqueItems": true
42923          },
42924          {
42925            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
42926            "in": "query",
42927            "name": "gracePeriodSeconds",
42928            "type": "integer",
42929            "uniqueItems": true
42930          },
42931          {
42932            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
42933            "in": "query",
42934            "name": "labelSelector",
42935            "type": "string",
42936            "uniqueItems": true
42937          },
42938          {
42939            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
42940            "in": "query",
42941            "name": "limit",
42942            "type": "integer",
42943            "uniqueItems": true
42944          },
42945          {
42946            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
42947            "in": "query",
42948            "name": "orphanDependents",
42949            "type": "boolean",
42950            "uniqueItems": true
42951          },
42952          {
42953            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
42954            "in": "query",
42955            "name": "propagationPolicy",
42956            "type": "string",
42957            "uniqueItems": true
42958          },
42959          {
42960            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
42961            "in": "query",
42962            "name": "resourceVersion",
42963            "type": "string",
42964            "uniqueItems": true
42965          },
42966          {
42967            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
42968            "in": "query",
42969            "name": "resourceVersionMatch",
42970            "type": "string",
42971            "uniqueItems": true
42972          },
42973          {
42974            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
42975            "in": "query",
42976            "name": "timeoutSeconds",
42977            "type": "integer",
42978            "uniqueItems": true
42979          }
42980        ],
42981        "produces": [
42982          "application/json",
42983          "application/yaml",
42984          "application/vnd.kubernetes.protobuf"
42985        ],
42986        "responses": {
42987          "200": {
42988            "description": "OK",
42989            "schema": {
42990              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
42991            }
42992          },
42993          "401": {
42994            "description": "Unauthorized"
42995          }
42996        },
42997        "schemes": [
42998          "https"
42999        ],
43000        "tags": [
43001          "apps_v1"
43002        ],
43003        "x-kubernetes-action": "deletecollection",
43004        "x-kubernetes-group-version-kind": {
43005          "group": "apps",
43006          "kind": "ReplicaSet",
43007          "version": "v1"
43008        }
43009      },
43010      "get": {
43011        "consumes": [
43012          "*/*"
43013        ],
43014        "description": "list or watch objects of kind ReplicaSet",
43015        "operationId": "listAppsV1NamespacedReplicaSet",
43016        "parameters": [
43017          {
43018            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
43019            "in": "query",
43020            "name": "allowWatchBookmarks",
43021            "type": "boolean",
43022            "uniqueItems": true
43023          },
43024          {
43025            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
43026            "in": "query",
43027            "name": "continue",
43028            "type": "string",
43029            "uniqueItems": true
43030          },
43031          {
43032            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
43033            "in": "query",
43034            "name": "fieldSelector",
43035            "type": "string",
43036            "uniqueItems": true
43037          },
43038          {
43039            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
43040            "in": "query",
43041            "name": "labelSelector",
43042            "type": "string",
43043            "uniqueItems": true
43044          },
43045          {
43046            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
43047            "in": "query",
43048            "name": "limit",
43049            "type": "integer",
43050            "uniqueItems": true
43051          },
43052          {
43053            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
43054            "in": "query",
43055            "name": "resourceVersion",
43056            "type": "string",
43057            "uniqueItems": true
43058          },
43059          {
43060            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
43061            "in": "query",
43062            "name": "resourceVersionMatch",
43063            "type": "string",
43064            "uniqueItems": true
43065          },
43066          {
43067            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
43068            "in": "query",
43069            "name": "timeoutSeconds",
43070            "type": "integer",
43071            "uniqueItems": true
43072          },
43073          {
43074            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
43075            "in": "query",
43076            "name": "watch",
43077            "type": "boolean",
43078            "uniqueItems": true
43079          }
43080        ],
43081        "produces": [
43082          "application/json",
43083          "application/yaml",
43084          "application/vnd.kubernetes.protobuf",
43085          "application/json;stream=watch",
43086          "application/vnd.kubernetes.protobuf;stream=watch"
43087        ],
43088        "responses": {
43089          "200": {
43090            "description": "OK",
43091            "schema": {
43092              "$ref": "#/definitions/io.k8s.api.apps.v1.ReplicaSetList"
43093            }
43094          },
43095          "401": {
43096            "description": "Unauthorized"
43097          }
43098        },
43099        "schemes": [
43100          "https"
43101        ],
43102        "tags": [
43103          "apps_v1"
43104        ],
43105        "x-kubernetes-action": "list",
43106        "x-kubernetes-group-version-kind": {
43107          "group": "apps",
43108          "kind": "ReplicaSet",
43109          "version": "v1"
43110        }
43111      },
43112      "parameters": [
43113        {
43114          "description": "object name and auth scope, such as for teams and projects",
43115          "in": "path",
43116          "name": "namespace",
43117          "required": true,
43118          "type": "string",
43119          "uniqueItems": true
43120        },
43121        {
43122          "description": "If 'true', then the output is pretty printed.",
43123          "in": "query",
43124          "name": "pretty",
43125          "type": "string",
43126          "uniqueItems": true
43127        }
43128      ],
43129      "post": {
43130        "consumes": [
43131          "*/*"
43132        ],
43133        "description": "create a ReplicaSet",
43134        "operationId": "createAppsV1NamespacedReplicaSet",
43135        "parameters": [
43136          {
43137            "in": "body",
43138            "name": "body",
43139            "required": true,
43140            "schema": {
43141              "$ref": "#/definitions/io.k8s.api.apps.v1.ReplicaSet"
43142            }
43143          },
43144          {
43145            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
43146            "in": "query",
43147            "name": "dryRun",
43148            "type": "string",
43149            "uniqueItems": true
43150          },
43151          {
43152            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
43153            "in": "query",
43154            "name": "fieldManager",
43155            "type": "string",
43156            "uniqueItems": true
43157          }
43158        ],
43159        "produces": [
43160          "application/json",
43161          "application/yaml",
43162          "application/vnd.kubernetes.protobuf"
43163        ],
43164        "responses": {
43165          "200": {
43166            "description": "OK",
43167            "schema": {
43168              "$ref": "#/definitions/io.k8s.api.apps.v1.ReplicaSet"
43169            }
43170          },
43171          "201": {
43172            "description": "Created",
43173            "schema": {
43174              "$ref": "#/definitions/io.k8s.api.apps.v1.ReplicaSet"
43175            }
43176          },
43177          "202": {
43178            "description": "Accepted",
43179            "schema": {
43180              "$ref": "#/definitions/io.k8s.api.apps.v1.ReplicaSet"
43181            }
43182          },
43183          "401": {
43184            "description": "Unauthorized"
43185          }
43186        },
43187        "schemes": [
43188          "https"
43189        ],
43190        "tags": [
43191          "apps_v1"
43192        ],
43193        "x-kubernetes-action": "post",
43194        "x-kubernetes-group-version-kind": {
43195          "group": "apps",
43196          "kind": "ReplicaSet",
43197          "version": "v1"
43198        }
43199      }
43200    },
43201    "/apis/apps/v1/namespaces/{namespace}/replicasets/{name}": {
43202      "delete": {
43203        "consumes": [
43204          "*/*"
43205        ],
43206        "description": "delete a ReplicaSet",
43207        "operationId": "deleteAppsV1NamespacedReplicaSet",
43208        "parameters": [
43209          {
43210            "in": "body",
43211            "name": "body",
43212            "schema": {
43213              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
43214            }
43215          },
43216          {
43217            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
43218            "in": "query",
43219            "name": "dryRun",
43220            "type": "string",
43221            "uniqueItems": true
43222          },
43223          {
43224            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
43225            "in": "query",
43226            "name": "gracePeriodSeconds",
43227            "type": "integer",
43228            "uniqueItems": true
43229          },
43230          {
43231            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
43232            "in": "query",
43233            "name": "orphanDependents",
43234            "type": "boolean",
43235            "uniqueItems": true
43236          },
43237          {
43238            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
43239            "in": "query",
43240            "name": "propagationPolicy",
43241            "type": "string",
43242            "uniqueItems": true
43243          }
43244        ],
43245        "produces": [
43246          "application/json",
43247          "application/yaml",
43248          "application/vnd.kubernetes.protobuf"
43249        ],
43250        "responses": {
43251          "200": {
43252            "description": "OK",
43253            "schema": {
43254              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
43255            }
43256          },
43257          "202": {
43258            "description": "Accepted",
43259            "schema": {
43260              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
43261            }
43262          },
43263          "401": {
43264            "description": "Unauthorized"
43265          }
43266        },
43267        "schemes": [
43268          "https"
43269        ],
43270        "tags": [
43271          "apps_v1"
43272        ],
43273        "x-kubernetes-action": "delete",
43274        "x-kubernetes-group-version-kind": {
43275          "group": "apps",
43276          "kind": "ReplicaSet",
43277          "version": "v1"
43278        }
43279      },
43280      "get": {
43281        "consumes": [
43282          "*/*"
43283        ],
43284        "description": "read the specified ReplicaSet",
43285        "operationId": "readAppsV1NamespacedReplicaSet",
43286        "produces": [
43287          "application/json",
43288          "application/yaml",
43289          "application/vnd.kubernetes.protobuf"
43290        ],
43291        "responses": {
43292          "200": {
43293            "description": "OK",
43294            "schema": {
43295              "$ref": "#/definitions/io.k8s.api.apps.v1.ReplicaSet"
43296            }
43297          },
43298          "401": {
43299            "description": "Unauthorized"
43300          }
43301        },
43302        "schemes": [
43303          "https"
43304        ],
43305        "tags": [
43306          "apps_v1"
43307        ],
43308        "x-kubernetes-action": "get",
43309        "x-kubernetes-group-version-kind": {
43310          "group": "apps",
43311          "kind": "ReplicaSet",
43312          "version": "v1"
43313        }
43314      },
43315      "parameters": [
43316        {
43317          "description": "name of the ReplicaSet",
43318          "in": "path",
43319          "name": "name",
43320          "required": true,
43321          "type": "string",
43322          "uniqueItems": true
43323        },
43324        {
43325          "description": "object name and auth scope, such as for teams and projects",
43326          "in": "path",
43327          "name": "namespace",
43328          "required": true,
43329          "type": "string",
43330          "uniqueItems": true
43331        },
43332        {
43333          "description": "If 'true', then the output is pretty printed.",
43334          "in": "query",
43335          "name": "pretty",
43336          "type": "string",
43337          "uniqueItems": true
43338        }
43339      ],
43340      "patch": {
43341        "consumes": [
43342          "application/json-patch+json",
43343          "application/merge-patch+json",
43344          "application/strategic-merge-patch+json",
43345          "application/apply-patch+yaml"
43346        ],
43347        "description": "partially update the specified ReplicaSet",
43348        "operationId": "patchAppsV1NamespacedReplicaSet",
43349        "parameters": [
43350          {
43351            "in": "body",
43352            "name": "body",
43353            "required": true,
43354            "schema": {
43355              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
43356            }
43357          },
43358          {
43359            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
43360            "in": "query",
43361            "name": "dryRun",
43362            "type": "string",
43363            "uniqueItems": true
43364          },
43365          {
43366            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
43367            "in": "query",
43368            "name": "fieldManager",
43369            "type": "string",
43370            "uniqueItems": true
43371          },
43372          {
43373            "description": "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.",
43374            "in": "query",
43375            "name": "force",
43376            "type": "boolean",
43377            "uniqueItems": true
43378          }
43379        ],
43380        "produces": [
43381          "application/json",
43382          "application/yaml",
43383          "application/vnd.kubernetes.protobuf"
43384        ],
43385        "responses": {
43386          "200": {
43387            "description": "OK",
43388            "schema": {
43389              "$ref": "#/definitions/io.k8s.api.apps.v1.ReplicaSet"
43390            }
43391          },
43392          "201": {
43393            "description": "Created",
43394            "schema": {
43395              "$ref": "#/definitions/io.k8s.api.apps.v1.ReplicaSet"
43396            }
43397          },
43398          "401": {
43399            "description": "Unauthorized"
43400          }
43401        },
43402        "schemes": [
43403          "https"
43404        ],
43405        "tags": [
43406          "apps_v1"
43407        ],
43408        "x-kubernetes-action": "patch",
43409        "x-kubernetes-group-version-kind": {
43410          "group": "apps",
43411          "kind": "ReplicaSet",
43412          "version": "v1"
43413        }
43414      },
43415      "put": {
43416        "consumes": [
43417          "*/*"
43418        ],
43419        "description": "replace the specified ReplicaSet",
43420        "operationId": "replaceAppsV1NamespacedReplicaSet",
43421        "parameters": [
43422          {
43423            "in": "body",
43424            "name": "body",
43425            "required": true,
43426            "schema": {
43427              "$ref": "#/definitions/io.k8s.api.apps.v1.ReplicaSet"
43428            }
43429          },
43430          {
43431            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
43432            "in": "query",
43433            "name": "dryRun",
43434            "type": "string",
43435            "uniqueItems": true
43436          },
43437          {
43438            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
43439            "in": "query",
43440            "name": "fieldManager",
43441            "type": "string",
43442            "uniqueItems": true
43443          }
43444        ],
43445        "produces": [
43446          "application/json",
43447          "application/yaml",
43448          "application/vnd.kubernetes.protobuf"
43449        ],
43450        "responses": {
43451          "200": {
43452            "description": "OK",
43453            "schema": {
43454              "$ref": "#/definitions/io.k8s.api.apps.v1.ReplicaSet"
43455            }
43456          },
43457          "201": {
43458            "description": "Created",
43459            "schema": {
43460              "$ref": "#/definitions/io.k8s.api.apps.v1.ReplicaSet"
43461            }
43462          },
43463          "401": {
43464            "description": "Unauthorized"
43465          }
43466        },
43467        "schemes": [
43468          "https"
43469        ],
43470        "tags": [
43471          "apps_v1"
43472        ],
43473        "x-kubernetes-action": "put",
43474        "x-kubernetes-group-version-kind": {
43475          "group": "apps",
43476          "kind": "ReplicaSet",
43477          "version": "v1"
43478        }
43479      }
43480    },
43481    "/apis/apps/v1/namespaces/{namespace}/replicasets/{name}/scale": {
43482      "get": {
43483        "consumes": [
43484          "*/*"
43485        ],
43486        "description": "read scale of the specified ReplicaSet",
43487        "operationId": "readAppsV1NamespacedReplicaSetScale",
43488        "produces": [
43489          "application/json",
43490          "application/yaml",
43491          "application/vnd.kubernetes.protobuf"
43492        ],
43493        "responses": {
43494          "200": {
43495            "description": "OK",
43496            "schema": {
43497              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.Scale"
43498            }
43499          },
43500          "401": {
43501            "description": "Unauthorized"
43502          }
43503        },
43504        "schemes": [
43505          "https"
43506        ],
43507        "tags": [
43508          "apps_v1"
43509        ],
43510        "x-kubernetes-action": "get",
43511        "x-kubernetes-group-version-kind": {
43512          "group": "autoscaling",
43513          "kind": "Scale",
43514          "version": "v1"
43515        }
43516      },
43517      "parameters": [
43518        {
43519          "description": "name of the Scale",
43520          "in": "path",
43521          "name": "name",
43522          "required": true,
43523          "type": "string",
43524          "uniqueItems": true
43525        },
43526        {
43527          "description": "object name and auth scope, such as for teams and projects",
43528          "in": "path",
43529          "name": "namespace",
43530          "required": true,
43531          "type": "string",
43532          "uniqueItems": true
43533        },
43534        {
43535          "description": "If 'true', then the output is pretty printed.",
43536          "in": "query",
43537          "name": "pretty",
43538          "type": "string",
43539          "uniqueItems": true
43540        }
43541      ],
43542      "patch": {
43543        "consumes": [
43544          "application/json-patch+json",
43545          "application/merge-patch+json",
43546          "application/strategic-merge-patch+json",
43547          "application/apply-patch+yaml"
43548        ],
43549        "description": "partially update scale of the specified ReplicaSet",
43550        "operationId": "patchAppsV1NamespacedReplicaSetScale",
43551        "parameters": [
43552          {
43553            "in": "body",
43554            "name": "body",
43555            "required": true,
43556            "schema": {
43557              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
43558            }
43559          },
43560          {
43561            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
43562            "in": "query",
43563            "name": "dryRun",
43564            "type": "string",
43565            "uniqueItems": true
43566          },
43567          {
43568            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
43569            "in": "query",
43570            "name": "fieldManager",
43571            "type": "string",
43572            "uniqueItems": true
43573          },
43574          {
43575            "description": "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.",
43576            "in": "query",
43577            "name": "force",
43578            "type": "boolean",
43579            "uniqueItems": true
43580          }
43581        ],
43582        "produces": [
43583          "application/json",
43584          "application/yaml",
43585          "application/vnd.kubernetes.protobuf"
43586        ],
43587        "responses": {
43588          "200": {
43589            "description": "OK",
43590            "schema": {
43591              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.Scale"
43592            }
43593          },
43594          "201": {
43595            "description": "Created",
43596            "schema": {
43597              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.Scale"
43598            }
43599          },
43600          "401": {
43601            "description": "Unauthorized"
43602          }
43603        },
43604        "schemes": [
43605          "https"
43606        ],
43607        "tags": [
43608          "apps_v1"
43609        ],
43610        "x-kubernetes-action": "patch",
43611        "x-kubernetes-group-version-kind": {
43612          "group": "autoscaling",
43613          "kind": "Scale",
43614          "version": "v1"
43615        }
43616      },
43617      "put": {
43618        "consumes": [
43619          "*/*"
43620        ],
43621        "description": "replace scale of the specified ReplicaSet",
43622        "operationId": "replaceAppsV1NamespacedReplicaSetScale",
43623        "parameters": [
43624          {
43625            "in": "body",
43626            "name": "body",
43627            "required": true,
43628            "schema": {
43629              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.Scale"
43630            }
43631          },
43632          {
43633            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
43634            "in": "query",
43635            "name": "dryRun",
43636            "type": "string",
43637            "uniqueItems": true
43638          },
43639          {
43640            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
43641            "in": "query",
43642            "name": "fieldManager",
43643            "type": "string",
43644            "uniqueItems": true
43645          }
43646        ],
43647        "produces": [
43648          "application/json",
43649          "application/yaml",
43650          "application/vnd.kubernetes.protobuf"
43651        ],
43652        "responses": {
43653          "200": {
43654            "description": "OK",
43655            "schema": {
43656              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.Scale"
43657            }
43658          },
43659          "201": {
43660            "description": "Created",
43661            "schema": {
43662              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.Scale"
43663            }
43664          },
43665          "401": {
43666            "description": "Unauthorized"
43667          }
43668        },
43669        "schemes": [
43670          "https"
43671        ],
43672        "tags": [
43673          "apps_v1"
43674        ],
43675        "x-kubernetes-action": "put",
43676        "x-kubernetes-group-version-kind": {
43677          "group": "autoscaling",
43678          "kind": "Scale",
43679          "version": "v1"
43680        }
43681      }
43682    },
43683    "/apis/apps/v1/namespaces/{namespace}/replicasets/{name}/status": {
43684      "get": {
43685        "consumes": [
43686          "*/*"
43687        ],
43688        "description": "read status of the specified ReplicaSet",
43689        "operationId": "readAppsV1NamespacedReplicaSetStatus",
43690        "produces": [
43691          "application/json",
43692          "application/yaml",
43693          "application/vnd.kubernetes.protobuf"
43694        ],
43695        "responses": {
43696          "200": {
43697            "description": "OK",
43698            "schema": {
43699              "$ref": "#/definitions/io.k8s.api.apps.v1.ReplicaSet"
43700            }
43701          },
43702          "401": {
43703            "description": "Unauthorized"
43704          }
43705        },
43706        "schemes": [
43707          "https"
43708        ],
43709        "tags": [
43710          "apps_v1"
43711        ],
43712        "x-kubernetes-action": "get",
43713        "x-kubernetes-group-version-kind": {
43714          "group": "apps",
43715          "kind": "ReplicaSet",
43716          "version": "v1"
43717        }
43718      },
43719      "parameters": [
43720        {
43721          "description": "name of the ReplicaSet",
43722          "in": "path",
43723          "name": "name",
43724          "required": true,
43725          "type": "string",
43726          "uniqueItems": true
43727        },
43728        {
43729          "description": "object name and auth scope, such as for teams and projects",
43730          "in": "path",
43731          "name": "namespace",
43732          "required": true,
43733          "type": "string",
43734          "uniqueItems": true
43735        },
43736        {
43737          "description": "If 'true', then the output is pretty printed.",
43738          "in": "query",
43739          "name": "pretty",
43740          "type": "string",
43741          "uniqueItems": true
43742        }
43743      ],
43744      "patch": {
43745        "consumes": [
43746          "application/json-patch+json",
43747          "application/merge-patch+json",
43748          "application/strategic-merge-patch+json",
43749          "application/apply-patch+yaml"
43750        ],
43751        "description": "partially update status of the specified ReplicaSet",
43752        "operationId": "patchAppsV1NamespacedReplicaSetStatus",
43753        "parameters": [
43754          {
43755            "in": "body",
43756            "name": "body",
43757            "required": true,
43758            "schema": {
43759              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
43760            }
43761          },
43762          {
43763            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
43764            "in": "query",
43765            "name": "dryRun",
43766            "type": "string",
43767            "uniqueItems": true
43768          },
43769          {
43770            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
43771            "in": "query",
43772            "name": "fieldManager",
43773            "type": "string",
43774            "uniqueItems": true
43775          },
43776          {
43777            "description": "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.",
43778            "in": "query",
43779            "name": "force",
43780            "type": "boolean",
43781            "uniqueItems": true
43782          }
43783        ],
43784        "produces": [
43785          "application/json",
43786          "application/yaml",
43787          "application/vnd.kubernetes.protobuf"
43788        ],
43789        "responses": {
43790          "200": {
43791            "description": "OK",
43792            "schema": {
43793              "$ref": "#/definitions/io.k8s.api.apps.v1.ReplicaSet"
43794            }
43795          },
43796          "201": {
43797            "description": "Created",
43798            "schema": {
43799              "$ref": "#/definitions/io.k8s.api.apps.v1.ReplicaSet"
43800            }
43801          },
43802          "401": {
43803            "description": "Unauthorized"
43804          }
43805        },
43806        "schemes": [
43807          "https"
43808        ],
43809        "tags": [
43810          "apps_v1"
43811        ],
43812        "x-kubernetes-action": "patch",
43813        "x-kubernetes-group-version-kind": {
43814          "group": "apps",
43815          "kind": "ReplicaSet",
43816          "version": "v1"
43817        }
43818      },
43819      "put": {
43820        "consumes": [
43821          "*/*"
43822        ],
43823        "description": "replace status of the specified ReplicaSet",
43824        "operationId": "replaceAppsV1NamespacedReplicaSetStatus",
43825        "parameters": [
43826          {
43827            "in": "body",
43828            "name": "body",
43829            "required": true,
43830            "schema": {
43831              "$ref": "#/definitions/io.k8s.api.apps.v1.ReplicaSet"
43832            }
43833          },
43834          {
43835            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
43836            "in": "query",
43837            "name": "dryRun",
43838            "type": "string",
43839            "uniqueItems": true
43840          },
43841          {
43842            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
43843            "in": "query",
43844            "name": "fieldManager",
43845            "type": "string",
43846            "uniqueItems": true
43847          }
43848        ],
43849        "produces": [
43850          "application/json",
43851          "application/yaml",
43852          "application/vnd.kubernetes.protobuf"
43853        ],
43854        "responses": {
43855          "200": {
43856            "description": "OK",
43857            "schema": {
43858              "$ref": "#/definitions/io.k8s.api.apps.v1.ReplicaSet"
43859            }
43860          },
43861          "201": {
43862            "description": "Created",
43863            "schema": {
43864              "$ref": "#/definitions/io.k8s.api.apps.v1.ReplicaSet"
43865            }
43866          },
43867          "401": {
43868            "description": "Unauthorized"
43869          }
43870        },
43871        "schemes": [
43872          "https"
43873        ],
43874        "tags": [
43875          "apps_v1"
43876        ],
43877        "x-kubernetes-action": "put",
43878        "x-kubernetes-group-version-kind": {
43879          "group": "apps",
43880          "kind": "ReplicaSet",
43881          "version": "v1"
43882        }
43883      }
43884    },
43885    "/apis/apps/v1/namespaces/{namespace}/statefulsets": {
43886      "delete": {
43887        "consumes": [
43888          "*/*"
43889        ],
43890        "description": "delete collection of StatefulSet",
43891        "operationId": "deleteAppsV1CollectionNamespacedStatefulSet",
43892        "parameters": [
43893          {
43894            "in": "body",
43895            "name": "body",
43896            "schema": {
43897              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
43898            }
43899          },
43900          {
43901            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
43902            "in": "query",
43903            "name": "continue",
43904            "type": "string",
43905            "uniqueItems": true
43906          },
43907          {
43908            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
43909            "in": "query",
43910            "name": "dryRun",
43911            "type": "string",
43912            "uniqueItems": true
43913          },
43914          {
43915            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
43916            "in": "query",
43917            "name": "fieldSelector",
43918            "type": "string",
43919            "uniqueItems": true
43920          },
43921          {
43922            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
43923            "in": "query",
43924            "name": "gracePeriodSeconds",
43925            "type": "integer",
43926            "uniqueItems": true
43927          },
43928          {
43929            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
43930            "in": "query",
43931            "name": "labelSelector",
43932            "type": "string",
43933            "uniqueItems": true
43934          },
43935          {
43936            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
43937            "in": "query",
43938            "name": "limit",
43939            "type": "integer",
43940            "uniqueItems": true
43941          },
43942          {
43943            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
43944            "in": "query",
43945            "name": "orphanDependents",
43946            "type": "boolean",
43947            "uniqueItems": true
43948          },
43949          {
43950            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
43951            "in": "query",
43952            "name": "propagationPolicy",
43953            "type": "string",
43954            "uniqueItems": true
43955          },
43956          {
43957            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
43958            "in": "query",
43959            "name": "resourceVersion",
43960            "type": "string",
43961            "uniqueItems": true
43962          },
43963          {
43964            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
43965            "in": "query",
43966            "name": "resourceVersionMatch",
43967            "type": "string",
43968            "uniqueItems": true
43969          },
43970          {
43971            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
43972            "in": "query",
43973            "name": "timeoutSeconds",
43974            "type": "integer",
43975            "uniqueItems": true
43976          }
43977        ],
43978        "produces": [
43979          "application/json",
43980          "application/yaml",
43981          "application/vnd.kubernetes.protobuf"
43982        ],
43983        "responses": {
43984          "200": {
43985            "description": "OK",
43986            "schema": {
43987              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
43988            }
43989          },
43990          "401": {
43991            "description": "Unauthorized"
43992          }
43993        },
43994        "schemes": [
43995          "https"
43996        ],
43997        "tags": [
43998          "apps_v1"
43999        ],
44000        "x-kubernetes-action": "deletecollection",
44001        "x-kubernetes-group-version-kind": {
44002          "group": "apps",
44003          "kind": "StatefulSet",
44004          "version": "v1"
44005        }
44006      },
44007      "get": {
44008        "consumes": [
44009          "*/*"
44010        ],
44011        "description": "list or watch objects of kind StatefulSet",
44012        "operationId": "listAppsV1NamespacedStatefulSet",
44013        "parameters": [
44014          {
44015            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
44016            "in": "query",
44017            "name": "allowWatchBookmarks",
44018            "type": "boolean",
44019            "uniqueItems": true
44020          },
44021          {
44022            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
44023            "in": "query",
44024            "name": "continue",
44025            "type": "string",
44026            "uniqueItems": true
44027          },
44028          {
44029            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
44030            "in": "query",
44031            "name": "fieldSelector",
44032            "type": "string",
44033            "uniqueItems": true
44034          },
44035          {
44036            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
44037            "in": "query",
44038            "name": "labelSelector",
44039            "type": "string",
44040            "uniqueItems": true
44041          },
44042          {
44043            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
44044            "in": "query",
44045            "name": "limit",
44046            "type": "integer",
44047            "uniqueItems": true
44048          },
44049          {
44050            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
44051            "in": "query",
44052            "name": "resourceVersion",
44053            "type": "string",
44054            "uniqueItems": true
44055          },
44056          {
44057            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
44058            "in": "query",
44059            "name": "resourceVersionMatch",
44060            "type": "string",
44061            "uniqueItems": true
44062          },
44063          {
44064            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
44065            "in": "query",
44066            "name": "timeoutSeconds",
44067            "type": "integer",
44068            "uniqueItems": true
44069          },
44070          {
44071            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
44072            "in": "query",
44073            "name": "watch",
44074            "type": "boolean",
44075            "uniqueItems": true
44076          }
44077        ],
44078        "produces": [
44079          "application/json",
44080          "application/yaml",
44081          "application/vnd.kubernetes.protobuf",
44082          "application/json;stream=watch",
44083          "application/vnd.kubernetes.protobuf;stream=watch"
44084        ],
44085        "responses": {
44086          "200": {
44087            "description": "OK",
44088            "schema": {
44089              "$ref": "#/definitions/io.k8s.api.apps.v1.StatefulSetList"
44090            }
44091          },
44092          "401": {
44093            "description": "Unauthorized"
44094          }
44095        },
44096        "schemes": [
44097          "https"
44098        ],
44099        "tags": [
44100          "apps_v1"
44101        ],
44102        "x-kubernetes-action": "list",
44103        "x-kubernetes-group-version-kind": {
44104          "group": "apps",
44105          "kind": "StatefulSet",
44106          "version": "v1"
44107        }
44108      },
44109      "parameters": [
44110        {
44111          "description": "object name and auth scope, such as for teams and projects",
44112          "in": "path",
44113          "name": "namespace",
44114          "required": true,
44115          "type": "string",
44116          "uniqueItems": true
44117        },
44118        {
44119          "description": "If 'true', then the output is pretty printed.",
44120          "in": "query",
44121          "name": "pretty",
44122          "type": "string",
44123          "uniqueItems": true
44124        }
44125      ],
44126      "post": {
44127        "consumes": [
44128          "*/*"
44129        ],
44130        "description": "create a StatefulSet",
44131        "operationId": "createAppsV1NamespacedStatefulSet",
44132        "parameters": [
44133          {
44134            "in": "body",
44135            "name": "body",
44136            "required": true,
44137            "schema": {
44138              "$ref": "#/definitions/io.k8s.api.apps.v1.StatefulSet"
44139            }
44140          },
44141          {
44142            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
44143            "in": "query",
44144            "name": "dryRun",
44145            "type": "string",
44146            "uniqueItems": true
44147          },
44148          {
44149            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
44150            "in": "query",
44151            "name": "fieldManager",
44152            "type": "string",
44153            "uniqueItems": true
44154          }
44155        ],
44156        "produces": [
44157          "application/json",
44158          "application/yaml",
44159          "application/vnd.kubernetes.protobuf"
44160        ],
44161        "responses": {
44162          "200": {
44163            "description": "OK",
44164            "schema": {
44165              "$ref": "#/definitions/io.k8s.api.apps.v1.StatefulSet"
44166            }
44167          },
44168          "201": {
44169            "description": "Created",
44170            "schema": {
44171              "$ref": "#/definitions/io.k8s.api.apps.v1.StatefulSet"
44172            }
44173          },
44174          "202": {
44175            "description": "Accepted",
44176            "schema": {
44177              "$ref": "#/definitions/io.k8s.api.apps.v1.StatefulSet"
44178            }
44179          },
44180          "401": {
44181            "description": "Unauthorized"
44182          }
44183        },
44184        "schemes": [
44185          "https"
44186        ],
44187        "tags": [
44188          "apps_v1"
44189        ],
44190        "x-kubernetes-action": "post",
44191        "x-kubernetes-group-version-kind": {
44192          "group": "apps",
44193          "kind": "StatefulSet",
44194          "version": "v1"
44195        }
44196      }
44197    },
44198    "/apis/apps/v1/namespaces/{namespace}/statefulsets/{name}": {
44199      "delete": {
44200        "consumes": [
44201          "*/*"
44202        ],
44203        "description": "delete a StatefulSet",
44204        "operationId": "deleteAppsV1NamespacedStatefulSet",
44205        "parameters": [
44206          {
44207            "in": "body",
44208            "name": "body",
44209            "schema": {
44210              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
44211            }
44212          },
44213          {
44214            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
44215            "in": "query",
44216            "name": "dryRun",
44217            "type": "string",
44218            "uniqueItems": true
44219          },
44220          {
44221            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
44222            "in": "query",
44223            "name": "gracePeriodSeconds",
44224            "type": "integer",
44225            "uniqueItems": true
44226          },
44227          {
44228            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
44229            "in": "query",
44230            "name": "orphanDependents",
44231            "type": "boolean",
44232            "uniqueItems": true
44233          },
44234          {
44235            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
44236            "in": "query",
44237            "name": "propagationPolicy",
44238            "type": "string",
44239            "uniqueItems": true
44240          }
44241        ],
44242        "produces": [
44243          "application/json",
44244          "application/yaml",
44245          "application/vnd.kubernetes.protobuf"
44246        ],
44247        "responses": {
44248          "200": {
44249            "description": "OK",
44250            "schema": {
44251              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
44252            }
44253          },
44254          "202": {
44255            "description": "Accepted",
44256            "schema": {
44257              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
44258            }
44259          },
44260          "401": {
44261            "description": "Unauthorized"
44262          }
44263        },
44264        "schemes": [
44265          "https"
44266        ],
44267        "tags": [
44268          "apps_v1"
44269        ],
44270        "x-kubernetes-action": "delete",
44271        "x-kubernetes-group-version-kind": {
44272          "group": "apps",
44273          "kind": "StatefulSet",
44274          "version": "v1"
44275        }
44276      },
44277      "get": {
44278        "consumes": [
44279          "*/*"
44280        ],
44281        "description": "read the specified StatefulSet",
44282        "operationId": "readAppsV1NamespacedStatefulSet",
44283        "produces": [
44284          "application/json",
44285          "application/yaml",
44286          "application/vnd.kubernetes.protobuf"
44287        ],
44288        "responses": {
44289          "200": {
44290            "description": "OK",
44291            "schema": {
44292              "$ref": "#/definitions/io.k8s.api.apps.v1.StatefulSet"
44293            }
44294          },
44295          "401": {
44296            "description": "Unauthorized"
44297          }
44298        },
44299        "schemes": [
44300          "https"
44301        ],
44302        "tags": [
44303          "apps_v1"
44304        ],
44305        "x-kubernetes-action": "get",
44306        "x-kubernetes-group-version-kind": {
44307          "group": "apps",
44308          "kind": "StatefulSet",
44309          "version": "v1"
44310        }
44311      },
44312      "parameters": [
44313        {
44314          "description": "name of the StatefulSet",
44315          "in": "path",
44316          "name": "name",
44317          "required": true,
44318          "type": "string",
44319          "uniqueItems": true
44320        },
44321        {
44322          "description": "object name and auth scope, such as for teams and projects",
44323          "in": "path",
44324          "name": "namespace",
44325          "required": true,
44326          "type": "string",
44327          "uniqueItems": true
44328        },
44329        {
44330          "description": "If 'true', then the output is pretty printed.",
44331          "in": "query",
44332          "name": "pretty",
44333          "type": "string",
44334          "uniqueItems": true
44335        }
44336      ],
44337      "patch": {
44338        "consumes": [
44339          "application/json-patch+json",
44340          "application/merge-patch+json",
44341          "application/strategic-merge-patch+json",
44342          "application/apply-patch+yaml"
44343        ],
44344        "description": "partially update the specified StatefulSet",
44345        "operationId": "patchAppsV1NamespacedStatefulSet",
44346        "parameters": [
44347          {
44348            "in": "body",
44349            "name": "body",
44350            "required": true,
44351            "schema": {
44352              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
44353            }
44354          },
44355          {
44356            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
44357            "in": "query",
44358            "name": "dryRun",
44359            "type": "string",
44360            "uniqueItems": true
44361          },
44362          {
44363            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
44364            "in": "query",
44365            "name": "fieldManager",
44366            "type": "string",
44367            "uniqueItems": true
44368          },
44369          {
44370            "description": "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.",
44371            "in": "query",
44372            "name": "force",
44373            "type": "boolean",
44374            "uniqueItems": true
44375          }
44376        ],
44377        "produces": [
44378          "application/json",
44379          "application/yaml",
44380          "application/vnd.kubernetes.protobuf"
44381        ],
44382        "responses": {
44383          "200": {
44384            "description": "OK",
44385            "schema": {
44386              "$ref": "#/definitions/io.k8s.api.apps.v1.StatefulSet"
44387            }
44388          },
44389          "201": {
44390            "description": "Created",
44391            "schema": {
44392              "$ref": "#/definitions/io.k8s.api.apps.v1.StatefulSet"
44393            }
44394          },
44395          "401": {
44396            "description": "Unauthorized"
44397          }
44398        },
44399        "schemes": [
44400          "https"
44401        ],
44402        "tags": [
44403          "apps_v1"
44404        ],
44405        "x-kubernetes-action": "patch",
44406        "x-kubernetes-group-version-kind": {
44407          "group": "apps",
44408          "kind": "StatefulSet",
44409          "version": "v1"
44410        }
44411      },
44412      "put": {
44413        "consumes": [
44414          "*/*"
44415        ],
44416        "description": "replace the specified StatefulSet",
44417        "operationId": "replaceAppsV1NamespacedStatefulSet",
44418        "parameters": [
44419          {
44420            "in": "body",
44421            "name": "body",
44422            "required": true,
44423            "schema": {
44424              "$ref": "#/definitions/io.k8s.api.apps.v1.StatefulSet"
44425            }
44426          },
44427          {
44428            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
44429            "in": "query",
44430            "name": "dryRun",
44431            "type": "string",
44432            "uniqueItems": true
44433          },
44434          {
44435            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
44436            "in": "query",
44437            "name": "fieldManager",
44438            "type": "string",
44439            "uniqueItems": true
44440          }
44441        ],
44442        "produces": [
44443          "application/json",
44444          "application/yaml",
44445          "application/vnd.kubernetes.protobuf"
44446        ],
44447        "responses": {
44448          "200": {
44449            "description": "OK",
44450            "schema": {
44451              "$ref": "#/definitions/io.k8s.api.apps.v1.StatefulSet"
44452            }
44453          },
44454          "201": {
44455            "description": "Created",
44456            "schema": {
44457              "$ref": "#/definitions/io.k8s.api.apps.v1.StatefulSet"
44458            }
44459          },
44460          "401": {
44461            "description": "Unauthorized"
44462          }
44463        },
44464        "schemes": [
44465          "https"
44466        ],
44467        "tags": [
44468          "apps_v1"
44469        ],
44470        "x-kubernetes-action": "put",
44471        "x-kubernetes-group-version-kind": {
44472          "group": "apps",
44473          "kind": "StatefulSet",
44474          "version": "v1"
44475        }
44476      }
44477    },
44478    "/apis/apps/v1/namespaces/{namespace}/statefulsets/{name}/scale": {
44479      "get": {
44480        "consumes": [
44481          "*/*"
44482        ],
44483        "description": "read scale of the specified StatefulSet",
44484        "operationId": "readAppsV1NamespacedStatefulSetScale",
44485        "produces": [
44486          "application/json",
44487          "application/yaml",
44488          "application/vnd.kubernetes.protobuf"
44489        ],
44490        "responses": {
44491          "200": {
44492            "description": "OK",
44493            "schema": {
44494              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.Scale"
44495            }
44496          },
44497          "401": {
44498            "description": "Unauthorized"
44499          }
44500        },
44501        "schemes": [
44502          "https"
44503        ],
44504        "tags": [
44505          "apps_v1"
44506        ],
44507        "x-kubernetes-action": "get",
44508        "x-kubernetes-group-version-kind": {
44509          "group": "autoscaling",
44510          "kind": "Scale",
44511          "version": "v1"
44512        }
44513      },
44514      "parameters": [
44515        {
44516          "description": "name of the Scale",
44517          "in": "path",
44518          "name": "name",
44519          "required": true,
44520          "type": "string",
44521          "uniqueItems": true
44522        },
44523        {
44524          "description": "object name and auth scope, such as for teams and projects",
44525          "in": "path",
44526          "name": "namespace",
44527          "required": true,
44528          "type": "string",
44529          "uniqueItems": true
44530        },
44531        {
44532          "description": "If 'true', then the output is pretty printed.",
44533          "in": "query",
44534          "name": "pretty",
44535          "type": "string",
44536          "uniqueItems": true
44537        }
44538      ],
44539      "patch": {
44540        "consumes": [
44541          "application/json-patch+json",
44542          "application/merge-patch+json",
44543          "application/strategic-merge-patch+json",
44544          "application/apply-patch+yaml"
44545        ],
44546        "description": "partially update scale of the specified StatefulSet",
44547        "operationId": "patchAppsV1NamespacedStatefulSetScale",
44548        "parameters": [
44549          {
44550            "in": "body",
44551            "name": "body",
44552            "required": true,
44553            "schema": {
44554              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
44555            }
44556          },
44557          {
44558            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
44559            "in": "query",
44560            "name": "dryRun",
44561            "type": "string",
44562            "uniqueItems": true
44563          },
44564          {
44565            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
44566            "in": "query",
44567            "name": "fieldManager",
44568            "type": "string",
44569            "uniqueItems": true
44570          },
44571          {
44572            "description": "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.",
44573            "in": "query",
44574            "name": "force",
44575            "type": "boolean",
44576            "uniqueItems": true
44577          }
44578        ],
44579        "produces": [
44580          "application/json",
44581          "application/yaml",
44582          "application/vnd.kubernetes.protobuf"
44583        ],
44584        "responses": {
44585          "200": {
44586            "description": "OK",
44587            "schema": {
44588              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.Scale"
44589            }
44590          },
44591          "201": {
44592            "description": "Created",
44593            "schema": {
44594              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.Scale"
44595            }
44596          },
44597          "401": {
44598            "description": "Unauthorized"
44599          }
44600        },
44601        "schemes": [
44602          "https"
44603        ],
44604        "tags": [
44605          "apps_v1"
44606        ],
44607        "x-kubernetes-action": "patch",
44608        "x-kubernetes-group-version-kind": {
44609          "group": "autoscaling",
44610          "kind": "Scale",
44611          "version": "v1"
44612        }
44613      },
44614      "put": {
44615        "consumes": [
44616          "*/*"
44617        ],
44618        "description": "replace scale of the specified StatefulSet",
44619        "operationId": "replaceAppsV1NamespacedStatefulSetScale",
44620        "parameters": [
44621          {
44622            "in": "body",
44623            "name": "body",
44624            "required": true,
44625            "schema": {
44626              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.Scale"
44627            }
44628          },
44629          {
44630            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
44631            "in": "query",
44632            "name": "dryRun",
44633            "type": "string",
44634            "uniqueItems": true
44635          },
44636          {
44637            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
44638            "in": "query",
44639            "name": "fieldManager",
44640            "type": "string",
44641            "uniqueItems": true
44642          }
44643        ],
44644        "produces": [
44645          "application/json",
44646          "application/yaml",
44647          "application/vnd.kubernetes.protobuf"
44648        ],
44649        "responses": {
44650          "200": {
44651            "description": "OK",
44652            "schema": {
44653              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.Scale"
44654            }
44655          },
44656          "201": {
44657            "description": "Created",
44658            "schema": {
44659              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.Scale"
44660            }
44661          },
44662          "401": {
44663            "description": "Unauthorized"
44664          }
44665        },
44666        "schemes": [
44667          "https"
44668        ],
44669        "tags": [
44670          "apps_v1"
44671        ],
44672        "x-kubernetes-action": "put",
44673        "x-kubernetes-group-version-kind": {
44674          "group": "autoscaling",
44675          "kind": "Scale",
44676          "version": "v1"
44677        }
44678      }
44679    },
44680    "/apis/apps/v1/namespaces/{namespace}/statefulsets/{name}/status": {
44681      "get": {
44682        "consumes": [
44683          "*/*"
44684        ],
44685        "description": "read status of the specified StatefulSet",
44686        "operationId": "readAppsV1NamespacedStatefulSetStatus",
44687        "produces": [
44688          "application/json",
44689          "application/yaml",
44690          "application/vnd.kubernetes.protobuf"
44691        ],
44692        "responses": {
44693          "200": {
44694            "description": "OK",
44695            "schema": {
44696              "$ref": "#/definitions/io.k8s.api.apps.v1.StatefulSet"
44697            }
44698          },
44699          "401": {
44700            "description": "Unauthorized"
44701          }
44702        },
44703        "schemes": [
44704          "https"
44705        ],
44706        "tags": [
44707          "apps_v1"
44708        ],
44709        "x-kubernetes-action": "get",
44710        "x-kubernetes-group-version-kind": {
44711          "group": "apps",
44712          "kind": "StatefulSet",
44713          "version": "v1"
44714        }
44715      },
44716      "parameters": [
44717        {
44718          "description": "name of the StatefulSet",
44719          "in": "path",
44720          "name": "name",
44721          "required": true,
44722          "type": "string",
44723          "uniqueItems": true
44724        },
44725        {
44726          "description": "object name and auth scope, such as for teams and projects",
44727          "in": "path",
44728          "name": "namespace",
44729          "required": true,
44730          "type": "string",
44731          "uniqueItems": true
44732        },
44733        {
44734          "description": "If 'true', then the output is pretty printed.",
44735          "in": "query",
44736          "name": "pretty",
44737          "type": "string",
44738          "uniqueItems": true
44739        }
44740      ],
44741      "patch": {
44742        "consumes": [
44743          "application/json-patch+json",
44744          "application/merge-patch+json",
44745          "application/strategic-merge-patch+json",
44746          "application/apply-patch+yaml"
44747        ],
44748        "description": "partially update status of the specified StatefulSet",
44749        "operationId": "patchAppsV1NamespacedStatefulSetStatus",
44750        "parameters": [
44751          {
44752            "in": "body",
44753            "name": "body",
44754            "required": true,
44755            "schema": {
44756              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
44757            }
44758          },
44759          {
44760            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
44761            "in": "query",
44762            "name": "dryRun",
44763            "type": "string",
44764            "uniqueItems": true
44765          },
44766          {
44767            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
44768            "in": "query",
44769            "name": "fieldManager",
44770            "type": "string",
44771            "uniqueItems": true
44772          },
44773          {
44774            "description": "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.",
44775            "in": "query",
44776            "name": "force",
44777            "type": "boolean",
44778            "uniqueItems": true
44779          }
44780        ],
44781        "produces": [
44782          "application/json",
44783          "application/yaml",
44784          "application/vnd.kubernetes.protobuf"
44785        ],
44786        "responses": {
44787          "200": {
44788            "description": "OK",
44789            "schema": {
44790              "$ref": "#/definitions/io.k8s.api.apps.v1.StatefulSet"
44791            }
44792          },
44793          "201": {
44794            "description": "Created",
44795            "schema": {
44796              "$ref": "#/definitions/io.k8s.api.apps.v1.StatefulSet"
44797            }
44798          },
44799          "401": {
44800            "description": "Unauthorized"
44801          }
44802        },
44803        "schemes": [
44804          "https"
44805        ],
44806        "tags": [
44807          "apps_v1"
44808        ],
44809        "x-kubernetes-action": "patch",
44810        "x-kubernetes-group-version-kind": {
44811          "group": "apps",
44812          "kind": "StatefulSet",
44813          "version": "v1"
44814        }
44815      },
44816      "put": {
44817        "consumes": [
44818          "*/*"
44819        ],
44820        "description": "replace status of the specified StatefulSet",
44821        "operationId": "replaceAppsV1NamespacedStatefulSetStatus",
44822        "parameters": [
44823          {
44824            "in": "body",
44825            "name": "body",
44826            "required": true,
44827            "schema": {
44828              "$ref": "#/definitions/io.k8s.api.apps.v1.StatefulSet"
44829            }
44830          },
44831          {
44832            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
44833            "in": "query",
44834            "name": "dryRun",
44835            "type": "string",
44836            "uniqueItems": true
44837          },
44838          {
44839            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
44840            "in": "query",
44841            "name": "fieldManager",
44842            "type": "string",
44843            "uniqueItems": true
44844          }
44845        ],
44846        "produces": [
44847          "application/json",
44848          "application/yaml",
44849          "application/vnd.kubernetes.protobuf"
44850        ],
44851        "responses": {
44852          "200": {
44853            "description": "OK",
44854            "schema": {
44855              "$ref": "#/definitions/io.k8s.api.apps.v1.StatefulSet"
44856            }
44857          },
44858          "201": {
44859            "description": "Created",
44860            "schema": {
44861              "$ref": "#/definitions/io.k8s.api.apps.v1.StatefulSet"
44862            }
44863          },
44864          "401": {
44865            "description": "Unauthorized"
44866          }
44867        },
44868        "schemes": [
44869          "https"
44870        ],
44871        "tags": [
44872          "apps_v1"
44873        ],
44874        "x-kubernetes-action": "put",
44875        "x-kubernetes-group-version-kind": {
44876          "group": "apps",
44877          "kind": "StatefulSet",
44878          "version": "v1"
44879        }
44880      }
44881    },
44882    "/apis/apps/v1/replicasets": {
44883      "get": {
44884        "consumes": [
44885          "*/*"
44886        ],
44887        "description": "list or watch objects of kind ReplicaSet",
44888        "operationId": "listAppsV1ReplicaSetForAllNamespaces",
44889        "produces": [
44890          "application/json",
44891          "application/yaml",
44892          "application/vnd.kubernetes.protobuf",
44893          "application/json;stream=watch",
44894          "application/vnd.kubernetes.protobuf;stream=watch"
44895        ],
44896        "responses": {
44897          "200": {
44898            "description": "OK",
44899            "schema": {
44900              "$ref": "#/definitions/io.k8s.api.apps.v1.ReplicaSetList"
44901            }
44902          },
44903          "401": {
44904            "description": "Unauthorized"
44905          }
44906        },
44907        "schemes": [
44908          "https"
44909        ],
44910        "tags": [
44911          "apps_v1"
44912        ],
44913        "x-kubernetes-action": "list",
44914        "x-kubernetes-group-version-kind": {
44915          "group": "apps",
44916          "kind": "ReplicaSet",
44917          "version": "v1"
44918        }
44919      },
44920      "parameters": [
44921        {
44922          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
44923          "in": "query",
44924          "name": "allowWatchBookmarks",
44925          "type": "boolean",
44926          "uniqueItems": true
44927        },
44928        {
44929          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
44930          "in": "query",
44931          "name": "continue",
44932          "type": "string",
44933          "uniqueItems": true
44934        },
44935        {
44936          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
44937          "in": "query",
44938          "name": "fieldSelector",
44939          "type": "string",
44940          "uniqueItems": true
44941        },
44942        {
44943          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
44944          "in": "query",
44945          "name": "labelSelector",
44946          "type": "string",
44947          "uniqueItems": true
44948        },
44949        {
44950          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
44951          "in": "query",
44952          "name": "limit",
44953          "type": "integer",
44954          "uniqueItems": true
44955        },
44956        {
44957          "description": "If 'true', then the output is pretty printed.",
44958          "in": "query",
44959          "name": "pretty",
44960          "type": "string",
44961          "uniqueItems": true
44962        },
44963        {
44964          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
44965          "in": "query",
44966          "name": "resourceVersion",
44967          "type": "string",
44968          "uniqueItems": true
44969        },
44970        {
44971          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
44972          "in": "query",
44973          "name": "resourceVersionMatch",
44974          "type": "string",
44975          "uniqueItems": true
44976        },
44977        {
44978          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
44979          "in": "query",
44980          "name": "timeoutSeconds",
44981          "type": "integer",
44982          "uniqueItems": true
44983        },
44984        {
44985          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
44986          "in": "query",
44987          "name": "watch",
44988          "type": "boolean",
44989          "uniqueItems": true
44990        }
44991      ]
44992    },
44993    "/apis/apps/v1/statefulsets": {
44994      "get": {
44995        "consumes": [
44996          "*/*"
44997        ],
44998        "description": "list or watch objects of kind StatefulSet",
44999        "operationId": "listAppsV1StatefulSetForAllNamespaces",
45000        "produces": [
45001          "application/json",
45002          "application/yaml",
45003          "application/vnd.kubernetes.protobuf",
45004          "application/json;stream=watch",
45005          "application/vnd.kubernetes.protobuf;stream=watch"
45006        ],
45007        "responses": {
45008          "200": {
45009            "description": "OK",
45010            "schema": {
45011              "$ref": "#/definitions/io.k8s.api.apps.v1.StatefulSetList"
45012            }
45013          },
45014          "401": {
45015            "description": "Unauthorized"
45016          }
45017        },
45018        "schemes": [
45019          "https"
45020        ],
45021        "tags": [
45022          "apps_v1"
45023        ],
45024        "x-kubernetes-action": "list",
45025        "x-kubernetes-group-version-kind": {
45026          "group": "apps",
45027          "kind": "StatefulSet",
45028          "version": "v1"
45029        }
45030      },
45031      "parameters": [
45032        {
45033          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
45034          "in": "query",
45035          "name": "allowWatchBookmarks",
45036          "type": "boolean",
45037          "uniqueItems": true
45038        },
45039        {
45040          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
45041          "in": "query",
45042          "name": "continue",
45043          "type": "string",
45044          "uniqueItems": true
45045        },
45046        {
45047          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
45048          "in": "query",
45049          "name": "fieldSelector",
45050          "type": "string",
45051          "uniqueItems": true
45052        },
45053        {
45054          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
45055          "in": "query",
45056          "name": "labelSelector",
45057          "type": "string",
45058          "uniqueItems": true
45059        },
45060        {
45061          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
45062          "in": "query",
45063          "name": "limit",
45064          "type": "integer",
45065          "uniqueItems": true
45066        },
45067        {
45068          "description": "If 'true', then the output is pretty printed.",
45069          "in": "query",
45070          "name": "pretty",
45071          "type": "string",
45072          "uniqueItems": true
45073        },
45074        {
45075          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
45076          "in": "query",
45077          "name": "resourceVersion",
45078          "type": "string",
45079          "uniqueItems": true
45080        },
45081        {
45082          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
45083          "in": "query",
45084          "name": "resourceVersionMatch",
45085          "type": "string",
45086          "uniqueItems": true
45087        },
45088        {
45089          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
45090          "in": "query",
45091          "name": "timeoutSeconds",
45092          "type": "integer",
45093          "uniqueItems": true
45094        },
45095        {
45096          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
45097          "in": "query",
45098          "name": "watch",
45099          "type": "boolean",
45100          "uniqueItems": true
45101        }
45102      ]
45103    },
45104    "/apis/apps/v1/watch/controllerrevisions": {
45105      "get": {
45106        "consumes": [
45107          "*/*"
45108        ],
45109        "description": "watch individual changes to a list of ControllerRevision. deprecated: use the 'watch' parameter with a list operation instead.",
45110        "operationId": "watchAppsV1ControllerRevisionListForAllNamespaces",
45111        "produces": [
45112          "application/json",
45113          "application/yaml",
45114          "application/vnd.kubernetes.protobuf",
45115          "application/json;stream=watch",
45116          "application/vnd.kubernetes.protobuf;stream=watch"
45117        ],
45118        "responses": {
45119          "200": {
45120            "description": "OK",
45121            "schema": {
45122              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
45123            }
45124          },
45125          "401": {
45126            "description": "Unauthorized"
45127          }
45128        },
45129        "schemes": [
45130          "https"
45131        ],
45132        "tags": [
45133          "apps_v1"
45134        ],
45135        "x-kubernetes-action": "watchlist",
45136        "x-kubernetes-group-version-kind": {
45137          "group": "apps",
45138          "kind": "ControllerRevision",
45139          "version": "v1"
45140        }
45141      },
45142      "parameters": [
45143        {
45144          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
45145          "in": "query",
45146          "name": "allowWatchBookmarks",
45147          "type": "boolean",
45148          "uniqueItems": true
45149        },
45150        {
45151          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
45152          "in": "query",
45153          "name": "continue",
45154          "type": "string",
45155          "uniqueItems": true
45156        },
45157        {
45158          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
45159          "in": "query",
45160          "name": "fieldSelector",
45161          "type": "string",
45162          "uniqueItems": true
45163        },
45164        {
45165          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
45166          "in": "query",
45167          "name": "labelSelector",
45168          "type": "string",
45169          "uniqueItems": true
45170        },
45171        {
45172          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
45173          "in": "query",
45174          "name": "limit",
45175          "type": "integer",
45176          "uniqueItems": true
45177        },
45178        {
45179          "description": "If 'true', then the output is pretty printed.",
45180          "in": "query",
45181          "name": "pretty",
45182          "type": "string",
45183          "uniqueItems": true
45184        },
45185        {
45186          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
45187          "in": "query",
45188          "name": "resourceVersion",
45189          "type": "string",
45190          "uniqueItems": true
45191        },
45192        {
45193          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
45194          "in": "query",
45195          "name": "resourceVersionMatch",
45196          "type": "string",
45197          "uniqueItems": true
45198        },
45199        {
45200          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
45201          "in": "query",
45202          "name": "timeoutSeconds",
45203          "type": "integer",
45204          "uniqueItems": true
45205        },
45206        {
45207          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
45208          "in": "query",
45209          "name": "watch",
45210          "type": "boolean",
45211          "uniqueItems": true
45212        }
45213      ]
45214    },
45215    "/apis/apps/v1/watch/daemonsets": {
45216      "get": {
45217        "consumes": [
45218          "*/*"
45219        ],
45220        "description": "watch individual changes to a list of DaemonSet. deprecated: use the 'watch' parameter with a list operation instead.",
45221        "operationId": "watchAppsV1DaemonSetListForAllNamespaces",
45222        "produces": [
45223          "application/json",
45224          "application/yaml",
45225          "application/vnd.kubernetes.protobuf",
45226          "application/json;stream=watch",
45227          "application/vnd.kubernetes.protobuf;stream=watch"
45228        ],
45229        "responses": {
45230          "200": {
45231            "description": "OK",
45232            "schema": {
45233              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
45234            }
45235          },
45236          "401": {
45237            "description": "Unauthorized"
45238          }
45239        },
45240        "schemes": [
45241          "https"
45242        ],
45243        "tags": [
45244          "apps_v1"
45245        ],
45246        "x-kubernetes-action": "watchlist",
45247        "x-kubernetes-group-version-kind": {
45248          "group": "apps",
45249          "kind": "DaemonSet",
45250          "version": "v1"
45251        }
45252      },
45253      "parameters": [
45254        {
45255          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
45256          "in": "query",
45257          "name": "allowWatchBookmarks",
45258          "type": "boolean",
45259          "uniqueItems": true
45260        },
45261        {
45262          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
45263          "in": "query",
45264          "name": "continue",
45265          "type": "string",
45266          "uniqueItems": true
45267        },
45268        {
45269          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
45270          "in": "query",
45271          "name": "fieldSelector",
45272          "type": "string",
45273          "uniqueItems": true
45274        },
45275        {
45276          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
45277          "in": "query",
45278          "name": "labelSelector",
45279          "type": "string",
45280          "uniqueItems": true
45281        },
45282        {
45283          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
45284          "in": "query",
45285          "name": "limit",
45286          "type": "integer",
45287          "uniqueItems": true
45288        },
45289        {
45290          "description": "If 'true', then the output is pretty printed.",
45291          "in": "query",
45292          "name": "pretty",
45293          "type": "string",
45294          "uniqueItems": true
45295        },
45296        {
45297          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
45298          "in": "query",
45299          "name": "resourceVersion",
45300          "type": "string",
45301          "uniqueItems": true
45302        },
45303        {
45304          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
45305          "in": "query",
45306          "name": "resourceVersionMatch",
45307          "type": "string",
45308          "uniqueItems": true
45309        },
45310        {
45311          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
45312          "in": "query",
45313          "name": "timeoutSeconds",
45314          "type": "integer",
45315          "uniqueItems": true
45316        },
45317        {
45318          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
45319          "in": "query",
45320          "name": "watch",
45321          "type": "boolean",
45322          "uniqueItems": true
45323        }
45324      ]
45325    },
45326    "/apis/apps/v1/watch/deployments": {
45327      "get": {
45328        "consumes": [
45329          "*/*"
45330        ],
45331        "description": "watch individual changes to a list of Deployment. deprecated: use the 'watch' parameter with a list operation instead.",
45332        "operationId": "watchAppsV1DeploymentListForAllNamespaces",
45333        "produces": [
45334          "application/json",
45335          "application/yaml",
45336          "application/vnd.kubernetes.protobuf",
45337          "application/json;stream=watch",
45338          "application/vnd.kubernetes.protobuf;stream=watch"
45339        ],
45340        "responses": {
45341          "200": {
45342            "description": "OK",
45343            "schema": {
45344              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
45345            }
45346          },
45347          "401": {
45348            "description": "Unauthorized"
45349          }
45350        },
45351        "schemes": [
45352          "https"
45353        ],
45354        "tags": [
45355          "apps_v1"
45356        ],
45357        "x-kubernetes-action": "watchlist",
45358        "x-kubernetes-group-version-kind": {
45359          "group": "apps",
45360          "kind": "Deployment",
45361          "version": "v1"
45362        }
45363      },
45364      "parameters": [
45365        {
45366          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
45367          "in": "query",
45368          "name": "allowWatchBookmarks",
45369          "type": "boolean",
45370          "uniqueItems": true
45371        },
45372        {
45373          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
45374          "in": "query",
45375          "name": "continue",
45376          "type": "string",
45377          "uniqueItems": true
45378        },
45379        {
45380          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
45381          "in": "query",
45382          "name": "fieldSelector",
45383          "type": "string",
45384          "uniqueItems": true
45385        },
45386        {
45387          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
45388          "in": "query",
45389          "name": "labelSelector",
45390          "type": "string",
45391          "uniqueItems": true
45392        },
45393        {
45394          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
45395          "in": "query",
45396          "name": "limit",
45397          "type": "integer",
45398          "uniqueItems": true
45399        },
45400        {
45401          "description": "If 'true', then the output is pretty printed.",
45402          "in": "query",
45403          "name": "pretty",
45404          "type": "string",
45405          "uniqueItems": true
45406        },
45407        {
45408          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
45409          "in": "query",
45410          "name": "resourceVersion",
45411          "type": "string",
45412          "uniqueItems": true
45413        },
45414        {
45415          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
45416          "in": "query",
45417          "name": "resourceVersionMatch",
45418          "type": "string",
45419          "uniqueItems": true
45420        },
45421        {
45422          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
45423          "in": "query",
45424          "name": "timeoutSeconds",
45425          "type": "integer",
45426          "uniqueItems": true
45427        },
45428        {
45429          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
45430          "in": "query",
45431          "name": "watch",
45432          "type": "boolean",
45433          "uniqueItems": true
45434        }
45435      ]
45436    },
45437    "/apis/apps/v1/watch/namespaces/{namespace}/controllerrevisions": {
45438      "get": {
45439        "consumes": [
45440          "*/*"
45441        ],
45442        "description": "watch individual changes to a list of ControllerRevision. deprecated: use the 'watch' parameter with a list operation instead.",
45443        "operationId": "watchAppsV1NamespacedControllerRevisionList",
45444        "produces": [
45445          "application/json",
45446          "application/yaml",
45447          "application/vnd.kubernetes.protobuf",
45448          "application/json;stream=watch",
45449          "application/vnd.kubernetes.protobuf;stream=watch"
45450        ],
45451        "responses": {
45452          "200": {
45453            "description": "OK",
45454            "schema": {
45455              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
45456            }
45457          },
45458          "401": {
45459            "description": "Unauthorized"
45460          }
45461        },
45462        "schemes": [
45463          "https"
45464        ],
45465        "tags": [
45466          "apps_v1"
45467        ],
45468        "x-kubernetes-action": "watchlist",
45469        "x-kubernetes-group-version-kind": {
45470          "group": "apps",
45471          "kind": "ControllerRevision",
45472          "version": "v1"
45473        }
45474      },
45475      "parameters": [
45476        {
45477          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
45478          "in": "query",
45479          "name": "allowWatchBookmarks",
45480          "type": "boolean",
45481          "uniqueItems": true
45482        },
45483        {
45484          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
45485          "in": "query",
45486          "name": "continue",
45487          "type": "string",
45488          "uniqueItems": true
45489        },
45490        {
45491          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
45492          "in": "query",
45493          "name": "fieldSelector",
45494          "type": "string",
45495          "uniqueItems": true
45496        },
45497        {
45498          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
45499          "in": "query",
45500          "name": "labelSelector",
45501          "type": "string",
45502          "uniqueItems": true
45503        },
45504        {
45505          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
45506          "in": "query",
45507          "name": "limit",
45508          "type": "integer",
45509          "uniqueItems": true
45510        },
45511        {
45512          "description": "object name and auth scope, such as for teams and projects",
45513          "in": "path",
45514          "name": "namespace",
45515          "required": true,
45516          "type": "string",
45517          "uniqueItems": true
45518        },
45519        {
45520          "description": "If 'true', then the output is pretty printed.",
45521          "in": "query",
45522          "name": "pretty",
45523          "type": "string",
45524          "uniqueItems": true
45525        },
45526        {
45527          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
45528          "in": "query",
45529          "name": "resourceVersion",
45530          "type": "string",
45531          "uniqueItems": true
45532        },
45533        {
45534          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
45535          "in": "query",
45536          "name": "resourceVersionMatch",
45537          "type": "string",
45538          "uniqueItems": true
45539        },
45540        {
45541          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
45542          "in": "query",
45543          "name": "timeoutSeconds",
45544          "type": "integer",
45545          "uniqueItems": true
45546        },
45547        {
45548          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
45549          "in": "query",
45550          "name": "watch",
45551          "type": "boolean",
45552          "uniqueItems": true
45553        }
45554      ]
45555    },
45556    "/apis/apps/v1/watch/namespaces/{namespace}/controllerrevisions/{name}": {
45557      "get": {
45558        "consumes": [
45559          "*/*"
45560        ],
45561        "description": "watch changes to an object of kind ControllerRevision. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.",
45562        "operationId": "watchAppsV1NamespacedControllerRevision",
45563        "produces": [
45564          "application/json",
45565          "application/yaml",
45566          "application/vnd.kubernetes.protobuf",
45567          "application/json;stream=watch",
45568          "application/vnd.kubernetes.protobuf;stream=watch"
45569        ],
45570        "responses": {
45571          "200": {
45572            "description": "OK",
45573            "schema": {
45574              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
45575            }
45576          },
45577          "401": {
45578            "description": "Unauthorized"
45579          }
45580        },
45581        "schemes": [
45582          "https"
45583        ],
45584        "tags": [
45585          "apps_v1"
45586        ],
45587        "x-kubernetes-action": "watch",
45588        "x-kubernetes-group-version-kind": {
45589          "group": "apps",
45590          "kind": "ControllerRevision",
45591          "version": "v1"
45592        }
45593      },
45594      "parameters": [
45595        {
45596          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
45597          "in": "query",
45598          "name": "allowWatchBookmarks",
45599          "type": "boolean",
45600          "uniqueItems": true
45601        },
45602        {
45603          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
45604          "in": "query",
45605          "name": "continue",
45606          "type": "string",
45607          "uniqueItems": true
45608        },
45609        {
45610          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
45611          "in": "query",
45612          "name": "fieldSelector",
45613          "type": "string",
45614          "uniqueItems": true
45615        },
45616        {
45617          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
45618          "in": "query",
45619          "name": "labelSelector",
45620          "type": "string",
45621          "uniqueItems": true
45622        },
45623        {
45624          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
45625          "in": "query",
45626          "name": "limit",
45627          "type": "integer",
45628          "uniqueItems": true
45629        },
45630        {
45631          "description": "name of the ControllerRevision",
45632          "in": "path",
45633          "name": "name",
45634          "required": true,
45635          "type": "string",
45636          "uniqueItems": true
45637        },
45638        {
45639          "description": "object name and auth scope, such as for teams and projects",
45640          "in": "path",
45641          "name": "namespace",
45642          "required": true,
45643          "type": "string",
45644          "uniqueItems": true
45645        },
45646        {
45647          "description": "If 'true', then the output is pretty printed.",
45648          "in": "query",
45649          "name": "pretty",
45650          "type": "string",
45651          "uniqueItems": true
45652        },
45653        {
45654          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
45655          "in": "query",
45656          "name": "resourceVersion",
45657          "type": "string",
45658          "uniqueItems": true
45659        },
45660        {
45661          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
45662          "in": "query",
45663          "name": "resourceVersionMatch",
45664          "type": "string",
45665          "uniqueItems": true
45666        },
45667        {
45668          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
45669          "in": "query",
45670          "name": "timeoutSeconds",
45671          "type": "integer",
45672          "uniqueItems": true
45673        },
45674        {
45675          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
45676          "in": "query",
45677          "name": "watch",
45678          "type": "boolean",
45679          "uniqueItems": true
45680        }
45681      ]
45682    },
45683    "/apis/apps/v1/watch/namespaces/{namespace}/daemonsets": {
45684      "get": {
45685        "consumes": [
45686          "*/*"
45687        ],
45688        "description": "watch individual changes to a list of DaemonSet. deprecated: use the 'watch' parameter with a list operation instead.",
45689        "operationId": "watchAppsV1NamespacedDaemonSetList",
45690        "produces": [
45691          "application/json",
45692          "application/yaml",
45693          "application/vnd.kubernetes.protobuf",
45694          "application/json;stream=watch",
45695          "application/vnd.kubernetes.protobuf;stream=watch"
45696        ],
45697        "responses": {
45698          "200": {
45699            "description": "OK",
45700            "schema": {
45701              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
45702            }
45703          },
45704          "401": {
45705            "description": "Unauthorized"
45706          }
45707        },
45708        "schemes": [
45709          "https"
45710        ],
45711        "tags": [
45712          "apps_v1"
45713        ],
45714        "x-kubernetes-action": "watchlist",
45715        "x-kubernetes-group-version-kind": {
45716          "group": "apps",
45717          "kind": "DaemonSet",
45718          "version": "v1"
45719        }
45720      },
45721      "parameters": [
45722        {
45723          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
45724          "in": "query",
45725          "name": "allowWatchBookmarks",
45726          "type": "boolean",
45727          "uniqueItems": true
45728        },
45729        {
45730          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
45731          "in": "query",
45732          "name": "continue",
45733          "type": "string",
45734          "uniqueItems": true
45735        },
45736        {
45737          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
45738          "in": "query",
45739          "name": "fieldSelector",
45740          "type": "string",
45741          "uniqueItems": true
45742        },
45743        {
45744          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
45745          "in": "query",
45746          "name": "labelSelector",
45747          "type": "string",
45748          "uniqueItems": true
45749        },
45750        {
45751          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
45752          "in": "query",
45753          "name": "limit",
45754          "type": "integer",
45755          "uniqueItems": true
45756        },
45757        {
45758          "description": "object name and auth scope, such as for teams and projects",
45759          "in": "path",
45760          "name": "namespace",
45761          "required": true,
45762          "type": "string",
45763          "uniqueItems": true
45764        },
45765        {
45766          "description": "If 'true', then the output is pretty printed.",
45767          "in": "query",
45768          "name": "pretty",
45769          "type": "string",
45770          "uniqueItems": true
45771        },
45772        {
45773          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
45774          "in": "query",
45775          "name": "resourceVersion",
45776          "type": "string",
45777          "uniqueItems": true
45778        },
45779        {
45780          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
45781          "in": "query",
45782          "name": "resourceVersionMatch",
45783          "type": "string",
45784          "uniqueItems": true
45785        },
45786        {
45787          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
45788          "in": "query",
45789          "name": "timeoutSeconds",
45790          "type": "integer",
45791          "uniqueItems": true
45792        },
45793        {
45794          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
45795          "in": "query",
45796          "name": "watch",
45797          "type": "boolean",
45798          "uniqueItems": true
45799        }
45800      ]
45801    },
45802    "/apis/apps/v1/watch/namespaces/{namespace}/daemonsets/{name}": {
45803      "get": {
45804        "consumes": [
45805          "*/*"
45806        ],
45807        "description": "watch changes to an object of kind DaemonSet. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.",
45808        "operationId": "watchAppsV1NamespacedDaemonSet",
45809        "produces": [
45810          "application/json",
45811          "application/yaml",
45812          "application/vnd.kubernetes.protobuf",
45813          "application/json;stream=watch",
45814          "application/vnd.kubernetes.protobuf;stream=watch"
45815        ],
45816        "responses": {
45817          "200": {
45818            "description": "OK",
45819            "schema": {
45820              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
45821            }
45822          },
45823          "401": {
45824            "description": "Unauthorized"
45825          }
45826        },
45827        "schemes": [
45828          "https"
45829        ],
45830        "tags": [
45831          "apps_v1"
45832        ],
45833        "x-kubernetes-action": "watch",
45834        "x-kubernetes-group-version-kind": {
45835          "group": "apps",
45836          "kind": "DaemonSet",
45837          "version": "v1"
45838        }
45839      },
45840      "parameters": [
45841        {
45842          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
45843          "in": "query",
45844          "name": "allowWatchBookmarks",
45845          "type": "boolean",
45846          "uniqueItems": true
45847        },
45848        {
45849          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
45850          "in": "query",
45851          "name": "continue",
45852          "type": "string",
45853          "uniqueItems": true
45854        },
45855        {
45856          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
45857          "in": "query",
45858          "name": "fieldSelector",
45859          "type": "string",
45860          "uniqueItems": true
45861        },
45862        {
45863          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
45864          "in": "query",
45865          "name": "labelSelector",
45866          "type": "string",
45867          "uniqueItems": true
45868        },
45869        {
45870          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
45871          "in": "query",
45872          "name": "limit",
45873          "type": "integer",
45874          "uniqueItems": true
45875        },
45876        {
45877          "description": "name of the DaemonSet",
45878          "in": "path",
45879          "name": "name",
45880          "required": true,
45881          "type": "string",
45882          "uniqueItems": true
45883        },
45884        {
45885          "description": "object name and auth scope, such as for teams and projects",
45886          "in": "path",
45887          "name": "namespace",
45888          "required": true,
45889          "type": "string",
45890          "uniqueItems": true
45891        },
45892        {
45893          "description": "If 'true', then the output is pretty printed.",
45894          "in": "query",
45895          "name": "pretty",
45896          "type": "string",
45897          "uniqueItems": true
45898        },
45899        {
45900          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
45901          "in": "query",
45902          "name": "resourceVersion",
45903          "type": "string",
45904          "uniqueItems": true
45905        },
45906        {
45907          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
45908          "in": "query",
45909          "name": "resourceVersionMatch",
45910          "type": "string",
45911          "uniqueItems": true
45912        },
45913        {
45914          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
45915          "in": "query",
45916          "name": "timeoutSeconds",
45917          "type": "integer",
45918          "uniqueItems": true
45919        },
45920        {
45921          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
45922          "in": "query",
45923          "name": "watch",
45924          "type": "boolean",
45925          "uniqueItems": true
45926        }
45927      ]
45928    },
45929    "/apis/apps/v1/watch/namespaces/{namespace}/deployments": {
45930      "get": {
45931        "consumes": [
45932          "*/*"
45933        ],
45934        "description": "watch individual changes to a list of Deployment. deprecated: use the 'watch' parameter with a list operation instead.",
45935        "operationId": "watchAppsV1NamespacedDeploymentList",
45936        "produces": [
45937          "application/json",
45938          "application/yaml",
45939          "application/vnd.kubernetes.protobuf",
45940          "application/json;stream=watch",
45941          "application/vnd.kubernetes.protobuf;stream=watch"
45942        ],
45943        "responses": {
45944          "200": {
45945            "description": "OK",
45946            "schema": {
45947              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
45948            }
45949          },
45950          "401": {
45951            "description": "Unauthorized"
45952          }
45953        },
45954        "schemes": [
45955          "https"
45956        ],
45957        "tags": [
45958          "apps_v1"
45959        ],
45960        "x-kubernetes-action": "watchlist",
45961        "x-kubernetes-group-version-kind": {
45962          "group": "apps",
45963          "kind": "Deployment",
45964          "version": "v1"
45965        }
45966      },
45967      "parameters": [
45968        {
45969          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
45970          "in": "query",
45971          "name": "allowWatchBookmarks",
45972          "type": "boolean",
45973          "uniqueItems": true
45974        },
45975        {
45976          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
45977          "in": "query",
45978          "name": "continue",
45979          "type": "string",
45980          "uniqueItems": true
45981        },
45982        {
45983          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
45984          "in": "query",
45985          "name": "fieldSelector",
45986          "type": "string",
45987          "uniqueItems": true
45988        },
45989        {
45990          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
45991          "in": "query",
45992          "name": "labelSelector",
45993          "type": "string",
45994          "uniqueItems": true
45995        },
45996        {
45997          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
45998          "in": "query",
45999          "name": "limit",
46000          "type": "integer",
46001          "uniqueItems": true
46002        },
46003        {
46004          "description": "object name and auth scope, such as for teams and projects",
46005          "in": "path",
46006          "name": "namespace",
46007          "required": true,
46008          "type": "string",
46009          "uniqueItems": true
46010        },
46011        {
46012          "description": "If 'true', then the output is pretty printed.",
46013          "in": "query",
46014          "name": "pretty",
46015          "type": "string",
46016          "uniqueItems": true
46017        },
46018        {
46019          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
46020          "in": "query",
46021          "name": "resourceVersion",
46022          "type": "string",
46023          "uniqueItems": true
46024        },
46025        {
46026          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
46027          "in": "query",
46028          "name": "resourceVersionMatch",
46029          "type": "string",
46030          "uniqueItems": true
46031        },
46032        {
46033          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
46034          "in": "query",
46035          "name": "timeoutSeconds",
46036          "type": "integer",
46037          "uniqueItems": true
46038        },
46039        {
46040          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
46041          "in": "query",
46042          "name": "watch",
46043          "type": "boolean",
46044          "uniqueItems": true
46045        }
46046      ]
46047    },
46048    "/apis/apps/v1/watch/namespaces/{namespace}/deployments/{name}": {
46049      "get": {
46050        "consumes": [
46051          "*/*"
46052        ],
46053        "description": "watch changes to an object of kind Deployment. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.",
46054        "operationId": "watchAppsV1NamespacedDeployment",
46055        "produces": [
46056          "application/json",
46057          "application/yaml",
46058          "application/vnd.kubernetes.protobuf",
46059          "application/json;stream=watch",
46060          "application/vnd.kubernetes.protobuf;stream=watch"
46061        ],
46062        "responses": {
46063          "200": {
46064            "description": "OK",
46065            "schema": {
46066              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
46067            }
46068          },
46069          "401": {
46070            "description": "Unauthorized"
46071          }
46072        },
46073        "schemes": [
46074          "https"
46075        ],
46076        "tags": [
46077          "apps_v1"
46078        ],
46079        "x-kubernetes-action": "watch",
46080        "x-kubernetes-group-version-kind": {
46081          "group": "apps",
46082          "kind": "Deployment",
46083          "version": "v1"
46084        }
46085      },
46086      "parameters": [
46087        {
46088          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
46089          "in": "query",
46090          "name": "allowWatchBookmarks",
46091          "type": "boolean",
46092          "uniqueItems": true
46093        },
46094        {
46095          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
46096          "in": "query",
46097          "name": "continue",
46098          "type": "string",
46099          "uniqueItems": true
46100        },
46101        {
46102          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
46103          "in": "query",
46104          "name": "fieldSelector",
46105          "type": "string",
46106          "uniqueItems": true
46107        },
46108        {
46109          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
46110          "in": "query",
46111          "name": "labelSelector",
46112          "type": "string",
46113          "uniqueItems": true
46114        },
46115        {
46116          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
46117          "in": "query",
46118          "name": "limit",
46119          "type": "integer",
46120          "uniqueItems": true
46121        },
46122        {
46123          "description": "name of the Deployment",
46124          "in": "path",
46125          "name": "name",
46126          "required": true,
46127          "type": "string",
46128          "uniqueItems": true
46129        },
46130        {
46131          "description": "object name and auth scope, such as for teams and projects",
46132          "in": "path",
46133          "name": "namespace",
46134          "required": true,
46135          "type": "string",
46136          "uniqueItems": true
46137        },
46138        {
46139          "description": "If 'true', then the output is pretty printed.",
46140          "in": "query",
46141          "name": "pretty",
46142          "type": "string",
46143          "uniqueItems": true
46144        },
46145        {
46146          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
46147          "in": "query",
46148          "name": "resourceVersion",
46149          "type": "string",
46150          "uniqueItems": true
46151        },
46152        {
46153          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
46154          "in": "query",
46155          "name": "resourceVersionMatch",
46156          "type": "string",
46157          "uniqueItems": true
46158        },
46159        {
46160          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
46161          "in": "query",
46162          "name": "timeoutSeconds",
46163          "type": "integer",
46164          "uniqueItems": true
46165        },
46166        {
46167          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
46168          "in": "query",
46169          "name": "watch",
46170          "type": "boolean",
46171          "uniqueItems": true
46172        }
46173      ]
46174    },
46175    "/apis/apps/v1/watch/namespaces/{namespace}/replicasets": {
46176      "get": {
46177        "consumes": [
46178          "*/*"
46179        ],
46180        "description": "watch individual changes to a list of ReplicaSet. deprecated: use the 'watch' parameter with a list operation instead.",
46181        "operationId": "watchAppsV1NamespacedReplicaSetList",
46182        "produces": [
46183          "application/json",
46184          "application/yaml",
46185          "application/vnd.kubernetes.protobuf",
46186          "application/json;stream=watch",
46187          "application/vnd.kubernetes.protobuf;stream=watch"
46188        ],
46189        "responses": {
46190          "200": {
46191            "description": "OK",
46192            "schema": {
46193              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
46194            }
46195          },
46196          "401": {
46197            "description": "Unauthorized"
46198          }
46199        },
46200        "schemes": [
46201          "https"
46202        ],
46203        "tags": [
46204          "apps_v1"
46205        ],
46206        "x-kubernetes-action": "watchlist",
46207        "x-kubernetes-group-version-kind": {
46208          "group": "apps",
46209          "kind": "ReplicaSet",
46210          "version": "v1"
46211        }
46212      },
46213      "parameters": [
46214        {
46215          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
46216          "in": "query",
46217          "name": "allowWatchBookmarks",
46218          "type": "boolean",
46219          "uniqueItems": true
46220        },
46221        {
46222          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
46223          "in": "query",
46224          "name": "continue",
46225          "type": "string",
46226          "uniqueItems": true
46227        },
46228        {
46229          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
46230          "in": "query",
46231          "name": "fieldSelector",
46232          "type": "string",
46233          "uniqueItems": true
46234        },
46235        {
46236          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
46237          "in": "query",
46238          "name": "labelSelector",
46239          "type": "string",
46240          "uniqueItems": true
46241        },
46242        {
46243          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
46244          "in": "query",
46245          "name": "limit",
46246          "type": "integer",
46247          "uniqueItems": true
46248        },
46249        {
46250          "description": "object name and auth scope, such as for teams and projects",
46251          "in": "path",
46252          "name": "namespace",
46253          "required": true,
46254          "type": "string",
46255          "uniqueItems": true
46256        },
46257        {
46258          "description": "If 'true', then the output is pretty printed.",
46259          "in": "query",
46260          "name": "pretty",
46261          "type": "string",
46262          "uniqueItems": true
46263        },
46264        {
46265          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
46266          "in": "query",
46267          "name": "resourceVersion",
46268          "type": "string",
46269          "uniqueItems": true
46270        },
46271        {
46272          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
46273          "in": "query",
46274          "name": "resourceVersionMatch",
46275          "type": "string",
46276          "uniqueItems": true
46277        },
46278        {
46279          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
46280          "in": "query",
46281          "name": "timeoutSeconds",
46282          "type": "integer",
46283          "uniqueItems": true
46284        },
46285        {
46286          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
46287          "in": "query",
46288          "name": "watch",
46289          "type": "boolean",
46290          "uniqueItems": true
46291        }
46292      ]
46293    },
46294    "/apis/apps/v1/watch/namespaces/{namespace}/replicasets/{name}": {
46295      "get": {
46296        "consumes": [
46297          "*/*"
46298        ],
46299        "description": "watch changes to an object of kind ReplicaSet. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.",
46300        "operationId": "watchAppsV1NamespacedReplicaSet",
46301        "produces": [
46302          "application/json",
46303          "application/yaml",
46304          "application/vnd.kubernetes.protobuf",
46305          "application/json;stream=watch",
46306          "application/vnd.kubernetes.protobuf;stream=watch"
46307        ],
46308        "responses": {
46309          "200": {
46310            "description": "OK",
46311            "schema": {
46312              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
46313            }
46314          },
46315          "401": {
46316            "description": "Unauthorized"
46317          }
46318        },
46319        "schemes": [
46320          "https"
46321        ],
46322        "tags": [
46323          "apps_v1"
46324        ],
46325        "x-kubernetes-action": "watch",
46326        "x-kubernetes-group-version-kind": {
46327          "group": "apps",
46328          "kind": "ReplicaSet",
46329          "version": "v1"
46330        }
46331      },
46332      "parameters": [
46333        {
46334          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
46335          "in": "query",
46336          "name": "allowWatchBookmarks",
46337          "type": "boolean",
46338          "uniqueItems": true
46339        },
46340        {
46341          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
46342          "in": "query",
46343          "name": "continue",
46344          "type": "string",
46345          "uniqueItems": true
46346        },
46347        {
46348          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
46349          "in": "query",
46350          "name": "fieldSelector",
46351          "type": "string",
46352          "uniqueItems": true
46353        },
46354        {
46355          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
46356          "in": "query",
46357          "name": "labelSelector",
46358          "type": "string",
46359          "uniqueItems": true
46360        },
46361        {
46362          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
46363          "in": "query",
46364          "name": "limit",
46365          "type": "integer",
46366          "uniqueItems": true
46367        },
46368        {
46369          "description": "name of the ReplicaSet",
46370          "in": "path",
46371          "name": "name",
46372          "required": true,
46373          "type": "string",
46374          "uniqueItems": true
46375        },
46376        {
46377          "description": "object name and auth scope, such as for teams and projects",
46378          "in": "path",
46379          "name": "namespace",
46380          "required": true,
46381          "type": "string",
46382          "uniqueItems": true
46383        },
46384        {
46385          "description": "If 'true', then the output is pretty printed.",
46386          "in": "query",
46387          "name": "pretty",
46388          "type": "string",
46389          "uniqueItems": true
46390        },
46391        {
46392          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
46393          "in": "query",
46394          "name": "resourceVersion",
46395          "type": "string",
46396          "uniqueItems": true
46397        },
46398        {
46399          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
46400          "in": "query",
46401          "name": "resourceVersionMatch",
46402          "type": "string",
46403          "uniqueItems": true
46404        },
46405        {
46406          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
46407          "in": "query",
46408          "name": "timeoutSeconds",
46409          "type": "integer",
46410          "uniqueItems": true
46411        },
46412        {
46413          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
46414          "in": "query",
46415          "name": "watch",
46416          "type": "boolean",
46417          "uniqueItems": true
46418        }
46419      ]
46420    },
46421    "/apis/apps/v1/watch/namespaces/{namespace}/statefulsets": {
46422      "get": {
46423        "consumes": [
46424          "*/*"
46425        ],
46426        "description": "watch individual changes to a list of StatefulSet. deprecated: use the 'watch' parameter with a list operation instead.",
46427        "operationId": "watchAppsV1NamespacedStatefulSetList",
46428        "produces": [
46429          "application/json",
46430          "application/yaml",
46431          "application/vnd.kubernetes.protobuf",
46432          "application/json;stream=watch",
46433          "application/vnd.kubernetes.protobuf;stream=watch"
46434        ],
46435        "responses": {
46436          "200": {
46437            "description": "OK",
46438            "schema": {
46439              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
46440            }
46441          },
46442          "401": {
46443            "description": "Unauthorized"
46444          }
46445        },
46446        "schemes": [
46447          "https"
46448        ],
46449        "tags": [
46450          "apps_v1"
46451        ],
46452        "x-kubernetes-action": "watchlist",
46453        "x-kubernetes-group-version-kind": {
46454          "group": "apps",
46455          "kind": "StatefulSet",
46456          "version": "v1"
46457        }
46458      },
46459      "parameters": [
46460        {
46461          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
46462          "in": "query",
46463          "name": "allowWatchBookmarks",
46464          "type": "boolean",
46465          "uniqueItems": true
46466        },
46467        {
46468          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
46469          "in": "query",
46470          "name": "continue",
46471          "type": "string",
46472          "uniqueItems": true
46473        },
46474        {
46475          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
46476          "in": "query",
46477          "name": "fieldSelector",
46478          "type": "string",
46479          "uniqueItems": true
46480        },
46481        {
46482          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
46483          "in": "query",
46484          "name": "labelSelector",
46485          "type": "string",
46486          "uniqueItems": true
46487        },
46488        {
46489          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
46490          "in": "query",
46491          "name": "limit",
46492          "type": "integer",
46493          "uniqueItems": true
46494        },
46495        {
46496          "description": "object name and auth scope, such as for teams and projects",
46497          "in": "path",
46498          "name": "namespace",
46499          "required": true,
46500          "type": "string",
46501          "uniqueItems": true
46502        },
46503        {
46504          "description": "If 'true', then the output is pretty printed.",
46505          "in": "query",
46506          "name": "pretty",
46507          "type": "string",
46508          "uniqueItems": true
46509        },
46510        {
46511          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
46512          "in": "query",
46513          "name": "resourceVersion",
46514          "type": "string",
46515          "uniqueItems": true
46516        },
46517        {
46518          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
46519          "in": "query",
46520          "name": "resourceVersionMatch",
46521          "type": "string",
46522          "uniqueItems": true
46523        },
46524        {
46525          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
46526          "in": "query",
46527          "name": "timeoutSeconds",
46528          "type": "integer",
46529          "uniqueItems": true
46530        },
46531        {
46532          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
46533          "in": "query",
46534          "name": "watch",
46535          "type": "boolean",
46536          "uniqueItems": true
46537        }
46538      ]
46539    },
46540    "/apis/apps/v1/watch/namespaces/{namespace}/statefulsets/{name}": {
46541      "get": {
46542        "consumes": [
46543          "*/*"
46544        ],
46545        "description": "watch changes to an object of kind StatefulSet. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.",
46546        "operationId": "watchAppsV1NamespacedStatefulSet",
46547        "produces": [
46548          "application/json",
46549          "application/yaml",
46550          "application/vnd.kubernetes.protobuf",
46551          "application/json;stream=watch",
46552          "application/vnd.kubernetes.protobuf;stream=watch"
46553        ],
46554        "responses": {
46555          "200": {
46556            "description": "OK",
46557            "schema": {
46558              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
46559            }
46560          },
46561          "401": {
46562            "description": "Unauthorized"
46563          }
46564        },
46565        "schemes": [
46566          "https"
46567        ],
46568        "tags": [
46569          "apps_v1"
46570        ],
46571        "x-kubernetes-action": "watch",
46572        "x-kubernetes-group-version-kind": {
46573          "group": "apps",
46574          "kind": "StatefulSet",
46575          "version": "v1"
46576        }
46577      },
46578      "parameters": [
46579        {
46580          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
46581          "in": "query",
46582          "name": "allowWatchBookmarks",
46583          "type": "boolean",
46584          "uniqueItems": true
46585        },
46586        {
46587          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
46588          "in": "query",
46589          "name": "continue",
46590          "type": "string",
46591          "uniqueItems": true
46592        },
46593        {
46594          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
46595          "in": "query",
46596          "name": "fieldSelector",
46597          "type": "string",
46598          "uniqueItems": true
46599        },
46600        {
46601          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
46602          "in": "query",
46603          "name": "labelSelector",
46604          "type": "string",
46605          "uniqueItems": true
46606        },
46607        {
46608          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
46609          "in": "query",
46610          "name": "limit",
46611          "type": "integer",
46612          "uniqueItems": true
46613        },
46614        {
46615          "description": "name of the StatefulSet",
46616          "in": "path",
46617          "name": "name",
46618          "required": true,
46619          "type": "string",
46620          "uniqueItems": true
46621        },
46622        {
46623          "description": "object name and auth scope, such as for teams and projects",
46624          "in": "path",
46625          "name": "namespace",
46626          "required": true,
46627          "type": "string",
46628          "uniqueItems": true
46629        },
46630        {
46631          "description": "If 'true', then the output is pretty printed.",
46632          "in": "query",
46633          "name": "pretty",
46634          "type": "string",
46635          "uniqueItems": true
46636        },
46637        {
46638          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
46639          "in": "query",
46640          "name": "resourceVersion",
46641          "type": "string",
46642          "uniqueItems": true
46643        },
46644        {
46645          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
46646          "in": "query",
46647          "name": "resourceVersionMatch",
46648          "type": "string",
46649          "uniqueItems": true
46650        },
46651        {
46652          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
46653          "in": "query",
46654          "name": "timeoutSeconds",
46655          "type": "integer",
46656          "uniqueItems": true
46657        },
46658        {
46659          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
46660          "in": "query",
46661          "name": "watch",
46662          "type": "boolean",
46663          "uniqueItems": true
46664        }
46665      ]
46666    },
46667    "/apis/apps/v1/watch/replicasets": {
46668      "get": {
46669        "consumes": [
46670          "*/*"
46671        ],
46672        "description": "watch individual changes to a list of ReplicaSet. deprecated: use the 'watch' parameter with a list operation instead.",
46673        "operationId": "watchAppsV1ReplicaSetListForAllNamespaces",
46674        "produces": [
46675          "application/json",
46676          "application/yaml",
46677          "application/vnd.kubernetes.protobuf",
46678          "application/json;stream=watch",
46679          "application/vnd.kubernetes.protobuf;stream=watch"
46680        ],
46681        "responses": {
46682          "200": {
46683            "description": "OK",
46684            "schema": {
46685              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
46686            }
46687          },
46688          "401": {
46689            "description": "Unauthorized"
46690          }
46691        },
46692        "schemes": [
46693          "https"
46694        ],
46695        "tags": [
46696          "apps_v1"
46697        ],
46698        "x-kubernetes-action": "watchlist",
46699        "x-kubernetes-group-version-kind": {
46700          "group": "apps",
46701          "kind": "ReplicaSet",
46702          "version": "v1"
46703        }
46704      },
46705      "parameters": [
46706        {
46707          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
46708          "in": "query",
46709          "name": "allowWatchBookmarks",
46710          "type": "boolean",
46711          "uniqueItems": true
46712        },
46713        {
46714          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
46715          "in": "query",
46716          "name": "continue",
46717          "type": "string",
46718          "uniqueItems": true
46719        },
46720        {
46721          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
46722          "in": "query",
46723          "name": "fieldSelector",
46724          "type": "string",
46725          "uniqueItems": true
46726        },
46727        {
46728          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
46729          "in": "query",
46730          "name": "labelSelector",
46731          "type": "string",
46732          "uniqueItems": true
46733        },
46734        {
46735          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
46736          "in": "query",
46737          "name": "limit",
46738          "type": "integer",
46739          "uniqueItems": true
46740        },
46741        {
46742          "description": "If 'true', then the output is pretty printed.",
46743          "in": "query",
46744          "name": "pretty",
46745          "type": "string",
46746          "uniqueItems": true
46747        },
46748        {
46749          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
46750          "in": "query",
46751          "name": "resourceVersion",
46752          "type": "string",
46753          "uniqueItems": true
46754        },
46755        {
46756          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
46757          "in": "query",
46758          "name": "resourceVersionMatch",
46759          "type": "string",
46760          "uniqueItems": true
46761        },
46762        {
46763          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
46764          "in": "query",
46765          "name": "timeoutSeconds",
46766          "type": "integer",
46767          "uniqueItems": true
46768        },
46769        {
46770          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
46771          "in": "query",
46772          "name": "watch",
46773          "type": "boolean",
46774          "uniqueItems": true
46775        }
46776      ]
46777    },
46778    "/apis/apps/v1/watch/statefulsets": {
46779      "get": {
46780        "consumes": [
46781          "*/*"
46782        ],
46783        "description": "watch individual changes to a list of StatefulSet. deprecated: use the 'watch' parameter with a list operation instead.",
46784        "operationId": "watchAppsV1StatefulSetListForAllNamespaces",
46785        "produces": [
46786          "application/json",
46787          "application/yaml",
46788          "application/vnd.kubernetes.protobuf",
46789          "application/json;stream=watch",
46790          "application/vnd.kubernetes.protobuf;stream=watch"
46791        ],
46792        "responses": {
46793          "200": {
46794            "description": "OK",
46795            "schema": {
46796              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
46797            }
46798          },
46799          "401": {
46800            "description": "Unauthorized"
46801          }
46802        },
46803        "schemes": [
46804          "https"
46805        ],
46806        "tags": [
46807          "apps_v1"
46808        ],
46809        "x-kubernetes-action": "watchlist",
46810        "x-kubernetes-group-version-kind": {
46811          "group": "apps",
46812          "kind": "StatefulSet",
46813          "version": "v1"
46814        }
46815      },
46816      "parameters": [
46817        {
46818          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
46819          "in": "query",
46820          "name": "allowWatchBookmarks",
46821          "type": "boolean",
46822          "uniqueItems": true
46823        },
46824        {
46825          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
46826          "in": "query",
46827          "name": "continue",
46828          "type": "string",
46829          "uniqueItems": true
46830        },
46831        {
46832          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
46833          "in": "query",
46834          "name": "fieldSelector",
46835          "type": "string",
46836          "uniqueItems": true
46837        },
46838        {
46839          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
46840          "in": "query",
46841          "name": "labelSelector",
46842          "type": "string",
46843          "uniqueItems": true
46844        },
46845        {
46846          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
46847          "in": "query",
46848          "name": "limit",
46849          "type": "integer",
46850          "uniqueItems": true
46851        },
46852        {
46853          "description": "If 'true', then the output is pretty printed.",
46854          "in": "query",
46855          "name": "pretty",
46856          "type": "string",
46857          "uniqueItems": true
46858        },
46859        {
46860          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
46861          "in": "query",
46862          "name": "resourceVersion",
46863          "type": "string",
46864          "uniqueItems": true
46865        },
46866        {
46867          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
46868          "in": "query",
46869          "name": "resourceVersionMatch",
46870          "type": "string",
46871          "uniqueItems": true
46872        },
46873        {
46874          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
46875          "in": "query",
46876          "name": "timeoutSeconds",
46877          "type": "integer",
46878          "uniqueItems": true
46879        },
46880        {
46881          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
46882          "in": "query",
46883          "name": "watch",
46884          "type": "boolean",
46885          "uniqueItems": true
46886        }
46887      ]
46888    },
46889    "/apis/authentication.k8s.io/": {
46890      "get": {
46891        "consumes": [
46892          "application/json",
46893          "application/yaml",
46894          "application/vnd.kubernetes.protobuf"
46895        ],
46896        "description": "get information of a group",
46897        "operationId": "getAuthenticationAPIGroup",
46898        "produces": [
46899          "application/json",
46900          "application/yaml",
46901          "application/vnd.kubernetes.protobuf"
46902        ],
46903        "responses": {
46904          "200": {
46905            "description": "OK",
46906            "schema": {
46907              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup"
46908            }
46909          },
46910          "401": {
46911            "description": "Unauthorized"
46912          }
46913        },
46914        "schemes": [
46915          "https"
46916        ],
46917        "tags": [
46918          "authentication"
46919        ]
46920      }
46921    },
46922    "/apis/authentication.k8s.io/v1/": {
46923      "get": {
46924        "consumes": [
46925          "application/json",
46926          "application/yaml",
46927          "application/vnd.kubernetes.protobuf"
46928        ],
46929        "description": "get available resources",
46930        "operationId": "getAuthenticationV1APIResources",
46931        "produces": [
46932          "application/json",
46933          "application/yaml",
46934          "application/vnd.kubernetes.protobuf"
46935        ],
46936        "responses": {
46937          "200": {
46938            "description": "OK",
46939            "schema": {
46940              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
46941            }
46942          },
46943          "401": {
46944            "description": "Unauthorized"
46945          }
46946        },
46947        "schemes": [
46948          "https"
46949        ],
46950        "tags": [
46951          "authentication_v1"
46952        ]
46953      }
46954    },
46955    "/apis/authentication.k8s.io/v1/tokenreviews": {
46956      "parameters": [
46957        {
46958          "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
46959          "in": "query",
46960          "name": "dryRun",
46961          "type": "string",
46962          "uniqueItems": true
46963        },
46964        {
46965          "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
46966          "in": "query",
46967          "name": "fieldManager",
46968          "type": "string",
46969          "uniqueItems": true
46970        },
46971        {
46972          "description": "If 'true', then the output is pretty printed.",
46973          "in": "query",
46974          "name": "pretty",
46975          "type": "string",
46976          "uniqueItems": true
46977        }
46978      ],
46979      "post": {
46980        "consumes": [
46981          "*/*"
46982        ],
46983        "description": "create a TokenReview",
46984        "operationId": "createAuthenticationV1TokenReview",
46985        "parameters": [
46986          {
46987            "in": "body",
46988            "name": "body",
46989            "required": true,
46990            "schema": {
46991              "$ref": "#/definitions/io.k8s.api.authentication.v1.TokenReview"
46992            }
46993          }
46994        ],
46995        "produces": [
46996          "application/json",
46997          "application/yaml",
46998          "application/vnd.kubernetes.protobuf"
46999        ],
47000        "responses": {
47001          "200": {
47002            "description": "OK",
47003            "schema": {
47004              "$ref": "#/definitions/io.k8s.api.authentication.v1.TokenReview"
47005            }
47006          },
47007          "201": {
47008            "description": "Created",
47009            "schema": {
47010              "$ref": "#/definitions/io.k8s.api.authentication.v1.TokenReview"
47011            }
47012          },
47013          "202": {
47014            "description": "Accepted",
47015            "schema": {
47016              "$ref": "#/definitions/io.k8s.api.authentication.v1.TokenReview"
47017            }
47018          },
47019          "401": {
47020            "description": "Unauthorized"
47021          }
47022        },
47023        "schemes": [
47024          "https"
47025        ],
47026        "tags": [
47027          "authentication_v1"
47028        ],
47029        "x-kubernetes-action": "post",
47030        "x-kubernetes-group-version-kind": {
47031          "group": "authentication.k8s.io",
47032          "kind": "TokenReview",
47033          "version": "v1"
47034        }
47035      }
47036    },
47037    "/apis/authorization.k8s.io/": {
47038      "get": {
47039        "consumes": [
47040          "application/json",
47041          "application/yaml",
47042          "application/vnd.kubernetes.protobuf"
47043        ],
47044        "description": "get information of a group",
47045        "operationId": "getAuthorizationAPIGroup",
47046        "produces": [
47047          "application/json",
47048          "application/yaml",
47049          "application/vnd.kubernetes.protobuf"
47050        ],
47051        "responses": {
47052          "200": {
47053            "description": "OK",
47054            "schema": {
47055              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup"
47056            }
47057          },
47058          "401": {
47059            "description": "Unauthorized"
47060          }
47061        },
47062        "schemes": [
47063          "https"
47064        ],
47065        "tags": [
47066          "authorization"
47067        ]
47068      }
47069    },
47070    "/apis/authorization.k8s.io/v1/": {
47071      "get": {
47072        "consumes": [
47073          "application/json",
47074          "application/yaml",
47075          "application/vnd.kubernetes.protobuf"
47076        ],
47077        "description": "get available resources",
47078        "operationId": "getAuthorizationV1APIResources",
47079        "produces": [
47080          "application/json",
47081          "application/yaml",
47082          "application/vnd.kubernetes.protobuf"
47083        ],
47084        "responses": {
47085          "200": {
47086            "description": "OK",
47087            "schema": {
47088              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
47089            }
47090          },
47091          "401": {
47092            "description": "Unauthorized"
47093          }
47094        },
47095        "schemes": [
47096          "https"
47097        ],
47098        "tags": [
47099          "authorization_v1"
47100        ]
47101      }
47102    },
47103    "/apis/authorization.k8s.io/v1/namespaces/{namespace}/localsubjectaccessreviews": {
47104      "parameters": [
47105        {
47106          "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
47107          "in": "query",
47108          "name": "dryRun",
47109          "type": "string",
47110          "uniqueItems": true
47111        },
47112        {
47113          "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
47114          "in": "query",
47115          "name": "fieldManager",
47116          "type": "string",
47117          "uniqueItems": true
47118        },
47119        {
47120          "description": "object name and auth scope, such as for teams and projects",
47121          "in": "path",
47122          "name": "namespace",
47123          "required": true,
47124          "type": "string",
47125          "uniqueItems": true
47126        },
47127        {
47128          "description": "If 'true', then the output is pretty printed.",
47129          "in": "query",
47130          "name": "pretty",
47131          "type": "string",
47132          "uniqueItems": true
47133        }
47134      ],
47135      "post": {
47136        "consumes": [
47137          "*/*"
47138        ],
47139        "description": "create a LocalSubjectAccessReview",
47140        "operationId": "createAuthorizationV1NamespacedLocalSubjectAccessReview",
47141        "parameters": [
47142          {
47143            "in": "body",
47144            "name": "body",
47145            "required": true,
47146            "schema": {
47147              "$ref": "#/definitions/io.k8s.api.authorization.v1.LocalSubjectAccessReview"
47148            }
47149          }
47150        ],
47151        "produces": [
47152          "application/json",
47153          "application/yaml",
47154          "application/vnd.kubernetes.protobuf"
47155        ],
47156        "responses": {
47157          "200": {
47158            "description": "OK",
47159            "schema": {
47160              "$ref": "#/definitions/io.k8s.api.authorization.v1.LocalSubjectAccessReview"
47161            }
47162          },
47163          "201": {
47164            "description": "Created",
47165            "schema": {
47166              "$ref": "#/definitions/io.k8s.api.authorization.v1.LocalSubjectAccessReview"
47167            }
47168          },
47169          "202": {
47170            "description": "Accepted",
47171            "schema": {
47172              "$ref": "#/definitions/io.k8s.api.authorization.v1.LocalSubjectAccessReview"
47173            }
47174          },
47175          "401": {
47176            "description": "Unauthorized"
47177          }
47178        },
47179        "schemes": [
47180          "https"
47181        ],
47182        "tags": [
47183          "authorization_v1"
47184        ],
47185        "x-kubernetes-action": "post",
47186        "x-kubernetes-group-version-kind": {
47187          "group": "authorization.k8s.io",
47188          "kind": "LocalSubjectAccessReview",
47189          "version": "v1"
47190        }
47191      }
47192    },
47193    "/apis/authorization.k8s.io/v1/selfsubjectaccessreviews": {
47194      "parameters": [
47195        {
47196          "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
47197          "in": "query",
47198          "name": "dryRun",
47199          "type": "string",
47200          "uniqueItems": true
47201        },
47202        {
47203          "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
47204          "in": "query",
47205          "name": "fieldManager",
47206          "type": "string",
47207          "uniqueItems": true
47208        },
47209        {
47210          "description": "If 'true', then the output is pretty printed.",
47211          "in": "query",
47212          "name": "pretty",
47213          "type": "string",
47214          "uniqueItems": true
47215        }
47216      ],
47217      "post": {
47218        "consumes": [
47219          "*/*"
47220        ],
47221        "description": "create a SelfSubjectAccessReview",
47222        "operationId": "createAuthorizationV1SelfSubjectAccessReview",
47223        "parameters": [
47224          {
47225            "in": "body",
47226            "name": "body",
47227            "required": true,
47228            "schema": {
47229              "$ref": "#/definitions/io.k8s.api.authorization.v1.SelfSubjectAccessReview"
47230            }
47231          }
47232        ],
47233        "produces": [
47234          "application/json",
47235          "application/yaml",
47236          "application/vnd.kubernetes.protobuf"
47237        ],
47238        "responses": {
47239          "200": {
47240            "description": "OK",
47241            "schema": {
47242              "$ref": "#/definitions/io.k8s.api.authorization.v1.SelfSubjectAccessReview"
47243            }
47244          },
47245          "201": {
47246            "description": "Created",
47247            "schema": {
47248              "$ref": "#/definitions/io.k8s.api.authorization.v1.SelfSubjectAccessReview"
47249            }
47250          },
47251          "202": {
47252            "description": "Accepted",
47253            "schema": {
47254              "$ref": "#/definitions/io.k8s.api.authorization.v1.SelfSubjectAccessReview"
47255            }
47256          },
47257          "401": {
47258            "description": "Unauthorized"
47259          }
47260        },
47261        "schemes": [
47262          "https"
47263        ],
47264        "tags": [
47265          "authorization_v1"
47266        ],
47267        "x-kubernetes-action": "post",
47268        "x-kubernetes-group-version-kind": {
47269          "group": "authorization.k8s.io",
47270          "kind": "SelfSubjectAccessReview",
47271          "version": "v1"
47272        }
47273      }
47274    },
47275    "/apis/authorization.k8s.io/v1/selfsubjectrulesreviews": {
47276      "parameters": [
47277        {
47278          "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
47279          "in": "query",
47280          "name": "dryRun",
47281          "type": "string",
47282          "uniqueItems": true
47283        },
47284        {
47285          "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
47286          "in": "query",
47287          "name": "fieldManager",
47288          "type": "string",
47289          "uniqueItems": true
47290        },
47291        {
47292          "description": "If 'true', then the output is pretty printed.",
47293          "in": "query",
47294          "name": "pretty",
47295          "type": "string",
47296          "uniqueItems": true
47297        }
47298      ],
47299      "post": {
47300        "consumes": [
47301          "*/*"
47302        ],
47303        "description": "create a SelfSubjectRulesReview",
47304        "operationId": "createAuthorizationV1SelfSubjectRulesReview",
47305        "parameters": [
47306          {
47307            "in": "body",
47308            "name": "body",
47309            "required": true,
47310            "schema": {
47311              "$ref": "#/definitions/io.k8s.api.authorization.v1.SelfSubjectRulesReview"
47312            }
47313          }
47314        ],
47315        "produces": [
47316          "application/json",
47317          "application/yaml",
47318          "application/vnd.kubernetes.protobuf"
47319        ],
47320        "responses": {
47321          "200": {
47322            "description": "OK",
47323            "schema": {
47324              "$ref": "#/definitions/io.k8s.api.authorization.v1.SelfSubjectRulesReview"
47325            }
47326          },
47327          "201": {
47328            "description": "Created",
47329            "schema": {
47330              "$ref": "#/definitions/io.k8s.api.authorization.v1.SelfSubjectRulesReview"
47331            }
47332          },
47333          "202": {
47334            "description": "Accepted",
47335            "schema": {
47336              "$ref": "#/definitions/io.k8s.api.authorization.v1.SelfSubjectRulesReview"
47337            }
47338          },
47339          "401": {
47340            "description": "Unauthorized"
47341          }
47342        },
47343        "schemes": [
47344          "https"
47345        ],
47346        "tags": [
47347          "authorization_v1"
47348        ],
47349        "x-kubernetes-action": "post",
47350        "x-kubernetes-group-version-kind": {
47351          "group": "authorization.k8s.io",
47352          "kind": "SelfSubjectRulesReview",
47353          "version": "v1"
47354        }
47355      }
47356    },
47357    "/apis/authorization.k8s.io/v1/subjectaccessreviews": {
47358      "parameters": [
47359        {
47360          "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
47361          "in": "query",
47362          "name": "dryRun",
47363          "type": "string",
47364          "uniqueItems": true
47365        },
47366        {
47367          "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
47368          "in": "query",
47369          "name": "fieldManager",
47370          "type": "string",
47371          "uniqueItems": true
47372        },
47373        {
47374          "description": "If 'true', then the output is pretty printed.",
47375          "in": "query",
47376          "name": "pretty",
47377          "type": "string",
47378          "uniqueItems": true
47379        }
47380      ],
47381      "post": {
47382        "consumes": [
47383          "*/*"
47384        ],
47385        "description": "create a SubjectAccessReview",
47386        "operationId": "createAuthorizationV1SubjectAccessReview",
47387        "parameters": [
47388          {
47389            "in": "body",
47390            "name": "body",
47391            "required": true,
47392            "schema": {
47393              "$ref": "#/definitions/io.k8s.api.authorization.v1.SubjectAccessReview"
47394            }
47395          }
47396        ],
47397        "produces": [
47398          "application/json",
47399          "application/yaml",
47400          "application/vnd.kubernetes.protobuf"
47401        ],
47402        "responses": {
47403          "200": {
47404            "description": "OK",
47405            "schema": {
47406              "$ref": "#/definitions/io.k8s.api.authorization.v1.SubjectAccessReview"
47407            }
47408          },
47409          "201": {
47410            "description": "Created",
47411            "schema": {
47412              "$ref": "#/definitions/io.k8s.api.authorization.v1.SubjectAccessReview"
47413            }
47414          },
47415          "202": {
47416            "description": "Accepted",
47417            "schema": {
47418              "$ref": "#/definitions/io.k8s.api.authorization.v1.SubjectAccessReview"
47419            }
47420          },
47421          "401": {
47422            "description": "Unauthorized"
47423          }
47424        },
47425        "schemes": [
47426          "https"
47427        ],
47428        "tags": [
47429          "authorization_v1"
47430        ],
47431        "x-kubernetes-action": "post",
47432        "x-kubernetes-group-version-kind": {
47433          "group": "authorization.k8s.io",
47434          "kind": "SubjectAccessReview",
47435          "version": "v1"
47436        }
47437      }
47438    },
47439    "/apis/autoscaling/": {
47440      "get": {
47441        "consumes": [
47442          "application/json",
47443          "application/yaml",
47444          "application/vnd.kubernetes.protobuf"
47445        ],
47446        "description": "get information of a group",
47447        "operationId": "getAutoscalingAPIGroup",
47448        "produces": [
47449          "application/json",
47450          "application/yaml",
47451          "application/vnd.kubernetes.protobuf"
47452        ],
47453        "responses": {
47454          "200": {
47455            "description": "OK",
47456            "schema": {
47457              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup"
47458            }
47459          },
47460          "401": {
47461            "description": "Unauthorized"
47462          }
47463        },
47464        "schemes": [
47465          "https"
47466        ],
47467        "tags": [
47468          "autoscaling"
47469        ]
47470      }
47471    },
47472    "/apis/autoscaling/v1/": {
47473      "get": {
47474        "consumes": [
47475          "application/json",
47476          "application/yaml",
47477          "application/vnd.kubernetes.protobuf"
47478        ],
47479        "description": "get available resources",
47480        "operationId": "getAutoscalingV1APIResources",
47481        "produces": [
47482          "application/json",
47483          "application/yaml",
47484          "application/vnd.kubernetes.protobuf"
47485        ],
47486        "responses": {
47487          "200": {
47488            "description": "OK",
47489            "schema": {
47490              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
47491            }
47492          },
47493          "401": {
47494            "description": "Unauthorized"
47495          }
47496        },
47497        "schemes": [
47498          "https"
47499        ],
47500        "tags": [
47501          "autoscaling_v1"
47502        ]
47503      }
47504    },
47505    "/apis/autoscaling/v1/horizontalpodautoscalers": {
47506      "get": {
47507        "consumes": [
47508          "*/*"
47509        ],
47510        "description": "list or watch objects of kind HorizontalPodAutoscaler",
47511        "operationId": "listAutoscalingV1HorizontalPodAutoscalerForAllNamespaces",
47512        "produces": [
47513          "application/json",
47514          "application/yaml",
47515          "application/vnd.kubernetes.protobuf",
47516          "application/json;stream=watch",
47517          "application/vnd.kubernetes.protobuf;stream=watch"
47518        ],
47519        "responses": {
47520          "200": {
47521            "description": "OK",
47522            "schema": {
47523              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.HorizontalPodAutoscalerList"
47524            }
47525          },
47526          "401": {
47527            "description": "Unauthorized"
47528          }
47529        },
47530        "schemes": [
47531          "https"
47532        ],
47533        "tags": [
47534          "autoscaling_v1"
47535        ],
47536        "x-kubernetes-action": "list",
47537        "x-kubernetes-group-version-kind": {
47538          "group": "autoscaling",
47539          "kind": "HorizontalPodAutoscaler",
47540          "version": "v1"
47541        }
47542      },
47543      "parameters": [
47544        {
47545          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
47546          "in": "query",
47547          "name": "allowWatchBookmarks",
47548          "type": "boolean",
47549          "uniqueItems": true
47550        },
47551        {
47552          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
47553          "in": "query",
47554          "name": "continue",
47555          "type": "string",
47556          "uniqueItems": true
47557        },
47558        {
47559          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
47560          "in": "query",
47561          "name": "fieldSelector",
47562          "type": "string",
47563          "uniqueItems": true
47564        },
47565        {
47566          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
47567          "in": "query",
47568          "name": "labelSelector",
47569          "type": "string",
47570          "uniqueItems": true
47571        },
47572        {
47573          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
47574          "in": "query",
47575          "name": "limit",
47576          "type": "integer",
47577          "uniqueItems": true
47578        },
47579        {
47580          "description": "If 'true', then the output is pretty printed.",
47581          "in": "query",
47582          "name": "pretty",
47583          "type": "string",
47584          "uniqueItems": true
47585        },
47586        {
47587          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
47588          "in": "query",
47589          "name": "resourceVersion",
47590          "type": "string",
47591          "uniqueItems": true
47592        },
47593        {
47594          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
47595          "in": "query",
47596          "name": "resourceVersionMatch",
47597          "type": "string",
47598          "uniqueItems": true
47599        },
47600        {
47601          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
47602          "in": "query",
47603          "name": "timeoutSeconds",
47604          "type": "integer",
47605          "uniqueItems": true
47606        },
47607        {
47608          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
47609          "in": "query",
47610          "name": "watch",
47611          "type": "boolean",
47612          "uniqueItems": true
47613        }
47614      ]
47615    },
47616    "/apis/autoscaling/v1/namespaces/{namespace}/horizontalpodautoscalers": {
47617      "delete": {
47618        "consumes": [
47619          "*/*"
47620        ],
47621        "description": "delete collection of HorizontalPodAutoscaler",
47622        "operationId": "deleteAutoscalingV1CollectionNamespacedHorizontalPodAutoscaler",
47623        "parameters": [
47624          {
47625            "in": "body",
47626            "name": "body",
47627            "schema": {
47628              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
47629            }
47630          },
47631          {
47632            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
47633            "in": "query",
47634            "name": "continue",
47635            "type": "string",
47636            "uniqueItems": true
47637          },
47638          {
47639            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
47640            "in": "query",
47641            "name": "dryRun",
47642            "type": "string",
47643            "uniqueItems": true
47644          },
47645          {
47646            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
47647            "in": "query",
47648            "name": "fieldSelector",
47649            "type": "string",
47650            "uniqueItems": true
47651          },
47652          {
47653            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
47654            "in": "query",
47655            "name": "gracePeriodSeconds",
47656            "type": "integer",
47657            "uniqueItems": true
47658          },
47659          {
47660            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
47661            "in": "query",
47662            "name": "labelSelector",
47663            "type": "string",
47664            "uniqueItems": true
47665          },
47666          {
47667            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
47668            "in": "query",
47669            "name": "limit",
47670            "type": "integer",
47671            "uniqueItems": true
47672          },
47673          {
47674            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
47675            "in": "query",
47676            "name": "orphanDependents",
47677            "type": "boolean",
47678            "uniqueItems": true
47679          },
47680          {
47681            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
47682            "in": "query",
47683            "name": "propagationPolicy",
47684            "type": "string",
47685            "uniqueItems": true
47686          },
47687          {
47688            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
47689            "in": "query",
47690            "name": "resourceVersion",
47691            "type": "string",
47692            "uniqueItems": true
47693          },
47694          {
47695            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
47696            "in": "query",
47697            "name": "resourceVersionMatch",
47698            "type": "string",
47699            "uniqueItems": true
47700          },
47701          {
47702            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
47703            "in": "query",
47704            "name": "timeoutSeconds",
47705            "type": "integer",
47706            "uniqueItems": true
47707          }
47708        ],
47709        "produces": [
47710          "application/json",
47711          "application/yaml",
47712          "application/vnd.kubernetes.protobuf"
47713        ],
47714        "responses": {
47715          "200": {
47716            "description": "OK",
47717            "schema": {
47718              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
47719            }
47720          },
47721          "401": {
47722            "description": "Unauthorized"
47723          }
47724        },
47725        "schemes": [
47726          "https"
47727        ],
47728        "tags": [
47729          "autoscaling_v1"
47730        ],
47731        "x-kubernetes-action": "deletecollection",
47732        "x-kubernetes-group-version-kind": {
47733          "group": "autoscaling",
47734          "kind": "HorizontalPodAutoscaler",
47735          "version": "v1"
47736        }
47737      },
47738      "get": {
47739        "consumes": [
47740          "*/*"
47741        ],
47742        "description": "list or watch objects of kind HorizontalPodAutoscaler",
47743        "operationId": "listAutoscalingV1NamespacedHorizontalPodAutoscaler",
47744        "parameters": [
47745          {
47746            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
47747            "in": "query",
47748            "name": "allowWatchBookmarks",
47749            "type": "boolean",
47750            "uniqueItems": true
47751          },
47752          {
47753            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
47754            "in": "query",
47755            "name": "continue",
47756            "type": "string",
47757            "uniqueItems": true
47758          },
47759          {
47760            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
47761            "in": "query",
47762            "name": "fieldSelector",
47763            "type": "string",
47764            "uniqueItems": true
47765          },
47766          {
47767            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
47768            "in": "query",
47769            "name": "labelSelector",
47770            "type": "string",
47771            "uniqueItems": true
47772          },
47773          {
47774            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
47775            "in": "query",
47776            "name": "limit",
47777            "type": "integer",
47778            "uniqueItems": true
47779          },
47780          {
47781            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
47782            "in": "query",
47783            "name": "resourceVersion",
47784            "type": "string",
47785            "uniqueItems": true
47786          },
47787          {
47788            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
47789            "in": "query",
47790            "name": "resourceVersionMatch",
47791            "type": "string",
47792            "uniqueItems": true
47793          },
47794          {
47795            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
47796            "in": "query",
47797            "name": "timeoutSeconds",
47798            "type": "integer",
47799            "uniqueItems": true
47800          },
47801          {
47802            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
47803            "in": "query",
47804            "name": "watch",
47805            "type": "boolean",
47806            "uniqueItems": true
47807          }
47808        ],
47809        "produces": [
47810          "application/json",
47811          "application/yaml",
47812          "application/vnd.kubernetes.protobuf",
47813          "application/json;stream=watch",
47814          "application/vnd.kubernetes.protobuf;stream=watch"
47815        ],
47816        "responses": {
47817          "200": {
47818            "description": "OK",
47819            "schema": {
47820              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.HorizontalPodAutoscalerList"
47821            }
47822          },
47823          "401": {
47824            "description": "Unauthorized"
47825          }
47826        },
47827        "schemes": [
47828          "https"
47829        ],
47830        "tags": [
47831          "autoscaling_v1"
47832        ],
47833        "x-kubernetes-action": "list",
47834        "x-kubernetes-group-version-kind": {
47835          "group": "autoscaling",
47836          "kind": "HorizontalPodAutoscaler",
47837          "version": "v1"
47838        }
47839      },
47840      "parameters": [
47841        {
47842          "description": "object name and auth scope, such as for teams and projects",
47843          "in": "path",
47844          "name": "namespace",
47845          "required": true,
47846          "type": "string",
47847          "uniqueItems": true
47848        },
47849        {
47850          "description": "If 'true', then the output is pretty printed.",
47851          "in": "query",
47852          "name": "pretty",
47853          "type": "string",
47854          "uniqueItems": true
47855        }
47856      ],
47857      "post": {
47858        "consumes": [
47859          "*/*"
47860        ],
47861        "description": "create a HorizontalPodAutoscaler",
47862        "operationId": "createAutoscalingV1NamespacedHorizontalPodAutoscaler",
47863        "parameters": [
47864          {
47865            "in": "body",
47866            "name": "body",
47867            "required": true,
47868            "schema": {
47869              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler"
47870            }
47871          },
47872          {
47873            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
47874            "in": "query",
47875            "name": "dryRun",
47876            "type": "string",
47877            "uniqueItems": true
47878          },
47879          {
47880            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
47881            "in": "query",
47882            "name": "fieldManager",
47883            "type": "string",
47884            "uniqueItems": true
47885          }
47886        ],
47887        "produces": [
47888          "application/json",
47889          "application/yaml",
47890          "application/vnd.kubernetes.protobuf"
47891        ],
47892        "responses": {
47893          "200": {
47894            "description": "OK",
47895            "schema": {
47896              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler"
47897            }
47898          },
47899          "201": {
47900            "description": "Created",
47901            "schema": {
47902              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler"
47903            }
47904          },
47905          "202": {
47906            "description": "Accepted",
47907            "schema": {
47908              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler"
47909            }
47910          },
47911          "401": {
47912            "description": "Unauthorized"
47913          }
47914        },
47915        "schemes": [
47916          "https"
47917        ],
47918        "tags": [
47919          "autoscaling_v1"
47920        ],
47921        "x-kubernetes-action": "post",
47922        "x-kubernetes-group-version-kind": {
47923          "group": "autoscaling",
47924          "kind": "HorizontalPodAutoscaler",
47925          "version": "v1"
47926        }
47927      }
47928    },
47929    "/apis/autoscaling/v1/namespaces/{namespace}/horizontalpodautoscalers/{name}": {
47930      "delete": {
47931        "consumes": [
47932          "*/*"
47933        ],
47934        "description": "delete a HorizontalPodAutoscaler",
47935        "operationId": "deleteAutoscalingV1NamespacedHorizontalPodAutoscaler",
47936        "parameters": [
47937          {
47938            "in": "body",
47939            "name": "body",
47940            "schema": {
47941              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
47942            }
47943          },
47944          {
47945            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
47946            "in": "query",
47947            "name": "dryRun",
47948            "type": "string",
47949            "uniqueItems": true
47950          },
47951          {
47952            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
47953            "in": "query",
47954            "name": "gracePeriodSeconds",
47955            "type": "integer",
47956            "uniqueItems": true
47957          },
47958          {
47959            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
47960            "in": "query",
47961            "name": "orphanDependents",
47962            "type": "boolean",
47963            "uniqueItems": true
47964          },
47965          {
47966            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
47967            "in": "query",
47968            "name": "propagationPolicy",
47969            "type": "string",
47970            "uniqueItems": true
47971          }
47972        ],
47973        "produces": [
47974          "application/json",
47975          "application/yaml",
47976          "application/vnd.kubernetes.protobuf"
47977        ],
47978        "responses": {
47979          "200": {
47980            "description": "OK",
47981            "schema": {
47982              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
47983            }
47984          },
47985          "202": {
47986            "description": "Accepted",
47987            "schema": {
47988              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
47989            }
47990          },
47991          "401": {
47992            "description": "Unauthorized"
47993          }
47994        },
47995        "schemes": [
47996          "https"
47997        ],
47998        "tags": [
47999          "autoscaling_v1"
48000        ],
48001        "x-kubernetes-action": "delete",
48002        "x-kubernetes-group-version-kind": {
48003          "group": "autoscaling",
48004          "kind": "HorizontalPodAutoscaler",
48005          "version": "v1"
48006        }
48007      },
48008      "get": {
48009        "consumes": [
48010          "*/*"
48011        ],
48012        "description": "read the specified HorizontalPodAutoscaler",
48013        "operationId": "readAutoscalingV1NamespacedHorizontalPodAutoscaler",
48014        "produces": [
48015          "application/json",
48016          "application/yaml",
48017          "application/vnd.kubernetes.protobuf"
48018        ],
48019        "responses": {
48020          "200": {
48021            "description": "OK",
48022            "schema": {
48023              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler"
48024            }
48025          },
48026          "401": {
48027            "description": "Unauthorized"
48028          }
48029        },
48030        "schemes": [
48031          "https"
48032        ],
48033        "tags": [
48034          "autoscaling_v1"
48035        ],
48036        "x-kubernetes-action": "get",
48037        "x-kubernetes-group-version-kind": {
48038          "group": "autoscaling",
48039          "kind": "HorizontalPodAutoscaler",
48040          "version": "v1"
48041        }
48042      },
48043      "parameters": [
48044        {
48045          "description": "name of the HorizontalPodAutoscaler",
48046          "in": "path",
48047          "name": "name",
48048          "required": true,
48049          "type": "string",
48050          "uniqueItems": true
48051        },
48052        {
48053          "description": "object name and auth scope, such as for teams and projects",
48054          "in": "path",
48055          "name": "namespace",
48056          "required": true,
48057          "type": "string",
48058          "uniqueItems": true
48059        },
48060        {
48061          "description": "If 'true', then the output is pretty printed.",
48062          "in": "query",
48063          "name": "pretty",
48064          "type": "string",
48065          "uniqueItems": true
48066        }
48067      ],
48068      "patch": {
48069        "consumes": [
48070          "application/json-patch+json",
48071          "application/merge-patch+json",
48072          "application/strategic-merge-patch+json",
48073          "application/apply-patch+yaml"
48074        ],
48075        "description": "partially update the specified HorizontalPodAutoscaler",
48076        "operationId": "patchAutoscalingV1NamespacedHorizontalPodAutoscaler",
48077        "parameters": [
48078          {
48079            "in": "body",
48080            "name": "body",
48081            "required": true,
48082            "schema": {
48083              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
48084            }
48085          },
48086          {
48087            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
48088            "in": "query",
48089            "name": "dryRun",
48090            "type": "string",
48091            "uniqueItems": true
48092          },
48093          {
48094            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
48095            "in": "query",
48096            "name": "fieldManager",
48097            "type": "string",
48098            "uniqueItems": true
48099          },
48100          {
48101            "description": "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.",
48102            "in": "query",
48103            "name": "force",
48104            "type": "boolean",
48105            "uniqueItems": true
48106          }
48107        ],
48108        "produces": [
48109          "application/json",
48110          "application/yaml",
48111          "application/vnd.kubernetes.protobuf"
48112        ],
48113        "responses": {
48114          "200": {
48115            "description": "OK",
48116            "schema": {
48117              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler"
48118            }
48119          },
48120          "201": {
48121            "description": "Created",
48122            "schema": {
48123              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler"
48124            }
48125          },
48126          "401": {
48127            "description": "Unauthorized"
48128          }
48129        },
48130        "schemes": [
48131          "https"
48132        ],
48133        "tags": [
48134          "autoscaling_v1"
48135        ],
48136        "x-kubernetes-action": "patch",
48137        "x-kubernetes-group-version-kind": {
48138          "group": "autoscaling",
48139          "kind": "HorizontalPodAutoscaler",
48140          "version": "v1"
48141        }
48142      },
48143      "put": {
48144        "consumes": [
48145          "*/*"
48146        ],
48147        "description": "replace the specified HorizontalPodAutoscaler",
48148        "operationId": "replaceAutoscalingV1NamespacedHorizontalPodAutoscaler",
48149        "parameters": [
48150          {
48151            "in": "body",
48152            "name": "body",
48153            "required": true,
48154            "schema": {
48155              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler"
48156            }
48157          },
48158          {
48159            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
48160            "in": "query",
48161            "name": "dryRun",
48162            "type": "string",
48163            "uniqueItems": true
48164          },
48165          {
48166            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
48167            "in": "query",
48168            "name": "fieldManager",
48169            "type": "string",
48170            "uniqueItems": true
48171          }
48172        ],
48173        "produces": [
48174          "application/json",
48175          "application/yaml",
48176          "application/vnd.kubernetes.protobuf"
48177        ],
48178        "responses": {
48179          "200": {
48180            "description": "OK",
48181            "schema": {
48182              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler"
48183            }
48184          },
48185          "201": {
48186            "description": "Created",
48187            "schema": {
48188              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler"
48189            }
48190          },
48191          "401": {
48192            "description": "Unauthorized"
48193          }
48194        },
48195        "schemes": [
48196          "https"
48197        ],
48198        "tags": [
48199          "autoscaling_v1"
48200        ],
48201        "x-kubernetes-action": "put",
48202        "x-kubernetes-group-version-kind": {
48203          "group": "autoscaling",
48204          "kind": "HorizontalPodAutoscaler",
48205          "version": "v1"
48206        }
48207      }
48208    },
48209    "/apis/autoscaling/v1/namespaces/{namespace}/horizontalpodautoscalers/{name}/status": {
48210      "get": {
48211        "consumes": [
48212          "*/*"
48213        ],
48214        "description": "read status of the specified HorizontalPodAutoscaler",
48215        "operationId": "readAutoscalingV1NamespacedHorizontalPodAutoscalerStatus",
48216        "produces": [
48217          "application/json",
48218          "application/yaml",
48219          "application/vnd.kubernetes.protobuf"
48220        ],
48221        "responses": {
48222          "200": {
48223            "description": "OK",
48224            "schema": {
48225              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler"
48226            }
48227          },
48228          "401": {
48229            "description": "Unauthorized"
48230          }
48231        },
48232        "schemes": [
48233          "https"
48234        ],
48235        "tags": [
48236          "autoscaling_v1"
48237        ],
48238        "x-kubernetes-action": "get",
48239        "x-kubernetes-group-version-kind": {
48240          "group": "autoscaling",
48241          "kind": "HorizontalPodAutoscaler",
48242          "version": "v1"
48243        }
48244      },
48245      "parameters": [
48246        {
48247          "description": "name of the HorizontalPodAutoscaler",
48248          "in": "path",
48249          "name": "name",
48250          "required": true,
48251          "type": "string",
48252          "uniqueItems": true
48253        },
48254        {
48255          "description": "object name and auth scope, such as for teams and projects",
48256          "in": "path",
48257          "name": "namespace",
48258          "required": true,
48259          "type": "string",
48260          "uniqueItems": true
48261        },
48262        {
48263          "description": "If 'true', then the output is pretty printed.",
48264          "in": "query",
48265          "name": "pretty",
48266          "type": "string",
48267          "uniqueItems": true
48268        }
48269      ],
48270      "patch": {
48271        "consumes": [
48272          "application/json-patch+json",
48273          "application/merge-patch+json",
48274          "application/strategic-merge-patch+json",
48275          "application/apply-patch+yaml"
48276        ],
48277        "description": "partially update status of the specified HorizontalPodAutoscaler",
48278        "operationId": "patchAutoscalingV1NamespacedHorizontalPodAutoscalerStatus",
48279        "parameters": [
48280          {
48281            "in": "body",
48282            "name": "body",
48283            "required": true,
48284            "schema": {
48285              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
48286            }
48287          },
48288          {
48289            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
48290            "in": "query",
48291            "name": "dryRun",
48292            "type": "string",
48293            "uniqueItems": true
48294          },
48295          {
48296            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
48297            "in": "query",
48298            "name": "fieldManager",
48299            "type": "string",
48300            "uniqueItems": true
48301          },
48302          {
48303            "description": "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.",
48304            "in": "query",
48305            "name": "force",
48306            "type": "boolean",
48307            "uniqueItems": true
48308          }
48309        ],
48310        "produces": [
48311          "application/json",
48312          "application/yaml",
48313          "application/vnd.kubernetes.protobuf"
48314        ],
48315        "responses": {
48316          "200": {
48317            "description": "OK",
48318            "schema": {
48319              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler"
48320            }
48321          },
48322          "201": {
48323            "description": "Created",
48324            "schema": {
48325              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler"
48326            }
48327          },
48328          "401": {
48329            "description": "Unauthorized"
48330          }
48331        },
48332        "schemes": [
48333          "https"
48334        ],
48335        "tags": [
48336          "autoscaling_v1"
48337        ],
48338        "x-kubernetes-action": "patch",
48339        "x-kubernetes-group-version-kind": {
48340          "group": "autoscaling",
48341          "kind": "HorizontalPodAutoscaler",
48342          "version": "v1"
48343        }
48344      },
48345      "put": {
48346        "consumes": [
48347          "*/*"
48348        ],
48349        "description": "replace status of the specified HorizontalPodAutoscaler",
48350        "operationId": "replaceAutoscalingV1NamespacedHorizontalPodAutoscalerStatus",
48351        "parameters": [
48352          {
48353            "in": "body",
48354            "name": "body",
48355            "required": true,
48356            "schema": {
48357              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler"
48358            }
48359          },
48360          {
48361            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
48362            "in": "query",
48363            "name": "dryRun",
48364            "type": "string",
48365            "uniqueItems": true
48366          },
48367          {
48368            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
48369            "in": "query",
48370            "name": "fieldManager",
48371            "type": "string",
48372            "uniqueItems": true
48373          }
48374        ],
48375        "produces": [
48376          "application/json",
48377          "application/yaml",
48378          "application/vnd.kubernetes.protobuf"
48379        ],
48380        "responses": {
48381          "200": {
48382            "description": "OK",
48383            "schema": {
48384              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler"
48385            }
48386          },
48387          "201": {
48388            "description": "Created",
48389            "schema": {
48390              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler"
48391            }
48392          },
48393          "401": {
48394            "description": "Unauthorized"
48395          }
48396        },
48397        "schemes": [
48398          "https"
48399        ],
48400        "tags": [
48401          "autoscaling_v1"
48402        ],
48403        "x-kubernetes-action": "put",
48404        "x-kubernetes-group-version-kind": {
48405          "group": "autoscaling",
48406          "kind": "HorizontalPodAutoscaler",
48407          "version": "v1"
48408        }
48409      }
48410    },
48411    "/apis/autoscaling/v1/watch/horizontalpodautoscalers": {
48412      "get": {
48413        "consumes": [
48414          "*/*"
48415        ],
48416        "description": "watch individual changes to a list of HorizontalPodAutoscaler. deprecated: use the 'watch' parameter with a list operation instead.",
48417        "operationId": "watchAutoscalingV1HorizontalPodAutoscalerListForAllNamespaces",
48418        "produces": [
48419          "application/json",
48420          "application/yaml",
48421          "application/vnd.kubernetes.protobuf",
48422          "application/json;stream=watch",
48423          "application/vnd.kubernetes.protobuf;stream=watch"
48424        ],
48425        "responses": {
48426          "200": {
48427            "description": "OK",
48428            "schema": {
48429              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
48430            }
48431          },
48432          "401": {
48433            "description": "Unauthorized"
48434          }
48435        },
48436        "schemes": [
48437          "https"
48438        ],
48439        "tags": [
48440          "autoscaling_v1"
48441        ],
48442        "x-kubernetes-action": "watchlist",
48443        "x-kubernetes-group-version-kind": {
48444          "group": "autoscaling",
48445          "kind": "HorizontalPodAutoscaler",
48446          "version": "v1"
48447        }
48448      },
48449      "parameters": [
48450        {
48451          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
48452          "in": "query",
48453          "name": "allowWatchBookmarks",
48454          "type": "boolean",
48455          "uniqueItems": true
48456        },
48457        {
48458          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
48459          "in": "query",
48460          "name": "continue",
48461          "type": "string",
48462          "uniqueItems": true
48463        },
48464        {
48465          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
48466          "in": "query",
48467          "name": "fieldSelector",
48468          "type": "string",
48469          "uniqueItems": true
48470        },
48471        {
48472          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
48473          "in": "query",
48474          "name": "labelSelector",
48475          "type": "string",
48476          "uniqueItems": true
48477        },
48478        {
48479          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
48480          "in": "query",
48481          "name": "limit",
48482          "type": "integer",
48483          "uniqueItems": true
48484        },
48485        {
48486          "description": "If 'true', then the output is pretty printed.",
48487          "in": "query",
48488          "name": "pretty",
48489          "type": "string",
48490          "uniqueItems": true
48491        },
48492        {
48493          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
48494          "in": "query",
48495          "name": "resourceVersion",
48496          "type": "string",
48497          "uniqueItems": true
48498        },
48499        {
48500          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
48501          "in": "query",
48502          "name": "resourceVersionMatch",
48503          "type": "string",
48504          "uniqueItems": true
48505        },
48506        {
48507          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
48508          "in": "query",
48509          "name": "timeoutSeconds",
48510          "type": "integer",
48511          "uniqueItems": true
48512        },
48513        {
48514          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
48515          "in": "query",
48516          "name": "watch",
48517          "type": "boolean",
48518          "uniqueItems": true
48519        }
48520      ]
48521    },
48522    "/apis/autoscaling/v1/watch/namespaces/{namespace}/horizontalpodautoscalers": {
48523      "get": {
48524        "consumes": [
48525          "*/*"
48526        ],
48527        "description": "watch individual changes to a list of HorizontalPodAutoscaler. deprecated: use the 'watch' parameter with a list operation instead.",
48528        "operationId": "watchAutoscalingV1NamespacedHorizontalPodAutoscalerList",
48529        "produces": [
48530          "application/json",
48531          "application/yaml",
48532          "application/vnd.kubernetes.protobuf",
48533          "application/json;stream=watch",
48534          "application/vnd.kubernetes.protobuf;stream=watch"
48535        ],
48536        "responses": {
48537          "200": {
48538            "description": "OK",
48539            "schema": {
48540              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
48541            }
48542          },
48543          "401": {
48544            "description": "Unauthorized"
48545          }
48546        },
48547        "schemes": [
48548          "https"
48549        ],
48550        "tags": [
48551          "autoscaling_v1"
48552        ],
48553        "x-kubernetes-action": "watchlist",
48554        "x-kubernetes-group-version-kind": {
48555          "group": "autoscaling",
48556          "kind": "HorizontalPodAutoscaler",
48557          "version": "v1"
48558        }
48559      },
48560      "parameters": [
48561        {
48562          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
48563          "in": "query",
48564          "name": "allowWatchBookmarks",
48565          "type": "boolean",
48566          "uniqueItems": true
48567        },
48568        {
48569          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
48570          "in": "query",
48571          "name": "continue",
48572          "type": "string",
48573          "uniqueItems": true
48574        },
48575        {
48576          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
48577          "in": "query",
48578          "name": "fieldSelector",
48579          "type": "string",
48580          "uniqueItems": true
48581        },
48582        {
48583          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
48584          "in": "query",
48585          "name": "labelSelector",
48586          "type": "string",
48587          "uniqueItems": true
48588        },
48589        {
48590          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
48591          "in": "query",
48592          "name": "limit",
48593          "type": "integer",
48594          "uniqueItems": true
48595        },
48596        {
48597          "description": "object name and auth scope, such as for teams and projects",
48598          "in": "path",
48599          "name": "namespace",
48600          "required": true,
48601          "type": "string",
48602          "uniqueItems": true
48603        },
48604        {
48605          "description": "If 'true', then the output is pretty printed.",
48606          "in": "query",
48607          "name": "pretty",
48608          "type": "string",
48609          "uniqueItems": true
48610        },
48611        {
48612          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
48613          "in": "query",
48614          "name": "resourceVersion",
48615          "type": "string",
48616          "uniqueItems": true
48617        },
48618        {
48619          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
48620          "in": "query",
48621          "name": "resourceVersionMatch",
48622          "type": "string",
48623          "uniqueItems": true
48624        },
48625        {
48626          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
48627          "in": "query",
48628          "name": "timeoutSeconds",
48629          "type": "integer",
48630          "uniqueItems": true
48631        },
48632        {
48633          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
48634          "in": "query",
48635          "name": "watch",
48636          "type": "boolean",
48637          "uniqueItems": true
48638        }
48639      ]
48640    },
48641    "/apis/autoscaling/v1/watch/namespaces/{namespace}/horizontalpodautoscalers/{name}": {
48642      "get": {
48643        "consumes": [
48644          "*/*"
48645        ],
48646        "description": "watch changes to an object of kind HorizontalPodAutoscaler. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.",
48647        "operationId": "watchAutoscalingV1NamespacedHorizontalPodAutoscaler",
48648        "produces": [
48649          "application/json",
48650          "application/yaml",
48651          "application/vnd.kubernetes.protobuf",
48652          "application/json;stream=watch",
48653          "application/vnd.kubernetes.protobuf;stream=watch"
48654        ],
48655        "responses": {
48656          "200": {
48657            "description": "OK",
48658            "schema": {
48659              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
48660            }
48661          },
48662          "401": {
48663            "description": "Unauthorized"
48664          }
48665        },
48666        "schemes": [
48667          "https"
48668        ],
48669        "tags": [
48670          "autoscaling_v1"
48671        ],
48672        "x-kubernetes-action": "watch",
48673        "x-kubernetes-group-version-kind": {
48674          "group": "autoscaling",
48675          "kind": "HorizontalPodAutoscaler",
48676          "version": "v1"
48677        }
48678      },
48679      "parameters": [
48680        {
48681          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
48682          "in": "query",
48683          "name": "allowWatchBookmarks",
48684          "type": "boolean",
48685          "uniqueItems": true
48686        },
48687        {
48688          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
48689          "in": "query",
48690          "name": "continue",
48691          "type": "string",
48692          "uniqueItems": true
48693        },
48694        {
48695          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
48696          "in": "query",
48697          "name": "fieldSelector",
48698          "type": "string",
48699          "uniqueItems": true
48700        },
48701        {
48702          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
48703          "in": "query",
48704          "name": "labelSelector",
48705          "type": "string",
48706          "uniqueItems": true
48707        },
48708        {
48709          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
48710          "in": "query",
48711          "name": "limit",
48712          "type": "integer",
48713          "uniqueItems": true
48714        },
48715        {
48716          "description": "name of the HorizontalPodAutoscaler",
48717          "in": "path",
48718          "name": "name",
48719          "required": true,
48720          "type": "string",
48721          "uniqueItems": true
48722        },
48723        {
48724          "description": "object name and auth scope, such as for teams and projects",
48725          "in": "path",
48726          "name": "namespace",
48727          "required": true,
48728          "type": "string",
48729          "uniqueItems": true
48730        },
48731        {
48732          "description": "If 'true', then the output is pretty printed.",
48733          "in": "query",
48734          "name": "pretty",
48735          "type": "string",
48736          "uniqueItems": true
48737        },
48738        {
48739          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
48740          "in": "query",
48741          "name": "resourceVersion",
48742          "type": "string",
48743          "uniqueItems": true
48744        },
48745        {
48746          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
48747          "in": "query",
48748          "name": "resourceVersionMatch",
48749          "type": "string",
48750          "uniqueItems": true
48751        },
48752        {
48753          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
48754          "in": "query",
48755          "name": "timeoutSeconds",
48756          "type": "integer",
48757          "uniqueItems": true
48758        },
48759        {
48760          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
48761          "in": "query",
48762          "name": "watch",
48763          "type": "boolean",
48764          "uniqueItems": true
48765        }
48766      ]
48767    },
48768    "/apis/autoscaling/v2beta1/": {
48769      "get": {
48770        "consumes": [
48771          "application/json",
48772          "application/yaml",
48773          "application/vnd.kubernetes.protobuf"
48774        ],
48775        "description": "get available resources",
48776        "operationId": "getAutoscalingV2beta1APIResources",
48777        "produces": [
48778          "application/json",
48779          "application/yaml",
48780          "application/vnd.kubernetes.protobuf"
48781        ],
48782        "responses": {
48783          "200": {
48784            "description": "OK",
48785            "schema": {
48786              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
48787            }
48788          },
48789          "401": {
48790            "description": "Unauthorized"
48791          }
48792        },
48793        "schemes": [
48794          "https"
48795        ],
48796        "tags": [
48797          "autoscaling_v2beta1"
48798        ]
48799      }
48800    },
48801    "/apis/autoscaling/v2beta1/horizontalpodautoscalers": {
48802      "get": {
48803        "consumes": [
48804          "*/*"
48805        ],
48806        "description": "list or watch objects of kind HorizontalPodAutoscaler",
48807        "operationId": "listAutoscalingV2beta1HorizontalPodAutoscalerForAllNamespaces",
48808        "produces": [
48809          "application/json",
48810          "application/yaml",
48811          "application/vnd.kubernetes.protobuf",
48812          "application/json;stream=watch",
48813          "application/vnd.kubernetes.protobuf;stream=watch"
48814        ],
48815        "responses": {
48816          "200": {
48817            "description": "OK",
48818            "schema": {
48819              "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscalerList"
48820            }
48821          },
48822          "401": {
48823            "description": "Unauthorized"
48824          }
48825        },
48826        "schemes": [
48827          "https"
48828        ],
48829        "tags": [
48830          "autoscaling_v2beta1"
48831        ],
48832        "x-kubernetes-action": "list",
48833        "x-kubernetes-group-version-kind": {
48834          "group": "autoscaling",
48835          "kind": "HorizontalPodAutoscaler",
48836          "version": "v2beta1"
48837        }
48838      },
48839      "parameters": [
48840        {
48841          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
48842          "in": "query",
48843          "name": "allowWatchBookmarks",
48844          "type": "boolean",
48845          "uniqueItems": true
48846        },
48847        {
48848          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
48849          "in": "query",
48850          "name": "continue",
48851          "type": "string",
48852          "uniqueItems": true
48853        },
48854        {
48855          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
48856          "in": "query",
48857          "name": "fieldSelector",
48858          "type": "string",
48859          "uniqueItems": true
48860        },
48861        {
48862          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
48863          "in": "query",
48864          "name": "labelSelector",
48865          "type": "string",
48866          "uniqueItems": true
48867        },
48868        {
48869          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
48870          "in": "query",
48871          "name": "limit",
48872          "type": "integer",
48873          "uniqueItems": true
48874        },
48875        {
48876          "description": "If 'true', then the output is pretty printed.",
48877          "in": "query",
48878          "name": "pretty",
48879          "type": "string",
48880          "uniqueItems": true
48881        },
48882        {
48883          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
48884          "in": "query",
48885          "name": "resourceVersion",
48886          "type": "string",
48887          "uniqueItems": true
48888        },
48889        {
48890          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
48891          "in": "query",
48892          "name": "resourceVersionMatch",
48893          "type": "string",
48894          "uniqueItems": true
48895        },
48896        {
48897          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
48898          "in": "query",
48899          "name": "timeoutSeconds",
48900          "type": "integer",
48901          "uniqueItems": true
48902        },
48903        {
48904          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
48905          "in": "query",
48906          "name": "watch",
48907          "type": "boolean",
48908          "uniqueItems": true
48909        }
48910      ]
48911    },
48912    "/apis/autoscaling/v2beta1/namespaces/{namespace}/horizontalpodautoscalers": {
48913      "delete": {
48914        "consumes": [
48915          "*/*"
48916        ],
48917        "description": "delete collection of HorizontalPodAutoscaler",
48918        "operationId": "deleteAutoscalingV2beta1CollectionNamespacedHorizontalPodAutoscaler",
48919        "parameters": [
48920          {
48921            "in": "body",
48922            "name": "body",
48923            "schema": {
48924              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
48925            }
48926          },
48927          {
48928            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
48929            "in": "query",
48930            "name": "continue",
48931            "type": "string",
48932            "uniqueItems": true
48933          },
48934          {
48935            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
48936            "in": "query",
48937            "name": "dryRun",
48938            "type": "string",
48939            "uniqueItems": true
48940          },
48941          {
48942            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
48943            "in": "query",
48944            "name": "fieldSelector",
48945            "type": "string",
48946            "uniqueItems": true
48947          },
48948          {
48949            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
48950            "in": "query",
48951            "name": "gracePeriodSeconds",
48952            "type": "integer",
48953            "uniqueItems": true
48954          },
48955          {
48956            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
48957            "in": "query",
48958            "name": "labelSelector",
48959            "type": "string",
48960            "uniqueItems": true
48961          },
48962          {
48963            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
48964            "in": "query",
48965            "name": "limit",
48966            "type": "integer",
48967            "uniqueItems": true
48968          },
48969          {
48970            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
48971            "in": "query",
48972            "name": "orphanDependents",
48973            "type": "boolean",
48974            "uniqueItems": true
48975          },
48976          {
48977            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
48978            "in": "query",
48979            "name": "propagationPolicy",
48980            "type": "string",
48981            "uniqueItems": true
48982          },
48983          {
48984            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
48985            "in": "query",
48986            "name": "resourceVersion",
48987            "type": "string",
48988            "uniqueItems": true
48989          },
48990          {
48991            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
48992            "in": "query",
48993            "name": "resourceVersionMatch",
48994            "type": "string",
48995            "uniqueItems": true
48996          },
48997          {
48998            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
48999            "in": "query",
49000            "name": "timeoutSeconds",
49001            "type": "integer",
49002            "uniqueItems": true
49003          }
49004        ],
49005        "produces": [
49006          "application/json",
49007          "application/yaml",
49008          "application/vnd.kubernetes.protobuf"
49009        ],
49010        "responses": {
49011          "200": {
49012            "description": "OK",
49013            "schema": {
49014              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
49015            }
49016          },
49017          "401": {
49018            "description": "Unauthorized"
49019          }
49020        },
49021        "schemes": [
49022          "https"
49023        ],
49024        "tags": [
49025          "autoscaling_v2beta1"
49026        ],
49027        "x-kubernetes-action": "deletecollection",
49028        "x-kubernetes-group-version-kind": {
49029          "group": "autoscaling",
49030          "kind": "HorizontalPodAutoscaler",
49031          "version": "v2beta1"
49032        }
49033      },
49034      "get": {
49035        "consumes": [
49036          "*/*"
49037        ],
49038        "description": "list or watch objects of kind HorizontalPodAutoscaler",
49039        "operationId": "listAutoscalingV2beta1NamespacedHorizontalPodAutoscaler",
49040        "parameters": [
49041          {
49042            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
49043            "in": "query",
49044            "name": "allowWatchBookmarks",
49045            "type": "boolean",
49046            "uniqueItems": true
49047          },
49048          {
49049            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
49050            "in": "query",
49051            "name": "continue",
49052            "type": "string",
49053            "uniqueItems": true
49054          },
49055          {
49056            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
49057            "in": "query",
49058            "name": "fieldSelector",
49059            "type": "string",
49060            "uniqueItems": true
49061          },
49062          {
49063            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
49064            "in": "query",
49065            "name": "labelSelector",
49066            "type": "string",
49067            "uniqueItems": true
49068          },
49069          {
49070            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
49071            "in": "query",
49072            "name": "limit",
49073            "type": "integer",
49074            "uniqueItems": true
49075          },
49076          {
49077            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
49078            "in": "query",
49079            "name": "resourceVersion",
49080            "type": "string",
49081            "uniqueItems": true
49082          },
49083          {
49084            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
49085            "in": "query",
49086            "name": "resourceVersionMatch",
49087            "type": "string",
49088            "uniqueItems": true
49089          },
49090          {
49091            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
49092            "in": "query",
49093            "name": "timeoutSeconds",
49094            "type": "integer",
49095            "uniqueItems": true
49096          },
49097          {
49098            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
49099            "in": "query",
49100            "name": "watch",
49101            "type": "boolean",
49102            "uniqueItems": true
49103          }
49104        ],
49105        "produces": [
49106          "application/json",
49107          "application/yaml",
49108          "application/vnd.kubernetes.protobuf",
49109          "application/json;stream=watch",
49110          "application/vnd.kubernetes.protobuf;stream=watch"
49111        ],
49112        "responses": {
49113          "200": {
49114            "description": "OK",
49115            "schema": {
49116              "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscalerList"
49117            }
49118          },
49119          "401": {
49120            "description": "Unauthorized"
49121          }
49122        },
49123        "schemes": [
49124          "https"
49125        ],
49126        "tags": [
49127          "autoscaling_v2beta1"
49128        ],
49129        "x-kubernetes-action": "list",
49130        "x-kubernetes-group-version-kind": {
49131          "group": "autoscaling",
49132          "kind": "HorizontalPodAutoscaler",
49133          "version": "v2beta1"
49134        }
49135      },
49136      "parameters": [
49137        {
49138          "description": "object name and auth scope, such as for teams and projects",
49139          "in": "path",
49140          "name": "namespace",
49141          "required": true,
49142          "type": "string",
49143          "uniqueItems": true
49144        },
49145        {
49146          "description": "If 'true', then the output is pretty printed.",
49147          "in": "query",
49148          "name": "pretty",
49149          "type": "string",
49150          "uniqueItems": true
49151        }
49152      ],
49153      "post": {
49154        "consumes": [
49155          "*/*"
49156        ],
49157        "description": "create a HorizontalPodAutoscaler",
49158        "operationId": "createAutoscalingV2beta1NamespacedHorizontalPodAutoscaler",
49159        "parameters": [
49160          {
49161            "in": "body",
49162            "name": "body",
49163            "required": true,
49164            "schema": {
49165              "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscaler"
49166            }
49167          },
49168          {
49169            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
49170            "in": "query",
49171            "name": "dryRun",
49172            "type": "string",
49173            "uniqueItems": true
49174          },
49175          {
49176            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
49177            "in": "query",
49178            "name": "fieldManager",
49179            "type": "string",
49180            "uniqueItems": true
49181          }
49182        ],
49183        "produces": [
49184          "application/json",
49185          "application/yaml",
49186          "application/vnd.kubernetes.protobuf"
49187        ],
49188        "responses": {
49189          "200": {
49190            "description": "OK",
49191            "schema": {
49192              "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscaler"
49193            }
49194          },
49195          "201": {
49196            "description": "Created",
49197            "schema": {
49198              "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscaler"
49199            }
49200          },
49201          "202": {
49202            "description": "Accepted",
49203            "schema": {
49204              "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscaler"
49205            }
49206          },
49207          "401": {
49208            "description": "Unauthorized"
49209          }
49210        },
49211        "schemes": [
49212          "https"
49213        ],
49214        "tags": [
49215          "autoscaling_v2beta1"
49216        ],
49217        "x-kubernetes-action": "post",
49218        "x-kubernetes-group-version-kind": {
49219          "group": "autoscaling",
49220          "kind": "HorizontalPodAutoscaler",
49221          "version": "v2beta1"
49222        }
49223      }
49224    },
49225    "/apis/autoscaling/v2beta1/namespaces/{namespace}/horizontalpodautoscalers/{name}": {
49226      "delete": {
49227        "consumes": [
49228          "*/*"
49229        ],
49230        "description": "delete a HorizontalPodAutoscaler",
49231        "operationId": "deleteAutoscalingV2beta1NamespacedHorizontalPodAutoscaler",
49232        "parameters": [
49233          {
49234            "in": "body",
49235            "name": "body",
49236            "schema": {
49237              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
49238            }
49239          },
49240          {
49241            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
49242            "in": "query",
49243            "name": "dryRun",
49244            "type": "string",
49245            "uniqueItems": true
49246          },
49247          {
49248            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
49249            "in": "query",
49250            "name": "gracePeriodSeconds",
49251            "type": "integer",
49252            "uniqueItems": true
49253          },
49254          {
49255            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
49256            "in": "query",
49257            "name": "orphanDependents",
49258            "type": "boolean",
49259            "uniqueItems": true
49260          },
49261          {
49262            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
49263            "in": "query",
49264            "name": "propagationPolicy",
49265            "type": "string",
49266            "uniqueItems": true
49267          }
49268        ],
49269        "produces": [
49270          "application/json",
49271          "application/yaml",
49272          "application/vnd.kubernetes.protobuf"
49273        ],
49274        "responses": {
49275          "200": {
49276            "description": "OK",
49277            "schema": {
49278              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
49279            }
49280          },
49281          "202": {
49282            "description": "Accepted",
49283            "schema": {
49284              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
49285            }
49286          },
49287          "401": {
49288            "description": "Unauthorized"
49289          }
49290        },
49291        "schemes": [
49292          "https"
49293        ],
49294        "tags": [
49295          "autoscaling_v2beta1"
49296        ],
49297        "x-kubernetes-action": "delete",
49298        "x-kubernetes-group-version-kind": {
49299          "group": "autoscaling",
49300          "kind": "HorizontalPodAutoscaler",
49301          "version": "v2beta1"
49302        }
49303      },
49304      "get": {
49305        "consumes": [
49306          "*/*"
49307        ],
49308        "description": "read the specified HorizontalPodAutoscaler",
49309        "operationId": "readAutoscalingV2beta1NamespacedHorizontalPodAutoscaler",
49310        "produces": [
49311          "application/json",
49312          "application/yaml",
49313          "application/vnd.kubernetes.protobuf"
49314        ],
49315        "responses": {
49316          "200": {
49317            "description": "OK",
49318            "schema": {
49319              "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscaler"
49320            }
49321          },
49322          "401": {
49323            "description": "Unauthorized"
49324          }
49325        },
49326        "schemes": [
49327          "https"
49328        ],
49329        "tags": [
49330          "autoscaling_v2beta1"
49331        ],
49332        "x-kubernetes-action": "get",
49333        "x-kubernetes-group-version-kind": {
49334          "group": "autoscaling",
49335          "kind": "HorizontalPodAutoscaler",
49336          "version": "v2beta1"
49337        }
49338      },
49339      "parameters": [
49340        {
49341          "description": "name of the HorizontalPodAutoscaler",
49342          "in": "path",
49343          "name": "name",
49344          "required": true,
49345          "type": "string",
49346          "uniqueItems": true
49347        },
49348        {
49349          "description": "object name and auth scope, such as for teams and projects",
49350          "in": "path",
49351          "name": "namespace",
49352          "required": true,
49353          "type": "string",
49354          "uniqueItems": true
49355        },
49356        {
49357          "description": "If 'true', then the output is pretty printed.",
49358          "in": "query",
49359          "name": "pretty",
49360          "type": "string",
49361          "uniqueItems": true
49362        }
49363      ],
49364      "patch": {
49365        "consumes": [
49366          "application/json-patch+json",
49367          "application/merge-patch+json",
49368          "application/strategic-merge-patch+json",
49369          "application/apply-patch+yaml"
49370        ],
49371        "description": "partially update the specified HorizontalPodAutoscaler",
49372        "operationId": "patchAutoscalingV2beta1NamespacedHorizontalPodAutoscaler",
49373        "parameters": [
49374          {
49375            "in": "body",
49376            "name": "body",
49377            "required": true,
49378            "schema": {
49379              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
49380            }
49381          },
49382          {
49383            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
49384            "in": "query",
49385            "name": "dryRun",
49386            "type": "string",
49387            "uniqueItems": true
49388          },
49389          {
49390            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
49391            "in": "query",
49392            "name": "fieldManager",
49393            "type": "string",
49394            "uniqueItems": true
49395          },
49396          {
49397            "description": "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.",
49398            "in": "query",
49399            "name": "force",
49400            "type": "boolean",
49401            "uniqueItems": true
49402          }
49403        ],
49404        "produces": [
49405          "application/json",
49406          "application/yaml",
49407          "application/vnd.kubernetes.protobuf"
49408        ],
49409        "responses": {
49410          "200": {
49411            "description": "OK",
49412            "schema": {
49413              "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscaler"
49414            }
49415          },
49416          "201": {
49417            "description": "Created",
49418            "schema": {
49419              "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscaler"
49420            }
49421          },
49422          "401": {
49423            "description": "Unauthorized"
49424          }
49425        },
49426        "schemes": [
49427          "https"
49428        ],
49429        "tags": [
49430          "autoscaling_v2beta1"
49431        ],
49432        "x-kubernetes-action": "patch",
49433        "x-kubernetes-group-version-kind": {
49434          "group": "autoscaling",
49435          "kind": "HorizontalPodAutoscaler",
49436          "version": "v2beta1"
49437        }
49438      },
49439      "put": {
49440        "consumes": [
49441          "*/*"
49442        ],
49443        "description": "replace the specified HorizontalPodAutoscaler",
49444        "operationId": "replaceAutoscalingV2beta1NamespacedHorizontalPodAutoscaler",
49445        "parameters": [
49446          {
49447            "in": "body",
49448            "name": "body",
49449            "required": true,
49450            "schema": {
49451              "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscaler"
49452            }
49453          },
49454          {
49455            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
49456            "in": "query",
49457            "name": "dryRun",
49458            "type": "string",
49459            "uniqueItems": true
49460          },
49461          {
49462            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
49463            "in": "query",
49464            "name": "fieldManager",
49465            "type": "string",
49466            "uniqueItems": true
49467          }
49468        ],
49469        "produces": [
49470          "application/json",
49471          "application/yaml",
49472          "application/vnd.kubernetes.protobuf"
49473        ],
49474        "responses": {
49475          "200": {
49476            "description": "OK",
49477            "schema": {
49478              "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscaler"
49479            }
49480          },
49481          "201": {
49482            "description": "Created",
49483            "schema": {
49484              "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscaler"
49485            }
49486          },
49487          "401": {
49488            "description": "Unauthorized"
49489          }
49490        },
49491        "schemes": [
49492          "https"
49493        ],
49494        "tags": [
49495          "autoscaling_v2beta1"
49496        ],
49497        "x-kubernetes-action": "put",
49498        "x-kubernetes-group-version-kind": {
49499          "group": "autoscaling",
49500          "kind": "HorizontalPodAutoscaler",
49501          "version": "v2beta1"
49502        }
49503      }
49504    },
49505    "/apis/autoscaling/v2beta1/namespaces/{namespace}/horizontalpodautoscalers/{name}/status": {
49506      "get": {
49507        "consumes": [
49508          "*/*"
49509        ],
49510        "description": "read status of the specified HorizontalPodAutoscaler",
49511        "operationId": "readAutoscalingV2beta1NamespacedHorizontalPodAutoscalerStatus",
49512        "produces": [
49513          "application/json",
49514          "application/yaml",
49515          "application/vnd.kubernetes.protobuf"
49516        ],
49517        "responses": {
49518          "200": {
49519            "description": "OK",
49520            "schema": {
49521              "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscaler"
49522            }
49523          },
49524          "401": {
49525            "description": "Unauthorized"
49526          }
49527        },
49528        "schemes": [
49529          "https"
49530        ],
49531        "tags": [
49532          "autoscaling_v2beta1"
49533        ],
49534        "x-kubernetes-action": "get",
49535        "x-kubernetes-group-version-kind": {
49536          "group": "autoscaling",
49537          "kind": "HorizontalPodAutoscaler",
49538          "version": "v2beta1"
49539        }
49540      },
49541      "parameters": [
49542        {
49543          "description": "name of the HorizontalPodAutoscaler",
49544          "in": "path",
49545          "name": "name",
49546          "required": true,
49547          "type": "string",
49548          "uniqueItems": true
49549        },
49550        {
49551          "description": "object name and auth scope, such as for teams and projects",
49552          "in": "path",
49553          "name": "namespace",
49554          "required": true,
49555          "type": "string",
49556          "uniqueItems": true
49557        },
49558        {
49559          "description": "If 'true', then the output is pretty printed.",
49560          "in": "query",
49561          "name": "pretty",
49562          "type": "string",
49563          "uniqueItems": true
49564        }
49565      ],
49566      "patch": {
49567        "consumes": [
49568          "application/json-patch+json",
49569          "application/merge-patch+json",
49570          "application/strategic-merge-patch+json",
49571          "application/apply-patch+yaml"
49572        ],
49573        "description": "partially update status of the specified HorizontalPodAutoscaler",
49574        "operationId": "patchAutoscalingV2beta1NamespacedHorizontalPodAutoscalerStatus",
49575        "parameters": [
49576          {
49577            "in": "body",
49578            "name": "body",
49579            "required": true,
49580            "schema": {
49581              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
49582            }
49583          },
49584          {
49585            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
49586            "in": "query",
49587            "name": "dryRun",
49588            "type": "string",
49589            "uniqueItems": true
49590          },
49591          {
49592            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
49593            "in": "query",
49594            "name": "fieldManager",
49595            "type": "string",
49596            "uniqueItems": true
49597          },
49598          {
49599            "description": "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.",
49600            "in": "query",
49601            "name": "force",
49602            "type": "boolean",
49603            "uniqueItems": true
49604          }
49605        ],
49606        "produces": [
49607          "application/json",
49608          "application/yaml",
49609          "application/vnd.kubernetes.protobuf"
49610        ],
49611        "responses": {
49612          "200": {
49613            "description": "OK",
49614            "schema": {
49615              "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscaler"
49616            }
49617          },
49618          "201": {
49619            "description": "Created",
49620            "schema": {
49621              "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscaler"
49622            }
49623          },
49624          "401": {
49625            "description": "Unauthorized"
49626          }
49627        },
49628        "schemes": [
49629          "https"
49630        ],
49631        "tags": [
49632          "autoscaling_v2beta1"
49633        ],
49634        "x-kubernetes-action": "patch",
49635        "x-kubernetes-group-version-kind": {
49636          "group": "autoscaling",
49637          "kind": "HorizontalPodAutoscaler",
49638          "version": "v2beta1"
49639        }
49640      },
49641      "put": {
49642        "consumes": [
49643          "*/*"
49644        ],
49645        "description": "replace status of the specified HorizontalPodAutoscaler",
49646        "operationId": "replaceAutoscalingV2beta1NamespacedHorizontalPodAutoscalerStatus",
49647        "parameters": [
49648          {
49649            "in": "body",
49650            "name": "body",
49651            "required": true,
49652            "schema": {
49653              "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscaler"
49654            }
49655          },
49656          {
49657            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
49658            "in": "query",
49659            "name": "dryRun",
49660            "type": "string",
49661            "uniqueItems": true
49662          },
49663          {
49664            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
49665            "in": "query",
49666            "name": "fieldManager",
49667            "type": "string",
49668            "uniqueItems": true
49669          }
49670        ],
49671        "produces": [
49672          "application/json",
49673          "application/yaml",
49674          "application/vnd.kubernetes.protobuf"
49675        ],
49676        "responses": {
49677          "200": {
49678            "description": "OK",
49679            "schema": {
49680              "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscaler"
49681            }
49682          },
49683          "201": {
49684            "description": "Created",
49685            "schema": {
49686              "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscaler"
49687            }
49688          },
49689          "401": {
49690            "description": "Unauthorized"
49691          }
49692        },
49693        "schemes": [
49694          "https"
49695        ],
49696        "tags": [
49697          "autoscaling_v2beta1"
49698        ],
49699        "x-kubernetes-action": "put",
49700        "x-kubernetes-group-version-kind": {
49701          "group": "autoscaling",
49702          "kind": "HorizontalPodAutoscaler",
49703          "version": "v2beta1"
49704        }
49705      }
49706    },
49707    "/apis/autoscaling/v2beta1/watch/horizontalpodautoscalers": {
49708      "get": {
49709        "consumes": [
49710          "*/*"
49711        ],
49712        "description": "watch individual changes to a list of HorizontalPodAutoscaler. deprecated: use the 'watch' parameter with a list operation instead.",
49713        "operationId": "watchAutoscalingV2beta1HorizontalPodAutoscalerListForAllNamespaces",
49714        "produces": [
49715          "application/json",
49716          "application/yaml",
49717          "application/vnd.kubernetes.protobuf",
49718          "application/json;stream=watch",
49719          "application/vnd.kubernetes.protobuf;stream=watch"
49720        ],
49721        "responses": {
49722          "200": {
49723            "description": "OK",
49724            "schema": {
49725              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
49726            }
49727          },
49728          "401": {
49729            "description": "Unauthorized"
49730          }
49731        },
49732        "schemes": [
49733          "https"
49734        ],
49735        "tags": [
49736          "autoscaling_v2beta1"
49737        ],
49738        "x-kubernetes-action": "watchlist",
49739        "x-kubernetes-group-version-kind": {
49740          "group": "autoscaling",
49741          "kind": "HorizontalPodAutoscaler",
49742          "version": "v2beta1"
49743        }
49744      },
49745      "parameters": [
49746        {
49747          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
49748          "in": "query",
49749          "name": "allowWatchBookmarks",
49750          "type": "boolean",
49751          "uniqueItems": true
49752        },
49753        {
49754          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
49755          "in": "query",
49756          "name": "continue",
49757          "type": "string",
49758          "uniqueItems": true
49759        },
49760        {
49761          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
49762          "in": "query",
49763          "name": "fieldSelector",
49764          "type": "string",
49765          "uniqueItems": true
49766        },
49767        {
49768          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
49769          "in": "query",
49770          "name": "labelSelector",
49771          "type": "string",
49772          "uniqueItems": true
49773        },
49774        {
49775          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
49776          "in": "query",
49777          "name": "limit",
49778          "type": "integer",
49779          "uniqueItems": true
49780        },
49781        {
49782          "description": "If 'true', then the output is pretty printed.",
49783          "in": "query",
49784          "name": "pretty",
49785          "type": "string",
49786          "uniqueItems": true
49787        },
49788        {
49789          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
49790          "in": "query",
49791          "name": "resourceVersion",
49792          "type": "string",
49793          "uniqueItems": true
49794        },
49795        {
49796          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
49797          "in": "query",
49798          "name": "resourceVersionMatch",
49799          "type": "string",
49800          "uniqueItems": true
49801        },
49802        {
49803          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
49804          "in": "query",
49805          "name": "timeoutSeconds",
49806          "type": "integer",
49807          "uniqueItems": true
49808        },
49809        {
49810          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
49811          "in": "query",
49812          "name": "watch",
49813          "type": "boolean",
49814          "uniqueItems": true
49815        }
49816      ]
49817    },
49818    "/apis/autoscaling/v2beta1/watch/namespaces/{namespace}/horizontalpodautoscalers": {
49819      "get": {
49820        "consumes": [
49821          "*/*"
49822        ],
49823        "description": "watch individual changes to a list of HorizontalPodAutoscaler. deprecated: use the 'watch' parameter with a list operation instead.",
49824        "operationId": "watchAutoscalingV2beta1NamespacedHorizontalPodAutoscalerList",
49825        "produces": [
49826          "application/json",
49827          "application/yaml",
49828          "application/vnd.kubernetes.protobuf",
49829          "application/json;stream=watch",
49830          "application/vnd.kubernetes.protobuf;stream=watch"
49831        ],
49832        "responses": {
49833          "200": {
49834            "description": "OK",
49835            "schema": {
49836              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
49837            }
49838          },
49839          "401": {
49840            "description": "Unauthorized"
49841          }
49842        },
49843        "schemes": [
49844          "https"
49845        ],
49846        "tags": [
49847          "autoscaling_v2beta1"
49848        ],
49849        "x-kubernetes-action": "watchlist",
49850        "x-kubernetes-group-version-kind": {
49851          "group": "autoscaling",
49852          "kind": "HorizontalPodAutoscaler",
49853          "version": "v2beta1"
49854        }
49855      },
49856      "parameters": [
49857        {
49858          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
49859          "in": "query",
49860          "name": "allowWatchBookmarks",
49861          "type": "boolean",
49862          "uniqueItems": true
49863        },
49864        {
49865          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
49866          "in": "query",
49867          "name": "continue",
49868          "type": "string",
49869          "uniqueItems": true
49870        },
49871        {
49872          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
49873          "in": "query",
49874          "name": "fieldSelector",
49875          "type": "string",
49876          "uniqueItems": true
49877        },
49878        {
49879          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
49880          "in": "query",
49881          "name": "labelSelector",
49882          "type": "string",
49883          "uniqueItems": true
49884        },
49885        {
49886          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
49887          "in": "query",
49888          "name": "limit",
49889          "type": "integer",
49890          "uniqueItems": true
49891        },
49892        {
49893          "description": "object name and auth scope, such as for teams and projects",
49894          "in": "path",
49895          "name": "namespace",
49896          "required": true,
49897          "type": "string",
49898          "uniqueItems": true
49899        },
49900        {
49901          "description": "If 'true', then the output is pretty printed.",
49902          "in": "query",
49903          "name": "pretty",
49904          "type": "string",
49905          "uniqueItems": true
49906        },
49907        {
49908          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
49909          "in": "query",
49910          "name": "resourceVersion",
49911          "type": "string",
49912          "uniqueItems": true
49913        },
49914        {
49915          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
49916          "in": "query",
49917          "name": "resourceVersionMatch",
49918          "type": "string",
49919          "uniqueItems": true
49920        },
49921        {
49922          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
49923          "in": "query",
49924          "name": "timeoutSeconds",
49925          "type": "integer",
49926          "uniqueItems": true
49927        },
49928        {
49929          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
49930          "in": "query",
49931          "name": "watch",
49932          "type": "boolean",
49933          "uniqueItems": true
49934        }
49935      ]
49936    },
49937    "/apis/autoscaling/v2beta1/watch/namespaces/{namespace}/horizontalpodautoscalers/{name}": {
49938      "get": {
49939        "consumes": [
49940          "*/*"
49941        ],
49942        "description": "watch changes to an object of kind HorizontalPodAutoscaler. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.",
49943        "operationId": "watchAutoscalingV2beta1NamespacedHorizontalPodAutoscaler",
49944        "produces": [
49945          "application/json",
49946          "application/yaml",
49947          "application/vnd.kubernetes.protobuf",
49948          "application/json;stream=watch",
49949          "application/vnd.kubernetes.protobuf;stream=watch"
49950        ],
49951        "responses": {
49952          "200": {
49953            "description": "OK",
49954            "schema": {
49955              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
49956            }
49957          },
49958          "401": {
49959            "description": "Unauthorized"
49960          }
49961        },
49962        "schemes": [
49963          "https"
49964        ],
49965        "tags": [
49966          "autoscaling_v2beta1"
49967        ],
49968        "x-kubernetes-action": "watch",
49969        "x-kubernetes-group-version-kind": {
49970          "group": "autoscaling",
49971          "kind": "HorizontalPodAutoscaler",
49972          "version": "v2beta1"
49973        }
49974      },
49975      "parameters": [
49976        {
49977          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
49978          "in": "query",
49979          "name": "allowWatchBookmarks",
49980          "type": "boolean",
49981          "uniqueItems": true
49982        },
49983        {
49984          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
49985          "in": "query",
49986          "name": "continue",
49987          "type": "string",
49988          "uniqueItems": true
49989        },
49990        {
49991          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
49992          "in": "query",
49993          "name": "fieldSelector",
49994          "type": "string",
49995          "uniqueItems": true
49996        },
49997        {
49998          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
49999          "in": "query",
50000          "name": "labelSelector",
50001          "type": "string",
50002          "uniqueItems": true
50003        },
50004        {
50005          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
50006          "in": "query",
50007          "name": "limit",
50008          "type": "integer",
50009          "uniqueItems": true
50010        },
50011        {
50012          "description": "name of the HorizontalPodAutoscaler",
50013          "in": "path",
50014          "name": "name",
50015          "required": true,
50016          "type": "string",
50017          "uniqueItems": true
50018        },
50019        {
50020          "description": "object name and auth scope, such as for teams and projects",
50021          "in": "path",
50022          "name": "namespace",
50023          "required": true,
50024          "type": "string",
50025          "uniqueItems": true
50026        },
50027        {
50028          "description": "If 'true', then the output is pretty printed.",
50029          "in": "query",
50030          "name": "pretty",
50031          "type": "string",
50032          "uniqueItems": true
50033        },
50034        {
50035          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
50036          "in": "query",
50037          "name": "resourceVersion",
50038          "type": "string",
50039          "uniqueItems": true
50040        },
50041        {
50042          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
50043          "in": "query",
50044          "name": "resourceVersionMatch",
50045          "type": "string",
50046          "uniqueItems": true
50047        },
50048        {
50049          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
50050          "in": "query",
50051          "name": "timeoutSeconds",
50052          "type": "integer",
50053          "uniqueItems": true
50054        },
50055        {
50056          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
50057          "in": "query",
50058          "name": "watch",
50059          "type": "boolean",
50060          "uniqueItems": true
50061        }
50062      ]
50063    },
50064    "/apis/autoscaling/v2beta2/": {
50065      "get": {
50066        "consumes": [
50067          "application/json",
50068          "application/yaml",
50069          "application/vnd.kubernetes.protobuf"
50070        ],
50071        "description": "get available resources",
50072        "operationId": "getAutoscalingV2beta2APIResources",
50073        "produces": [
50074          "application/json",
50075          "application/yaml",
50076          "application/vnd.kubernetes.protobuf"
50077        ],
50078        "responses": {
50079          "200": {
50080            "description": "OK",
50081            "schema": {
50082              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
50083            }
50084          },
50085          "401": {
50086            "description": "Unauthorized"
50087          }
50088        },
50089        "schemes": [
50090          "https"
50091        ],
50092        "tags": [
50093          "autoscaling_v2beta2"
50094        ]
50095      }
50096    },
50097    "/apis/autoscaling/v2beta2/horizontalpodautoscalers": {
50098      "get": {
50099        "consumes": [
50100          "*/*"
50101        ],
50102        "description": "list or watch objects of kind HorizontalPodAutoscaler",
50103        "operationId": "listAutoscalingV2beta2HorizontalPodAutoscalerForAllNamespaces",
50104        "produces": [
50105          "application/json",
50106          "application/yaml",
50107          "application/vnd.kubernetes.protobuf",
50108          "application/json;stream=watch",
50109          "application/vnd.kubernetes.protobuf;stream=watch"
50110        ],
50111        "responses": {
50112          "200": {
50113            "description": "OK",
50114            "schema": {
50115              "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscalerList"
50116            }
50117          },
50118          "401": {
50119            "description": "Unauthorized"
50120          }
50121        },
50122        "schemes": [
50123          "https"
50124        ],
50125        "tags": [
50126          "autoscaling_v2beta2"
50127        ],
50128        "x-kubernetes-action": "list",
50129        "x-kubernetes-group-version-kind": {
50130          "group": "autoscaling",
50131          "kind": "HorizontalPodAutoscaler",
50132          "version": "v2beta2"
50133        }
50134      },
50135      "parameters": [
50136        {
50137          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
50138          "in": "query",
50139          "name": "allowWatchBookmarks",
50140          "type": "boolean",
50141          "uniqueItems": true
50142        },
50143        {
50144          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
50145          "in": "query",
50146          "name": "continue",
50147          "type": "string",
50148          "uniqueItems": true
50149        },
50150        {
50151          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
50152          "in": "query",
50153          "name": "fieldSelector",
50154          "type": "string",
50155          "uniqueItems": true
50156        },
50157        {
50158          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
50159          "in": "query",
50160          "name": "labelSelector",
50161          "type": "string",
50162          "uniqueItems": true
50163        },
50164        {
50165          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
50166          "in": "query",
50167          "name": "limit",
50168          "type": "integer",
50169          "uniqueItems": true
50170        },
50171        {
50172          "description": "If 'true', then the output is pretty printed.",
50173          "in": "query",
50174          "name": "pretty",
50175          "type": "string",
50176          "uniqueItems": true
50177        },
50178        {
50179          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
50180          "in": "query",
50181          "name": "resourceVersion",
50182          "type": "string",
50183          "uniqueItems": true
50184        },
50185        {
50186          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
50187          "in": "query",
50188          "name": "resourceVersionMatch",
50189          "type": "string",
50190          "uniqueItems": true
50191        },
50192        {
50193          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
50194          "in": "query",
50195          "name": "timeoutSeconds",
50196          "type": "integer",
50197          "uniqueItems": true
50198        },
50199        {
50200          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
50201          "in": "query",
50202          "name": "watch",
50203          "type": "boolean",
50204          "uniqueItems": true
50205        }
50206      ]
50207    },
50208    "/apis/autoscaling/v2beta2/namespaces/{namespace}/horizontalpodautoscalers": {
50209      "delete": {
50210        "consumes": [
50211          "*/*"
50212        ],
50213        "description": "delete collection of HorizontalPodAutoscaler",
50214        "operationId": "deleteAutoscalingV2beta2CollectionNamespacedHorizontalPodAutoscaler",
50215        "parameters": [
50216          {
50217            "in": "body",
50218            "name": "body",
50219            "schema": {
50220              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
50221            }
50222          },
50223          {
50224            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
50225            "in": "query",
50226            "name": "continue",
50227            "type": "string",
50228            "uniqueItems": true
50229          },
50230          {
50231            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
50232            "in": "query",
50233            "name": "dryRun",
50234            "type": "string",
50235            "uniqueItems": true
50236          },
50237          {
50238            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
50239            "in": "query",
50240            "name": "fieldSelector",
50241            "type": "string",
50242            "uniqueItems": true
50243          },
50244          {
50245            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
50246            "in": "query",
50247            "name": "gracePeriodSeconds",
50248            "type": "integer",
50249            "uniqueItems": true
50250          },
50251          {
50252            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
50253            "in": "query",
50254            "name": "labelSelector",
50255            "type": "string",
50256            "uniqueItems": true
50257          },
50258          {
50259            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
50260            "in": "query",
50261            "name": "limit",
50262            "type": "integer",
50263            "uniqueItems": true
50264          },
50265          {
50266            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
50267            "in": "query",
50268            "name": "orphanDependents",
50269            "type": "boolean",
50270            "uniqueItems": true
50271          },
50272          {
50273            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
50274            "in": "query",
50275            "name": "propagationPolicy",
50276            "type": "string",
50277            "uniqueItems": true
50278          },
50279          {
50280            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
50281            "in": "query",
50282            "name": "resourceVersion",
50283            "type": "string",
50284            "uniqueItems": true
50285          },
50286          {
50287            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
50288            "in": "query",
50289            "name": "resourceVersionMatch",
50290            "type": "string",
50291            "uniqueItems": true
50292          },
50293          {
50294            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
50295            "in": "query",
50296            "name": "timeoutSeconds",
50297            "type": "integer",
50298            "uniqueItems": true
50299          }
50300        ],
50301        "produces": [
50302          "application/json",
50303          "application/yaml",
50304          "application/vnd.kubernetes.protobuf"
50305        ],
50306        "responses": {
50307          "200": {
50308            "description": "OK",
50309            "schema": {
50310              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
50311            }
50312          },
50313          "401": {
50314            "description": "Unauthorized"
50315          }
50316        },
50317        "schemes": [
50318          "https"
50319        ],
50320        "tags": [
50321          "autoscaling_v2beta2"
50322        ],
50323        "x-kubernetes-action": "deletecollection",
50324        "x-kubernetes-group-version-kind": {
50325          "group": "autoscaling",
50326          "kind": "HorizontalPodAutoscaler",
50327          "version": "v2beta2"
50328        }
50329      },
50330      "get": {
50331        "consumes": [
50332          "*/*"
50333        ],
50334        "description": "list or watch objects of kind HorizontalPodAutoscaler",
50335        "operationId": "listAutoscalingV2beta2NamespacedHorizontalPodAutoscaler",
50336        "parameters": [
50337          {
50338            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
50339            "in": "query",
50340            "name": "allowWatchBookmarks",
50341            "type": "boolean",
50342            "uniqueItems": true
50343          },
50344          {
50345            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
50346            "in": "query",
50347            "name": "continue",
50348            "type": "string",
50349            "uniqueItems": true
50350          },
50351          {
50352            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
50353            "in": "query",
50354            "name": "fieldSelector",
50355            "type": "string",
50356            "uniqueItems": true
50357          },
50358          {
50359            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
50360            "in": "query",
50361            "name": "labelSelector",
50362            "type": "string",
50363            "uniqueItems": true
50364          },
50365          {
50366            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
50367            "in": "query",
50368            "name": "limit",
50369            "type": "integer",
50370            "uniqueItems": true
50371          },
50372          {
50373            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
50374            "in": "query",
50375            "name": "resourceVersion",
50376            "type": "string",
50377            "uniqueItems": true
50378          },
50379          {
50380            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
50381            "in": "query",
50382            "name": "resourceVersionMatch",
50383            "type": "string",
50384            "uniqueItems": true
50385          },
50386          {
50387            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
50388            "in": "query",
50389            "name": "timeoutSeconds",
50390            "type": "integer",
50391            "uniqueItems": true
50392          },
50393          {
50394            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
50395            "in": "query",
50396            "name": "watch",
50397            "type": "boolean",
50398            "uniqueItems": true
50399          }
50400        ],
50401        "produces": [
50402          "application/json",
50403          "application/yaml",
50404          "application/vnd.kubernetes.protobuf",
50405          "application/json;stream=watch",
50406          "application/vnd.kubernetes.protobuf;stream=watch"
50407        ],
50408        "responses": {
50409          "200": {
50410            "description": "OK",
50411            "schema": {
50412              "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscalerList"
50413            }
50414          },
50415          "401": {
50416            "description": "Unauthorized"
50417          }
50418        },
50419        "schemes": [
50420          "https"
50421        ],
50422        "tags": [
50423          "autoscaling_v2beta2"
50424        ],
50425        "x-kubernetes-action": "list",
50426        "x-kubernetes-group-version-kind": {
50427          "group": "autoscaling",
50428          "kind": "HorizontalPodAutoscaler",
50429          "version": "v2beta2"
50430        }
50431      },
50432      "parameters": [
50433        {
50434          "description": "object name and auth scope, such as for teams and projects",
50435          "in": "path",
50436          "name": "namespace",
50437          "required": true,
50438          "type": "string",
50439          "uniqueItems": true
50440        },
50441        {
50442          "description": "If 'true', then the output is pretty printed.",
50443          "in": "query",
50444          "name": "pretty",
50445          "type": "string",
50446          "uniqueItems": true
50447        }
50448      ],
50449      "post": {
50450        "consumes": [
50451          "*/*"
50452        ],
50453        "description": "create a HorizontalPodAutoscaler",
50454        "operationId": "createAutoscalingV2beta2NamespacedHorizontalPodAutoscaler",
50455        "parameters": [
50456          {
50457            "in": "body",
50458            "name": "body",
50459            "required": true,
50460            "schema": {
50461              "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscaler"
50462            }
50463          },
50464          {
50465            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
50466            "in": "query",
50467            "name": "dryRun",
50468            "type": "string",
50469            "uniqueItems": true
50470          },
50471          {
50472            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
50473            "in": "query",
50474            "name": "fieldManager",
50475            "type": "string",
50476            "uniqueItems": true
50477          }
50478        ],
50479        "produces": [
50480          "application/json",
50481          "application/yaml",
50482          "application/vnd.kubernetes.protobuf"
50483        ],
50484        "responses": {
50485          "200": {
50486            "description": "OK",
50487            "schema": {
50488              "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscaler"
50489            }
50490          },
50491          "201": {
50492            "description": "Created",
50493            "schema": {
50494              "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscaler"
50495            }
50496          },
50497          "202": {
50498            "description": "Accepted",
50499            "schema": {
50500              "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscaler"
50501            }
50502          },
50503          "401": {
50504            "description": "Unauthorized"
50505          }
50506        },
50507        "schemes": [
50508          "https"
50509        ],
50510        "tags": [
50511          "autoscaling_v2beta2"
50512        ],
50513        "x-kubernetes-action": "post",
50514        "x-kubernetes-group-version-kind": {
50515          "group": "autoscaling",
50516          "kind": "HorizontalPodAutoscaler",
50517          "version": "v2beta2"
50518        }
50519      }
50520    },
50521    "/apis/autoscaling/v2beta2/namespaces/{namespace}/horizontalpodautoscalers/{name}": {
50522      "delete": {
50523        "consumes": [
50524          "*/*"
50525        ],
50526        "description": "delete a HorizontalPodAutoscaler",
50527        "operationId": "deleteAutoscalingV2beta2NamespacedHorizontalPodAutoscaler",
50528        "parameters": [
50529          {
50530            "in": "body",
50531            "name": "body",
50532            "schema": {
50533              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
50534            }
50535          },
50536          {
50537            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
50538            "in": "query",
50539            "name": "dryRun",
50540            "type": "string",
50541            "uniqueItems": true
50542          },
50543          {
50544            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
50545            "in": "query",
50546            "name": "gracePeriodSeconds",
50547            "type": "integer",
50548            "uniqueItems": true
50549          },
50550          {
50551            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
50552            "in": "query",
50553            "name": "orphanDependents",
50554            "type": "boolean",
50555            "uniqueItems": true
50556          },
50557          {
50558            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
50559            "in": "query",
50560            "name": "propagationPolicy",
50561            "type": "string",
50562            "uniqueItems": true
50563          }
50564        ],
50565        "produces": [
50566          "application/json",
50567          "application/yaml",
50568          "application/vnd.kubernetes.protobuf"
50569        ],
50570        "responses": {
50571          "200": {
50572            "description": "OK",
50573            "schema": {
50574              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
50575            }
50576          },
50577          "202": {
50578            "description": "Accepted",
50579            "schema": {
50580              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
50581            }
50582          },
50583          "401": {
50584            "description": "Unauthorized"
50585          }
50586        },
50587        "schemes": [
50588          "https"
50589        ],
50590        "tags": [
50591          "autoscaling_v2beta2"
50592        ],
50593        "x-kubernetes-action": "delete",
50594        "x-kubernetes-group-version-kind": {
50595          "group": "autoscaling",
50596          "kind": "HorizontalPodAutoscaler",
50597          "version": "v2beta2"
50598        }
50599      },
50600      "get": {
50601        "consumes": [
50602          "*/*"
50603        ],
50604        "description": "read the specified HorizontalPodAutoscaler",
50605        "operationId": "readAutoscalingV2beta2NamespacedHorizontalPodAutoscaler",
50606        "produces": [
50607          "application/json",
50608          "application/yaml",
50609          "application/vnd.kubernetes.protobuf"
50610        ],
50611        "responses": {
50612          "200": {
50613            "description": "OK",
50614            "schema": {
50615              "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscaler"
50616            }
50617          },
50618          "401": {
50619            "description": "Unauthorized"
50620          }
50621        },
50622        "schemes": [
50623          "https"
50624        ],
50625        "tags": [
50626          "autoscaling_v2beta2"
50627        ],
50628        "x-kubernetes-action": "get",
50629        "x-kubernetes-group-version-kind": {
50630          "group": "autoscaling",
50631          "kind": "HorizontalPodAutoscaler",
50632          "version": "v2beta2"
50633        }
50634      },
50635      "parameters": [
50636        {
50637          "description": "name of the HorizontalPodAutoscaler",
50638          "in": "path",
50639          "name": "name",
50640          "required": true,
50641          "type": "string",
50642          "uniqueItems": true
50643        },
50644        {
50645          "description": "object name and auth scope, such as for teams and projects",
50646          "in": "path",
50647          "name": "namespace",
50648          "required": true,
50649          "type": "string",
50650          "uniqueItems": true
50651        },
50652        {
50653          "description": "If 'true', then the output is pretty printed.",
50654          "in": "query",
50655          "name": "pretty",
50656          "type": "string",
50657          "uniqueItems": true
50658        }
50659      ],
50660      "patch": {
50661        "consumes": [
50662          "application/json-patch+json",
50663          "application/merge-patch+json",
50664          "application/strategic-merge-patch+json",
50665          "application/apply-patch+yaml"
50666        ],
50667        "description": "partially update the specified HorizontalPodAutoscaler",
50668        "operationId": "patchAutoscalingV2beta2NamespacedHorizontalPodAutoscaler",
50669        "parameters": [
50670          {
50671            "in": "body",
50672            "name": "body",
50673            "required": true,
50674            "schema": {
50675              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
50676            }
50677          },
50678          {
50679            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
50680            "in": "query",
50681            "name": "dryRun",
50682            "type": "string",
50683            "uniqueItems": true
50684          },
50685          {
50686            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
50687            "in": "query",
50688            "name": "fieldManager",
50689            "type": "string",
50690            "uniqueItems": true
50691          },
50692          {
50693            "description": "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.",
50694            "in": "query",
50695            "name": "force",
50696            "type": "boolean",
50697            "uniqueItems": true
50698          }
50699        ],
50700        "produces": [
50701          "application/json",
50702          "application/yaml",
50703          "application/vnd.kubernetes.protobuf"
50704        ],
50705        "responses": {
50706          "200": {
50707            "description": "OK",
50708            "schema": {
50709              "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscaler"
50710            }
50711          },
50712          "201": {
50713            "description": "Created",
50714            "schema": {
50715              "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscaler"
50716            }
50717          },
50718          "401": {
50719            "description": "Unauthorized"
50720          }
50721        },
50722        "schemes": [
50723          "https"
50724        ],
50725        "tags": [
50726          "autoscaling_v2beta2"
50727        ],
50728        "x-kubernetes-action": "patch",
50729        "x-kubernetes-group-version-kind": {
50730          "group": "autoscaling",
50731          "kind": "HorizontalPodAutoscaler",
50732          "version": "v2beta2"
50733        }
50734      },
50735      "put": {
50736        "consumes": [
50737          "*/*"
50738        ],
50739        "description": "replace the specified HorizontalPodAutoscaler",
50740        "operationId": "replaceAutoscalingV2beta2NamespacedHorizontalPodAutoscaler",
50741        "parameters": [
50742          {
50743            "in": "body",
50744            "name": "body",
50745            "required": true,
50746            "schema": {
50747              "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscaler"
50748            }
50749          },
50750          {
50751            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
50752            "in": "query",
50753            "name": "dryRun",
50754            "type": "string",
50755            "uniqueItems": true
50756          },
50757          {
50758            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
50759            "in": "query",
50760            "name": "fieldManager",
50761            "type": "string",
50762            "uniqueItems": true
50763          }
50764        ],
50765        "produces": [
50766          "application/json",
50767          "application/yaml",
50768          "application/vnd.kubernetes.protobuf"
50769        ],
50770        "responses": {
50771          "200": {
50772            "description": "OK",
50773            "schema": {
50774              "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscaler"
50775            }
50776          },
50777          "201": {
50778            "description": "Created",
50779            "schema": {
50780              "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscaler"
50781            }
50782          },
50783          "401": {
50784            "description": "Unauthorized"
50785          }
50786        },
50787        "schemes": [
50788          "https"
50789        ],
50790        "tags": [
50791          "autoscaling_v2beta2"
50792        ],
50793        "x-kubernetes-action": "put",
50794        "x-kubernetes-group-version-kind": {
50795          "group": "autoscaling",
50796          "kind": "HorizontalPodAutoscaler",
50797          "version": "v2beta2"
50798        }
50799      }
50800    },
50801    "/apis/autoscaling/v2beta2/namespaces/{namespace}/horizontalpodautoscalers/{name}/status": {
50802      "get": {
50803        "consumes": [
50804          "*/*"
50805        ],
50806        "description": "read status of the specified HorizontalPodAutoscaler",
50807        "operationId": "readAutoscalingV2beta2NamespacedHorizontalPodAutoscalerStatus",
50808        "produces": [
50809          "application/json",
50810          "application/yaml",
50811          "application/vnd.kubernetes.protobuf"
50812        ],
50813        "responses": {
50814          "200": {
50815            "description": "OK",
50816            "schema": {
50817              "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscaler"
50818            }
50819          },
50820          "401": {
50821            "description": "Unauthorized"
50822          }
50823        },
50824        "schemes": [
50825          "https"
50826        ],
50827        "tags": [
50828          "autoscaling_v2beta2"
50829        ],
50830        "x-kubernetes-action": "get",
50831        "x-kubernetes-group-version-kind": {
50832          "group": "autoscaling",
50833          "kind": "HorizontalPodAutoscaler",
50834          "version": "v2beta2"
50835        }
50836      },
50837      "parameters": [
50838        {
50839          "description": "name of the HorizontalPodAutoscaler",
50840          "in": "path",
50841          "name": "name",
50842          "required": true,
50843          "type": "string",
50844          "uniqueItems": true
50845        },
50846        {
50847          "description": "object name and auth scope, such as for teams and projects",
50848          "in": "path",
50849          "name": "namespace",
50850          "required": true,
50851          "type": "string",
50852          "uniqueItems": true
50853        },
50854        {
50855          "description": "If 'true', then the output is pretty printed.",
50856          "in": "query",
50857          "name": "pretty",
50858          "type": "string",
50859          "uniqueItems": true
50860        }
50861      ],
50862      "patch": {
50863        "consumes": [
50864          "application/json-patch+json",
50865          "application/merge-patch+json",
50866          "application/strategic-merge-patch+json",
50867          "application/apply-patch+yaml"
50868        ],
50869        "description": "partially update status of the specified HorizontalPodAutoscaler",
50870        "operationId": "patchAutoscalingV2beta2NamespacedHorizontalPodAutoscalerStatus",
50871        "parameters": [
50872          {
50873            "in": "body",
50874            "name": "body",
50875            "required": true,
50876            "schema": {
50877              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
50878            }
50879          },
50880          {
50881            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
50882            "in": "query",
50883            "name": "dryRun",
50884            "type": "string",
50885            "uniqueItems": true
50886          },
50887          {
50888            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
50889            "in": "query",
50890            "name": "fieldManager",
50891            "type": "string",
50892            "uniqueItems": true
50893          },
50894          {
50895            "description": "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.",
50896            "in": "query",
50897            "name": "force",
50898            "type": "boolean",
50899            "uniqueItems": true
50900          }
50901        ],
50902        "produces": [
50903          "application/json",
50904          "application/yaml",
50905          "application/vnd.kubernetes.protobuf"
50906        ],
50907        "responses": {
50908          "200": {
50909            "description": "OK",
50910            "schema": {
50911              "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscaler"
50912            }
50913          },
50914          "201": {
50915            "description": "Created",
50916            "schema": {
50917              "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscaler"
50918            }
50919          },
50920          "401": {
50921            "description": "Unauthorized"
50922          }
50923        },
50924        "schemes": [
50925          "https"
50926        ],
50927        "tags": [
50928          "autoscaling_v2beta2"
50929        ],
50930        "x-kubernetes-action": "patch",
50931        "x-kubernetes-group-version-kind": {
50932          "group": "autoscaling",
50933          "kind": "HorizontalPodAutoscaler",
50934          "version": "v2beta2"
50935        }
50936      },
50937      "put": {
50938        "consumes": [
50939          "*/*"
50940        ],
50941        "description": "replace status of the specified HorizontalPodAutoscaler",
50942        "operationId": "replaceAutoscalingV2beta2NamespacedHorizontalPodAutoscalerStatus",
50943        "parameters": [
50944          {
50945            "in": "body",
50946            "name": "body",
50947            "required": true,
50948            "schema": {
50949              "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscaler"
50950            }
50951          },
50952          {
50953            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
50954            "in": "query",
50955            "name": "dryRun",
50956            "type": "string",
50957            "uniqueItems": true
50958          },
50959          {
50960            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
50961            "in": "query",
50962            "name": "fieldManager",
50963            "type": "string",
50964            "uniqueItems": true
50965          }
50966        ],
50967        "produces": [
50968          "application/json",
50969          "application/yaml",
50970          "application/vnd.kubernetes.protobuf"
50971        ],
50972        "responses": {
50973          "200": {
50974            "description": "OK",
50975            "schema": {
50976              "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscaler"
50977            }
50978          },
50979          "201": {
50980            "description": "Created",
50981            "schema": {
50982              "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscaler"
50983            }
50984          },
50985          "401": {
50986            "description": "Unauthorized"
50987          }
50988        },
50989        "schemes": [
50990          "https"
50991        ],
50992        "tags": [
50993          "autoscaling_v2beta2"
50994        ],
50995        "x-kubernetes-action": "put",
50996        "x-kubernetes-group-version-kind": {
50997          "group": "autoscaling",
50998          "kind": "HorizontalPodAutoscaler",
50999          "version": "v2beta2"
51000        }
51001      }
51002    },
51003    "/apis/autoscaling/v2beta2/watch/horizontalpodautoscalers": {
51004      "get": {
51005        "consumes": [
51006          "*/*"
51007        ],
51008        "description": "watch individual changes to a list of HorizontalPodAutoscaler. deprecated: use the 'watch' parameter with a list operation instead.",
51009        "operationId": "watchAutoscalingV2beta2HorizontalPodAutoscalerListForAllNamespaces",
51010        "produces": [
51011          "application/json",
51012          "application/yaml",
51013          "application/vnd.kubernetes.protobuf",
51014          "application/json;stream=watch",
51015          "application/vnd.kubernetes.protobuf;stream=watch"
51016        ],
51017        "responses": {
51018          "200": {
51019            "description": "OK",
51020            "schema": {
51021              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
51022            }
51023          },
51024          "401": {
51025            "description": "Unauthorized"
51026          }
51027        },
51028        "schemes": [
51029          "https"
51030        ],
51031        "tags": [
51032          "autoscaling_v2beta2"
51033        ],
51034        "x-kubernetes-action": "watchlist",
51035        "x-kubernetes-group-version-kind": {
51036          "group": "autoscaling",
51037          "kind": "HorizontalPodAutoscaler",
51038          "version": "v2beta2"
51039        }
51040      },
51041      "parameters": [
51042        {
51043          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
51044          "in": "query",
51045          "name": "allowWatchBookmarks",
51046          "type": "boolean",
51047          "uniqueItems": true
51048        },
51049        {
51050          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
51051          "in": "query",
51052          "name": "continue",
51053          "type": "string",
51054          "uniqueItems": true
51055        },
51056        {
51057          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
51058          "in": "query",
51059          "name": "fieldSelector",
51060          "type": "string",
51061          "uniqueItems": true
51062        },
51063        {
51064          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
51065          "in": "query",
51066          "name": "labelSelector",
51067          "type": "string",
51068          "uniqueItems": true
51069        },
51070        {
51071          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
51072          "in": "query",
51073          "name": "limit",
51074          "type": "integer",
51075          "uniqueItems": true
51076        },
51077        {
51078          "description": "If 'true', then the output is pretty printed.",
51079          "in": "query",
51080          "name": "pretty",
51081          "type": "string",
51082          "uniqueItems": true
51083        },
51084        {
51085          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
51086          "in": "query",
51087          "name": "resourceVersion",
51088          "type": "string",
51089          "uniqueItems": true
51090        },
51091        {
51092          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
51093          "in": "query",
51094          "name": "resourceVersionMatch",
51095          "type": "string",
51096          "uniqueItems": true
51097        },
51098        {
51099          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
51100          "in": "query",
51101          "name": "timeoutSeconds",
51102          "type": "integer",
51103          "uniqueItems": true
51104        },
51105        {
51106          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
51107          "in": "query",
51108          "name": "watch",
51109          "type": "boolean",
51110          "uniqueItems": true
51111        }
51112      ]
51113    },
51114    "/apis/autoscaling/v2beta2/watch/namespaces/{namespace}/horizontalpodautoscalers": {
51115      "get": {
51116        "consumes": [
51117          "*/*"
51118        ],
51119        "description": "watch individual changes to a list of HorizontalPodAutoscaler. deprecated: use the 'watch' parameter with a list operation instead.",
51120        "operationId": "watchAutoscalingV2beta2NamespacedHorizontalPodAutoscalerList",
51121        "produces": [
51122          "application/json",
51123          "application/yaml",
51124          "application/vnd.kubernetes.protobuf",
51125          "application/json;stream=watch",
51126          "application/vnd.kubernetes.protobuf;stream=watch"
51127        ],
51128        "responses": {
51129          "200": {
51130            "description": "OK",
51131            "schema": {
51132              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
51133            }
51134          },
51135          "401": {
51136            "description": "Unauthorized"
51137          }
51138        },
51139        "schemes": [
51140          "https"
51141        ],
51142        "tags": [
51143          "autoscaling_v2beta2"
51144        ],
51145        "x-kubernetes-action": "watchlist",
51146        "x-kubernetes-group-version-kind": {
51147          "group": "autoscaling",
51148          "kind": "HorizontalPodAutoscaler",
51149          "version": "v2beta2"
51150        }
51151      },
51152      "parameters": [
51153        {
51154          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
51155          "in": "query",
51156          "name": "allowWatchBookmarks",
51157          "type": "boolean",
51158          "uniqueItems": true
51159        },
51160        {
51161          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
51162          "in": "query",
51163          "name": "continue",
51164          "type": "string",
51165          "uniqueItems": true
51166        },
51167        {
51168          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
51169          "in": "query",
51170          "name": "fieldSelector",
51171          "type": "string",
51172          "uniqueItems": true
51173        },
51174        {
51175          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
51176          "in": "query",
51177          "name": "labelSelector",
51178          "type": "string",
51179          "uniqueItems": true
51180        },
51181        {
51182          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
51183          "in": "query",
51184          "name": "limit",
51185          "type": "integer",
51186          "uniqueItems": true
51187        },
51188        {
51189          "description": "object name and auth scope, such as for teams and projects",
51190          "in": "path",
51191          "name": "namespace",
51192          "required": true,
51193          "type": "string",
51194          "uniqueItems": true
51195        },
51196        {
51197          "description": "If 'true', then the output is pretty printed.",
51198          "in": "query",
51199          "name": "pretty",
51200          "type": "string",
51201          "uniqueItems": true
51202        },
51203        {
51204          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
51205          "in": "query",
51206          "name": "resourceVersion",
51207          "type": "string",
51208          "uniqueItems": true
51209        },
51210        {
51211          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
51212          "in": "query",
51213          "name": "resourceVersionMatch",
51214          "type": "string",
51215          "uniqueItems": true
51216        },
51217        {
51218          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
51219          "in": "query",
51220          "name": "timeoutSeconds",
51221          "type": "integer",
51222          "uniqueItems": true
51223        },
51224        {
51225          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
51226          "in": "query",
51227          "name": "watch",
51228          "type": "boolean",
51229          "uniqueItems": true
51230        }
51231      ]
51232    },
51233    "/apis/autoscaling/v2beta2/watch/namespaces/{namespace}/horizontalpodautoscalers/{name}": {
51234      "get": {
51235        "consumes": [
51236          "*/*"
51237        ],
51238        "description": "watch changes to an object of kind HorizontalPodAutoscaler. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.",
51239        "operationId": "watchAutoscalingV2beta2NamespacedHorizontalPodAutoscaler",
51240        "produces": [
51241          "application/json",
51242          "application/yaml",
51243          "application/vnd.kubernetes.protobuf",
51244          "application/json;stream=watch",
51245          "application/vnd.kubernetes.protobuf;stream=watch"
51246        ],
51247        "responses": {
51248          "200": {
51249            "description": "OK",
51250            "schema": {
51251              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
51252            }
51253          },
51254          "401": {
51255            "description": "Unauthorized"
51256          }
51257        },
51258        "schemes": [
51259          "https"
51260        ],
51261        "tags": [
51262          "autoscaling_v2beta2"
51263        ],
51264        "x-kubernetes-action": "watch",
51265        "x-kubernetes-group-version-kind": {
51266          "group": "autoscaling",
51267          "kind": "HorizontalPodAutoscaler",
51268          "version": "v2beta2"
51269        }
51270      },
51271      "parameters": [
51272        {
51273          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
51274          "in": "query",
51275          "name": "allowWatchBookmarks",
51276          "type": "boolean",
51277          "uniqueItems": true
51278        },
51279        {
51280          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
51281          "in": "query",
51282          "name": "continue",
51283          "type": "string",
51284          "uniqueItems": true
51285        },
51286        {
51287          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
51288          "in": "query",
51289          "name": "fieldSelector",
51290          "type": "string",
51291          "uniqueItems": true
51292        },
51293        {
51294          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
51295          "in": "query",
51296          "name": "labelSelector",
51297          "type": "string",
51298          "uniqueItems": true
51299        },
51300        {
51301          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
51302          "in": "query",
51303          "name": "limit",
51304          "type": "integer",
51305          "uniqueItems": true
51306        },
51307        {
51308          "description": "name of the HorizontalPodAutoscaler",
51309          "in": "path",
51310          "name": "name",
51311          "required": true,
51312          "type": "string",
51313          "uniqueItems": true
51314        },
51315        {
51316          "description": "object name and auth scope, such as for teams and projects",
51317          "in": "path",
51318          "name": "namespace",
51319          "required": true,
51320          "type": "string",
51321          "uniqueItems": true
51322        },
51323        {
51324          "description": "If 'true', then the output is pretty printed.",
51325          "in": "query",
51326          "name": "pretty",
51327          "type": "string",
51328          "uniqueItems": true
51329        },
51330        {
51331          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
51332          "in": "query",
51333          "name": "resourceVersion",
51334          "type": "string",
51335          "uniqueItems": true
51336        },
51337        {
51338          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
51339          "in": "query",
51340          "name": "resourceVersionMatch",
51341          "type": "string",
51342          "uniqueItems": true
51343        },
51344        {
51345          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
51346          "in": "query",
51347          "name": "timeoutSeconds",
51348          "type": "integer",
51349          "uniqueItems": true
51350        },
51351        {
51352          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
51353          "in": "query",
51354          "name": "watch",
51355          "type": "boolean",
51356          "uniqueItems": true
51357        }
51358      ]
51359    },
51360    "/apis/batch/": {
51361      "get": {
51362        "consumes": [
51363          "application/json",
51364          "application/yaml",
51365          "application/vnd.kubernetes.protobuf"
51366        ],
51367        "description": "get information of a group",
51368        "operationId": "getBatchAPIGroup",
51369        "produces": [
51370          "application/json",
51371          "application/yaml",
51372          "application/vnd.kubernetes.protobuf"
51373        ],
51374        "responses": {
51375          "200": {
51376            "description": "OK",
51377            "schema": {
51378              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup"
51379            }
51380          },
51381          "401": {
51382            "description": "Unauthorized"
51383          }
51384        },
51385        "schemes": [
51386          "https"
51387        ],
51388        "tags": [
51389          "batch"
51390        ]
51391      }
51392    },
51393    "/apis/batch/v1/": {
51394      "get": {
51395        "consumes": [
51396          "application/json",
51397          "application/yaml",
51398          "application/vnd.kubernetes.protobuf"
51399        ],
51400        "description": "get available resources",
51401        "operationId": "getBatchV1APIResources",
51402        "produces": [
51403          "application/json",
51404          "application/yaml",
51405          "application/vnd.kubernetes.protobuf"
51406        ],
51407        "responses": {
51408          "200": {
51409            "description": "OK",
51410            "schema": {
51411              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
51412            }
51413          },
51414          "401": {
51415            "description": "Unauthorized"
51416          }
51417        },
51418        "schemes": [
51419          "https"
51420        ],
51421        "tags": [
51422          "batch_v1"
51423        ]
51424      }
51425    },
51426    "/apis/batch/v1/cronjobs": {
51427      "get": {
51428        "consumes": [
51429          "*/*"
51430        ],
51431        "description": "list or watch objects of kind CronJob",
51432        "operationId": "listBatchV1CronJobForAllNamespaces",
51433        "produces": [
51434          "application/json",
51435          "application/yaml",
51436          "application/vnd.kubernetes.protobuf",
51437          "application/json;stream=watch",
51438          "application/vnd.kubernetes.protobuf;stream=watch"
51439        ],
51440        "responses": {
51441          "200": {
51442            "description": "OK",
51443            "schema": {
51444              "$ref": "#/definitions/io.k8s.api.batch.v1.CronJobList"
51445            }
51446          },
51447          "401": {
51448            "description": "Unauthorized"
51449          }
51450        },
51451        "schemes": [
51452          "https"
51453        ],
51454        "tags": [
51455          "batch_v1"
51456        ],
51457        "x-kubernetes-action": "list",
51458        "x-kubernetes-group-version-kind": {
51459          "group": "batch",
51460          "kind": "CronJob",
51461          "version": "v1"
51462        }
51463      },
51464      "parameters": [
51465        {
51466          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
51467          "in": "query",
51468          "name": "allowWatchBookmarks",
51469          "type": "boolean",
51470          "uniqueItems": true
51471        },
51472        {
51473          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
51474          "in": "query",
51475          "name": "continue",
51476          "type": "string",
51477          "uniqueItems": true
51478        },
51479        {
51480          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
51481          "in": "query",
51482          "name": "fieldSelector",
51483          "type": "string",
51484          "uniqueItems": true
51485        },
51486        {
51487          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
51488          "in": "query",
51489          "name": "labelSelector",
51490          "type": "string",
51491          "uniqueItems": true
51492        },
51493        {
51494          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
51495          "in": "query",
51496          "name": "limit",
51497          "type": "integer",
51498          "uniqueItems": true
51499        },
51500        {
51501          "description": "If 'true', then the output is pretty printed.",
51502          "in": "query",
51503          "name": "pretty",
51504          "type": "string",
51505          "uniqueItems": true
51506        },
51507        {
51508          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
51509          "in": "query",
51510          "name": "resourceVersion",
51511          "type": "string",
51512          "uniqueItems": true
51513        },
51514        {
51515          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
51516          "in": "query",
51517          "name": "resourceVersionMatch",
51518          "type": "string",
51519          "uniqueItems": true
51520        },
51521        {
51522          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
51523          "in": "query",
51524          "name": "timeoutSeconds",
51525          "type": "integer",
51526          "uniqueItems": true
51527        },
51528        {
51529          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
51530          "in": "query",
51531          "name": "watch",
51532          "type": "boolean",
51533          "uniqueItems": true
51534        }
51535      ]
51536    },
51537    "/apis/batch/v1/jobs": {
51538      "get": {
51539        "consumes": [
51540          "*/*"
51541        ],
51542        "description": "list or watch objects of kind Job",
51543        "operationId": "listBatchV1JobForAllNamespaces",
51544        "produces": [
51545          "application/json",
51546          "application/yaml",
51547          "application/vnd.kubernetes.protobuf",
51548          "application/json;stream=watch",
51549          "application/vnd.kubernetes.protobuf;stream=watch"
51550        ],
51551        "responses": {
51552          "200": {
51553            "description": "OK",
51554            "schema": {
51555              "$ref": "#/definitions/io.k8s.api.batch.v1.JobList"
51556            }
51557          },
51558          "401": {
51559            "description": "Unauthorized"
51560          }
51561        },
51562        "schemes": [
51563          "https"
51564        ],
51565        "tags": [
51566          "batch_v1"
51567        ],
51568        "x-kubernetes-action": "list",
51569        "x-kubernetes-group-version-kind": {
51570          "group": "batch",
51571          "kind": "Job",
51572          "version": "v1"
51573        }
51574      },
51575      "parameters": [
51576        {
51577          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
51578          "in": "query",
51579          "name": "allowWatchBookmarks",
51580          "type": "boolean",
51581          "uniqueItems": true
51582        },
51583        {
51584          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
51585          "in": "query",
51586          "name": "continue",
51587          "type": "string",
51588          "uniqueItems": true
51589        },
51590        {
51591          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
51592          "in": "query",
51593          "name": "fieldSelector",
51594          "type": "string",
51595          "uniqueItems": true
51596        },
51597        {
51598          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
51599          "in": "query",
51600          "name": "labelSelector",
51601          "type": "string",
51602          "uniqueItems": true
51603        },
51604        {
51605          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
51606          "in": "query",
51607          "name": "limit",
51608          "type": "integer",
51609          "uniqueItems": true
51610        },
51611        {
51612          "description": "If 'true', then the output is pretty printed.",
51613          "in": "query",
51614          "name": "pretty",
51615          "type": "string",
51616          "uniqueItems": true
51617        },
51618        {
51619          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
51620          "in": "query",
51621          "name": "resourceVersion",
51622          "type": "string",
51623          "uniqueItems": true
51624        },
51625        {
51626          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
51627          "in": "query",
51628          "name": "resourceVersionMatch",
51629          "type": "string",
51630          "uniqueItems": true
51631        },
51632        {
51633          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
51634          "in": "query",
51635          "name": "timeoutSeconds",
51636          "type": "integer",
51637          "uniqueItems": true
51638        },
51639        {
51640          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
51641          "in": "query",
51642          "name": "watch",
51643          "type": "boolean",
51644          "uniqueItems": true
51645        }
51646      ]
51647    },
51648    "/apis/batch/v1/namespaces/{namespace}/cronjobs": {
51649      "delete": {
51650        "consumes": [
51651          "*/*"
51652        ],
51653        "description": "delete collection of CronJob",
51654        "operationId": "deleteBatchV1CollectionNamespacedCronJob",
51655        "parameters": [
51656          {
51657            "in": "body",
51658            "name": "body",
51659            "schema": {
51660              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
51661            }
51662          },
51663          {
51664            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
51665            "in": "query",
51666            "name": "continue",
51667            "type": "string",
51668            "uniqueItems": true
51669          },
51670          {
51671            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
51672            "in": "query",
51673            "name": "dryRun",
51674            "type": "string",
51675            "uniqueItems": true
51676          },
51677          {
51678            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
51679            "in": "query",
51680            "name": "fieldSelector",
51681            "type": "string",
51682            "uniqueItems": true
51683          },
51684          {
51685            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
51686            "in": "query",
51687            "name": "gracePeriodSeconds",
51688            "type": "integer",
51689            "uniqueItems": true
51690          },
51691          {
51692            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
51693            "in": "query",
51694            "name": "labelSelector",
51695            "type": "string",
51696            "uniqueItems": true
51697          },
51698          {
51699            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
51700            "in": "query",
51701            "name": "limit",
51702            "type": "integer",
51703            "uniqueItems": true
51704          },
51705          {
51706            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
51707            "in": "query",
51708            "name": "orphanDependents",
51709            "type": "boolean",
51710            "uniqueItems": true
51711          },
51712          {
51713            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
51714            "in": "query",
51715            "name": "propagationPolicy",
51716            "type": "string",
51717            "uniqueItems": true
51718          },
51719          {
51720            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
51721            "in": "query",
51722            "name": "resourceVersion",
51723            "type": "string",
51724            "uniqueItems": true
51725          },
51726          {
51727            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
51728            "in": "query",
51729            "name": "resourceVersionMatch",
51730            "type": "string",
51731            "uniqueItems": true
51732          },
51733          {
51734            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
51735            "in": "query",
51736            "name": "timeoutSeconds",
51737            "type": "integer",
51738            "uniqueItems": true
51739          }
51740        ],
51741        "produces": [
51742          "application/json",
51743          "application/yaml",
51744          "application/vnd.kubernetes.protobuf"
51745        ],
51746        "responses": {
51747          "200": {
51748            "description": "OK",
51749            "schema": {
51750              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
51751            }
51752          },
51753          "401": {
51754            "description": "Unauthorized"
51755          }
51756        },
51757        "schemes": [
51758          "https"
51759        ],
51760        "tags": [
51761          "batch_v1"
51762        ],
51763        "x-kubernetes-action": "deletecollection",
51764        "x-kubernetes-group-version-kind": {
51765          "group": "batch",
51766          "kind": "CronJob",
51767          "version": "v1"
51768        }
51769      },
51770      "get": {
51771        "consumes": [
51772          "*/*"
51773        ],
51774        "description": "list or watch objects of kind CronJob",
51775        "operationId": "listBatchV1NamespacedCronJob",
51776        "parameters": [
51777          {
51778            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
51779            "in": "query",
51780            "name": "allowWatchBookmarks",
51781            "type": "boolean",
51782            "uniqueItems": true
51783          },
51784          {
51785            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
51786            "in": "query",
51787            "name": "continue",
51788            "type": "string",
51789            "uniqueItems": true
51790          },
51791          {
51792            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
51793            "in": "query",
51794            "name": "fieldSelector",
51795            "type": "string",
51796            "uniqueItems": true
51797          },
51798          {
51799            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
51800            "in": "query",
51801            "name": "labelSelector",
51802            "type": "string",
51803            "uniqueItems": true
51804          },
51805          {
51806            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
51807            "in": "query",
51808            "name": "limit",
51809            "type": "integer",
51810            "uniqueItems": true
51811          },
51812          {
51813            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
51814            "in": "query",
51815            "name": "resourceVersion",
51816            "type": "string",
51817            "uniqueItems": true
51818          },
51819          {
51820            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
51821            "in": "query",
51822            "name": "resourceVersionMatch",
51823            "type": "string",
51824            "uniqueItems": true
51825          },
51826          {
51827            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
51828            "in": "query",
51829            "name": "timeoutSeconds",
51830            "type": "integer",
51831            "uniqueItems": true
51832          },
51833          {
51834            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
51835            "in": "query",
51836            "name": "watch",
51837            "type": "boolean",
51838            "uniqueItems": true
51839          }
51840        ],
51841        "produces": [
51842          "application/json",
51843          "application/yaml",
51844          "application/vnd.kubernetes.protobuf",
51845          "application/json;stream=watch",
51846          "application/vnd.kubernetes.protobuf;stream=watch"
51847        ],
51848        "responses": {
51849          "200": {
51850            "description": "OK",
51851            "schema": {
51852              "$ref": "#/definitions/io.k8s.api.batch.v1.CronJobList"
51853            }
51854          },
51855          "401": {
51856            "description": "Unauthorized"
51857          }
51858        },
51859        "schemes": [
51860          "https"
51861        ],
51862        "tags": [
51863          "batch_v1"
51864        ],
51865        "x-kubernetes-action": "list",
51866        "x-kubernetes-group-version-kind": {
51867          "group": "batch",
51868          "kind": "CronJob",
51869          "version": "v1"
51870        }
51871      },
51872      "parameters": [
51873        {
51874          "description": "object name and auth scope, such as for teams and projects",
51875          "in": "path",
51876          "name": "namespace",
51877          "required": true,
51878          "type": "string",
51879          "uniqueItems": true
51880        },
51881        {
51882          "description": "If 'true', then the output is pretty printed.",
51883          "in": "query",
51884          "name": "pretty",
51885          "type": "string",
51886          "uniqueItems": true
51887        }
51888      ],
51889      "post": {
51890        "consumes": [
51891          "*/*"
51892        ],
51893        "description": "create a CronJob",
51894        "operationId": "createBatchV1NamespacedCronJob",
51895        "parameters": [
51896          {
51897            "in": "body",
51898            "name": "body",
51899            "required": true,
51900            "schema": {
51901              "$ref": "#/definitions/io.k8s.api.batch.v1.CronJob"
51902            }
51903          },
51904          {
51905            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
51906            "in": "query",
51907            "name": "dryRun",
51908            "type": "string",
51909            "uniqueItems": true
51910          },
51911          {
51912            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
51913            "in": "query",
51914            "name": "fieldManager",
51915            "type": "string",
51916            "uniqueItems": true
51917          }
51918        ],
51919        "produces": [
51920          "application/json",
51921          "application/yaml",
51922          "application/vnd.kubernetes.protobuf"
51923        ],
51924        "responses": {
51925          "200": {
51926            "description": "OK",
51927            "schema": {
51928              "$ref": "#/definitions/io.k8s.api.batch.v1.CronJob"
51929            }
51930          },
51931          "201": {
51932            "description": "Created",
51933            "schema": {
51934              "$ref": "#/definitions/io.k8s.api.batch.v1.CronJob"
51935            }
51936          },
51937          "202": {
51938            "description": "Accepted",
51939            "schema": {
51940              "$ref": "#/definitions/io.k8s.api.batch.v1.CronJob"
51941            }
51942          },
51943          "401": {
51944            "description": "Unauthorized"
51945          }
51946        },
51947        "schemes": [
51948          "https"
51949        ],
51950        "tags": [
51951          "batch_v1"
51952        ],
51953        "x-kubernetes-action": "post",
51954        "x-kubernetes-group-version-kind": {
51955          "group": "batch",
51956          "kind": "CronJob",
51957          "version": "v1"
51958        }
51959      }
51960    },
51961    "/apis/batch/v1/namespaces/{namespace}/cronjobs/{name}": {
51962      "delete": {
51963        "consumes": [
51964          "*/*"
51965        ],
51966        "description": "delete a CronJob",
51967        "operationId": "deleteBatchV1NamespacedCronJob",
51968        "parameters": [
51969          {
51970            "in": "body",
51971            "name": "body",
51972            "schema": {
51973              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
51974            }
51975          },
51976          {
51977            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
51978            "in": "query",
51979            "name": "dryRun",
51980            "type": "string",
51981            "uniqueItems": true
51982          },
51983          {
51984            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
51985            "in": "query",
51986            "name": "gracePeriodSeconds",
51987            "type": "integer",
51988            "uniqueItems": true
51989          },
51990          {
51991            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
51992            "in": "query",
51993            "name": "orphanDependents",
51994            "type": "boolean",
51995            "uniqueItems": true
51996          },
51997          {
51998            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
51999            "in": "query",
52000            "name": "propagationPolicy",
52001            "type": "string",
52002            "uniqueItems": true
52003          }
52004        ],
52005        "produces": [
52006          "application/json",
52007          "application/yaml",
52008          "application/vnd.kubernetes.protobuf"
52009        ],
52010        "responses": {
52011          "200": {
52012            "description": "OK",
52013            "schema": {
52014              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
52015            }
52016          },
52017          "202": {
52018            "description": "Accepted",
52019            "schema": {
52020              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
52021            }
52022          },
52023          "401": {
52024            "description": "Unauthorized"
52025          }
52026        },
52027        "schemes": [
52028          "https"
52029        ],
52030        "tags": [
52031          "batch_v1"
52032        ],
52033        "x-kubernetes-action": "delete",
52034        "x-kubernetes-group-version-kind": {
52035          "group": "batch",
52036          "kind": "CronJob",
52037          "version": "v1"
52038        }
52039      },
52040      "get": {
52041        "consumes": [
52042          "*/*"
52043        ],
52044        "description": "read the specified CronJob",
52045        "operationId": "readBatchV1NamespacedCronJob",
52046        "produces": [
52047          "application/json",
52048          "application/yaml",
52049          "application/vnd.kubernetes.protobuf"
52050        ],
52051        "responses": {
52052          "200": {
52053            "description": "OK",
52054            "schema": {
52055              "$ref": "#/definitions/io.k8s.api.batch.v1.CronJob"
52056            }
52057          },
52058          "401": {
52059            "description": "Unauthorized"
52060          }
52061        },
52062        "schemes": [
52063          "https"
52064        ],
52065        "tags": [
52066          "batch_v1"
52067        ],
52068        "x-kubernetes-action": "get",
52069        "x-kubernetes-group-version-kind": {
52070          "group": "batch",
52071          "kind": "CronJob",
52072          "version": "v1"
52073        }
52074      },
52075      "parameters": [
52076        {
52077          "description": "name of the CronJob",
52078          "in": "path",
52079          "name": "name",
52080          "required": true,
52081          "type": "string",
52082          "uniqueItems": true
52083        },
52084        {
52085          "description": "object name and auth scope, such as for teams and projects",
52086          "in": "path",
52087          "name": "namespace",
52088          "required": true,
52089          "type": "string",
52090          "uniqueItems": true
52091        },
52092        {
52093          "description": "If 'true', then the output is pretty printed.",
52094          "in": "query",
52095          "name": "pretty",
52096          "type": "string",
52097          "uniqueItems": true
52098        }
52099      ],
52100      "patch": {
52101        "consumes": [
52102          "application/json-patch+json",
52103          "application/merge-patch+json",
52104          "application/strategic-merge-patch+json",
52105          "application/apply-patch+yaml"
52106        ],
52107        "description": "partially update the specified CronJob",
52108        "operationId": "patchBatchV1NamespacedCronJob",
52109        "parameters": [
52110          {
52111            "in": "body",
52112            "name": "body",
52113            "required": true,
52114            "schema": {
52115              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
52116            }
52117          },
52118          {
52119            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
52120            "in": "query",
52121            "name": "dryRun",
52122            "type": "string",
52123            "uniqueItems": true
52124          },
52125          {
52126            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
52127            "in": "query",
52128            "name": "fieldManager",
52129            "type": "string",
52130            "uniqueItems": true
52131          },
52132          {
52133            "description": "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.",
52134            "in": "query",
52135            "name": "force",
52136            "type": "boolean",
52137            "uniqueItems": true
52138          }
52139        ],
52140        "produces": [
52141          "application/json",
52142          "application/yaml",
52143          "application/vnd.kubernetes.protobuf"
52144        ],
52145        "responses": {
52146          "200": {
52147            "description": "OK",
52148            "schema": {
52149              "$ref": "#/definitions/io.k8s.api.batch.v1.CronJob"
52150            }
52151          },
52152          "201": {
52153            "description": "Created",
52154            "schema": {
52155              "$ref": "#/definitions/io.k8s.api.batch.v1.CronJob"
52156            }
52157          },
52158          "401": {
52159            "description": "Unauthorized"
52160          }
52161        },
52162        "schemes": [
52163          "https"
52164        ],
52165        "tags": [
52166          "batch_v1"
52167        ],
52168        "x-kubernetes-action": "patch",
52169        "x-kubernetes-group-version-kind": {
52170          "group": "batch",
52171          "kind": "CronJob",
52172          "version": "v1"
52173        }
52174      },
52175      "put": {
52176        "consumes": [
52177          "*/*"
52178        ],
52179        "description": "replace the specified CronJob",
52180        "operationId": "replaceBatchV1NamespacedCronJob",
52181        "parameters": [
52182          {
52183            "in": "body",
52184            "name": "body",
52185            "required": true,
52186            "schema": {
52187              "$ref": "#/definitions/io.k8s.api.batch.v1.CronJob"
52188            }
52189          },
52190          {
52191            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
52192            "in": "query",
52193            "name": "dryRun",
52194            "type": "string",
52195            "uniqueItems": true
52196          },
52197          {
52198            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
52199            "in": "query",
52200            "name": "fieldManager",
52201            "type": "string",
52202            "uniqueItems": true
52203          }
52204        ],
52205        "produces": [
52206          "application/json",
52207          "application/yaml",
52208          "application/vnd.kubernetes.protobuf"
52209        ],
52210        "responses": {
52211          "200": {
52212            "description": "OK",
52213            "schema": {
52214              "$ref": "#/definitions/io.k8s.api.batch.v1.CronJob"
52215            }
52216          },
52217          "201": {
52218            "description": "Created",
52219            "schema": {
52220              "$ref": "#/definitions/io.k8s.api.batch.v1.CronJob"
52221            }
52222          },
52223          "401": {
52224            "description": "Unauthorized"
52225          }
52226        },
52227        "schemes": [
52228          "https"
52229        ],
52230        "tags": [
52231          "batch_v1"
52232        ],
52233        "x-kubernetes-action": "put",
52234        "x-kubernetes-group-version-kind": {
52235          "group": "batch",
52236          "kind": "CronJob",
52237          "version": "v1"
52238        }
52239      }
52240    },
52241    "/apis/batch/v1/namespaces/{namespace}/cronjobs/{name}/status": {
52242      "get": {
52243        "consumes": [
52244          "*/*"
52245        ],
52246        "description": "read status of the specified CronJob",
52247        "operationId": "readBatchV1NamespacedCronJobStatus",
52248        "produces": [
52249          "application/json",
52250          "application/yaml",
52251          "application/vnd.kubernetes.protobuf"
52252        ],
52253        "responses": {
52254          "200": {
52255            "description": "OK",
52256            "schema": {
52257              "$ref": "#/definitions/io.k8s.api.batch.v1.CronJob"
52258            }
52259          },
52260          "401": {
52261            "description": "Unauthorized"
52262          }
52263        },
52264        "schemes": [
52265          "https"
52266        ],
52267        "tags": [
52268          "batch_v1"
52269        ],
52270        "x-kubernetes-action": "get",
52271        "x-kubernetes-group-version-kind": {
52272          "group": "batch",
52273          "kind": "CronJob",
52274          "version": "v1"
52275        }
52276      },
52277      "parameters": [
52278        {
52279          "description": "name of the CronJob",
52280          "in": "path",
52281          "name": "name",
52282          "required": true,
52283          "type": "string",
52284          "uniqueItems": true
52285        },
52286        {
52287          "description": "object name and auth scope, such as for teams and projects",
52288          "in": "path",
52289          "name": "namespace",
52290          "required": true,
52291          "type": "string",
52292          "uniqueItems": true
52293        },
52294        {
52295          "description": "If 'true', then the output is pretty printed.",
52296          "in": "query",
52297          "name": "pretty",
52298          "type": "string",
52299          "uniqueItems": true
52300        }
52301      ],
52302      "patch": {
52303        "consumes": [
52304          "application/json-patch+json",
52305          "application/merge-patch+json",
52306          "application/strategic-merge-patch+json",
52307          "application/apply-patch+yaml"
52308        ],
52309        "description": "partially update status of the specified CronJob",
52310        "operationId": "patchBatchV1NamespacedCronJobStatus",
52311        "parameters": [
52312          {
52313            "in": "body",
52314            "name": "body",
52315            "required": true,
52316            "schema": {
52317              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
52318            }
52319          },
52320          {
52321            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
52322            "in": "query",
52323            "name": "dryRun",
52324            "type": "string",
52325            "uniqueItems": true
52326          },
52327          {
52328            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
52329            "in": "query",
52330            "name": "fieldManager",
52331            "type": "string",
52332            "uniqueItems": true
52333          },
52334          {
52335            "description": "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.",
52336            "in": "query",
52337            "name": "force",
52338            "type": "boolean",
52339            "uniqueItems": true
52340          }
52341        ],
52342        "produces": [
52343          "application/json",
52344          "application/yaml",
52345          "application/vnd.kubernetes.protobuf"
52346        ],
52347        "responses": {
52348          "200": {
52349            "description": "OK",
52350            "schema": {
52351              "$ref": "#/definitions/io.k8s.api.batch.v1.CronJob"
52352            }
52353          },
52354          "201": {
52355            "description": "Created",
52356            "schema": {
52357              "$ref": "#/definitions/io.k8s.api.batch.v1.CronJob"
52358            }
52359          },
52360          "401": {
52361            "description": "Unauthorized"
52362          }
52363        },
52364        "schemes": [
52365          "https"
52366        ],
52367        "tags": [
52368          "batch_v1"
52369        ],
52370        "x-kubernetes-action": "patch",
52371        "x-kubernetes-group-version-kind": {
52372          "group": "batch",
52373          "kind": "CronJob",
52374          "version": "v1"
52375        }
52376      },
52377      "put": {
52378        "consumes": [
52379          "*/*"
52380        ],
52381        "description": "replace status of the specified CronJob",
52382        "operationId": "replaceBatchV1NamespacedCronJobStatus",
52383        "parameters": [
52384          {
52385            "in": "body",
52386            "name": "body",
52387            "required": true,
52388            "schema": {
52389              "$ref": "#/definitions/io.k8s.api.batch.v1.CronJob"
52390            }
52391          },
52392          {
52393            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
52394            "in": "query",
52395            "name": "dryRun",
52396            "type": "string",
52397            "uniqueItems": true
52398          },
52399          {
52400            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
52401            "in": "query",
52402            "name": "fieldManager",
52403            "type": "string",
52404            "uniqueItems": true
52405          }
52406        ],
52407        "produces": [
52408          "application/json",
52409          "application/yaml",
52410          "application/vnd.kubernetes.protobuf"
52411        ],
52412        "responses": {
52413          "200": {
52414            "description": "OK",
52415            "schema": {
52416              "$ref": "#/definitions/io.k8s.api.batch.v1.CronJob"
52417            }
52418          },
52419          "201": {
52420            "description": "Created",
52421            "schema": {
52422              "$ref": "#/definitions/io.k8s.api.batch.v1.CronJob"
52423            }
52424          },
52425          "401": {
52426            "description": "Unauthorized"
52427          }
52428        },
52429        "schemes": [
52430          "https"
52431        ],
52432        "tags": [
52433          "batch_v1"
52434        ],
52435        "x-kubernetes-action": "put",
52436        "x-kubernetes-group-version-kind": {
52437          "group": "batch",
52438          "kind": "CronJob",
52439          "version": "v1"
52440        }
52441      }
52442    },
52443    "/apis/batch/v1/namespaces/{namespace}/jobs": {
52444      "delete": {
52445        "consumes": [
52446          "*/*"
52447        ],
52448        "description": "delete collection of Job",
52449        "operationId": "deleteBatchV1CollectionNamespacedJob",
52450        "parameters": [
52451          {
52452            "in": "body",
52453            "name": "body",
52454            "schema": {
52455              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
52456            }
52457          },
52458          {
52459            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
52460            "in": "query",
52461            "name": "continue",
52462            "type": "string",
52463            "uniqueItems": true
52464          },
52465          {
52466            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
52467            "in": "query",
52468            "name": "dryRun",
52469            "type": "string",
52470            "uniqueItems": true
52471          },
52472          {
52473            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
52474            "in": "query",
52475            "name": "fieldSelector",
52476            "type": "string",
52477            "uniqueItems": true
52478          },
52479          {
52480            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
52481            "in": "query",
52482            "name": "gracePeriodSeconds",
52483            "type": "integer",
52484            "uniqueItems": true
52485          },
52486          {
52487            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
52488            "in": "query",
52489            "name": "labelSelector",
52490            "type": "string",
52491            "uniqueItems": true
52492          },
52493          {
52494            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
52495            "in": "query",
52496            "name": "limit",
52497            "type": "integer",
52498            "uniqueItems": true
52499          },
52500          {
52501            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
52502            "in": "query",
52503            "name": "orphanDependents",
52504            "type": "boolean",
52505            "uniqueItems": true
52506          },
52507          {
52508            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
52509            "in": "query",
52510            "name": "propagationPolicy",
52511            "type": "string",
52512            "uniqueItems": true
52513          },
52514          {
52515            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
52516            "in": "query",
52517            "name": "resourceVersion",
52518            "type": "string",
52519            "uniqueItems": true
52520          },
52521          {
52522            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
52523            "in": "query",
52524            "name": "resourceVersionMatch",
52525            "type": "string",
52526            "uniqueItems": true
52527          },
52528          {
52529            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
52530            "in": "query",
52531            "name": "timeoutSeconds",
52532            "type": "integer",
52533            "uniqueItems": true
52534          }
52535        ],
52536        "produces": [
52537          "application/json",
52538          "application/yaml",
52539          "application/vnd.kubernetes.protobuf"
52540        ],
52541        "responses": {
52542          "200": {
52543            "description": "OK",
52544            "schema": {
52545              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
52546            }
52547          },
52548          "401": {
52549            "description": "Unauthorized"
52550          }
52551        },
52552        "schemes": [
52553          "https"
52554        ],
52555        "tags": [
52556          "batch_v1"
52557        ],
52558        "x-kubernetes-action": "deletecollection",
52559        "x-kubernetes-group-version-kind": {
52560          "group": "batch",
52561          "kind": "Job",
52562          "version": "v1"
52563        }
52564      },
52565      "get": {
52566        "consumes": [
52567          "*/*"
52568        ],
52569        "description": "list or watch objects of kind Job",
52570        "operationId": "listBatchV1NamespacedJob",
52571        "parameters": [
52572          {
52573            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
52574            "in": "query",
52575            "name": "allowWatchBookmarks",
52576            "type": "boolean",
52577            "uniqueItems": true
52578          },
52579          {
52580            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
52581            "in": "query",
52582            "name": "continue",
52583            "type": "string",
52584            "uniqueItems": true
52585          },
52586          {
52587            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
52588            "in": "query",
52589            "name": "fieldSelector",
52590            "type": "string",
52591            "uniqueItems": true
52592          },
52593          {
52594            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
52595            "in": "query",
52596            "name": "labelSelector",
52597            "type": "string",
52598            "uniqueItems": true
52599          },
52600          {
52601            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
52602            "in": "query",
52603            "name": "limit",
52604            "type": "integer",
52605            "uniqueItems": true
52606          },
52607          {
52608            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
52609            "in": "query",
52610            "name": "resourceVersion",
52611            "type": "string",
52612            "uniqueItems": true
52613          },
52614          {
52615            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
52616            "in": "query",
52617            "name": "resourceVersionMatch",
52618            "type": "string",
52619            "uniqueItems": true
52620          },
52621          {
52622            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
52623            "in": "query",
52624            "name": "timeoutSeconds",
52625            "type": "integer",
52626            "uniqueItems": true
52627          },
52628          {
52629            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
52630            "in": "query",
52631            "name": "watch",
52632            "type": "boolean",
52633            "uniqueItems": true
52634          }
52635        ],
52636        "produces": [
52637          "application/json",
52638          "application/yaml",
52639          "application/vnd.kubernetes.protobuf",
52640          "application/json;stream=watch",
52641          "application/vnd.kubernetes.protobuf;stream=watch"
52642        ],
52643        "responses": {
52644          "200": {
52645            "description": "OK",
52646            "schema": {
52647              "$ref": "#/definitions/io.k8s.api.batch.v1.JobList"
52648            }
52649          },
52650          "401": {
52651            "description": "Unauthorized"
52652          }
52653        },
52654        "schemes": [
52655          "https"
52656        ],
52657        "tags": [
52658          "batch_v1"
52659        ],
52660        "x-kubernetes-action": "list",
52661        "x-kubernetes-group-version-kind": {
52662          "group": "batch",
52663          "kind": "Job",
52664          "version": "v1"
52665        }
52666      },
52667      "parameters": [
52668        {
52669          "description": "object name and auth scope, such as for teams and projects",
52670          "in": "path",
52671          "name": "namespace",
52672          "required": true,
52673          "type": "string",
52674          "uniqueItems": true
52675        },
52676        {
52677          "description": "If 'true', then the output is pretty printed.",
52678          "in": "query",
52679          "name": "pretty",
52680          "type": "string",
52681          "uniqueItems": true
52682        }
52683      ],
52684      "post": {
52685        "consumes": [
52686          "*/*"
52687        ],
52688        "description": "create a Job",
52689        "operationId": "createBatchV1NamespacedJob",
52690        "parameters": [
52691          {
52692            "in": "body",
52693            "name": "body",
52694            "required": true,
52695            "schema": {
52696              "$ref": "#/definitions/io.k8s.api.batch.v1.Job"
52697            }
52698          },
52699          {
52700            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
52701            "in": "query",
52702            "name": "dryRun",
52703            "type": "string",
52704            "uniqueItems": true
52705          },
52706          {
52707            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
52708            "in": "query",
52709            "name": "fieldManager",
52710            "type": "string",
52711            "uniqueItems": true
52712          }
52713        ],
52714        "produces": [
52715          "application/json",
52716          "application/yaml",
52717          "application/vnd.kubernetes.protobuf"
52718        ],
52719        "responses": {
52720          "200": {
52721            "description": "OK",
52722            "schema": {
52723              "$ref": "#/definitions/io.k8s.api.batch.v1.Job"
52724            }
52725          },
52726          "201": {
52727            "description": "Created",
52728            "schema": {
52729              "$ref": "#/definitions/io.k8s.api.batch.v1.Job"
52730            }
52731          },
52732          "202": {
52733            "description": "Accepted",
52734            "schema": {
52735              "$ref": "#/definitions/io.k8s.api.batch.v1.Job"
52736            }
52737          },
52738          "401": {
52739            "description": "Unauthorized"
52740          }
52741        },
52742        "schemes": [
52743          "https"
52744        ],
52745        "tags": [
52746          "batch_v1"
52747        ],
52748        "x-kubernetes-action": "post",
52749        "x-kubernetes-group-version-kind": {
52750          "group": "batch",
52751          "kind": "Job",
52752          "version": "v1"
52753        }
52754      }
52755    },
52756    "/apis/batch/v1/namespaces/{namespace}/jobs/{name}": {
52757      "delete": {
52758        "consumes": [
52759          "*/*"
52760        ],
52761        "description": "delete a Job",
52762        "operationId": "deleteBatchV1NamespacedJob",
52763        "parameters": [
52764          {
52765            "in": "body",
52766            "name": "body",
52767            "schema": {
52768              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
52769            }
52770          },
52771          {
52772            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
52773            "in": "query",
52774            "name": "dryRun",
52775            "type": "string",
52776            "uniqueItems": true
52777          },
52778          {
52779            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
52780            "in": "query",
52781            "name": "gracePeriodSeconds",
52782            "type": "integer",
52783            "uniqueItems": true
52784          },
52785          {
52786            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
52787            "in": "query",
52788            "name": "orphanDependents",
52789            "type": "boolean",
52790            "uniqueItems": true
52791          },
52792          {
52793            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
52794            "in": "query",
52795            "name": "propagationPolicy",
52796            "type": "string",
52797            "uniqueItems": true
52798          }
52799        ],
52800        "produces": [
52801          "application/json",
52802          "application/yaml",
52803          "application/vnd.kubernetes.protobuf"
52804        ],
52805        "responses": {
52806          "200": {
52807            "description": "OK",
52808            "schema": {
52809              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
52810            }
52811          },
52812          "202": {
52813            "description": "Accepted",
52814            "schema": {
52815              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
52816            }
52817          },
52818          "401": {
52819            "description": "Unauthorized"
52820          }
52821        },
52822        "schemes": [
52823          "https"
52824        ],
52825        "tags": [
52826          "batch_v1"
52827        ],
52828        "x-kubernetes-action": "delete",
52829        "x-kubernetes-group-version-kind": {
52830          "group": "batch",
52831          "kind": "Job",
52832          "version": "v1"
52833        }
52834      },
52835      "get": {
52836        "consumes": [
52837          "*/*"
52838        ],
52839        "description": "read the specified Job",
52840        "operationId": "readBatchV1NamespacedJob",
52841        "produces": [
52842          "application/json",
52843          "application/yaml",
52844          "application/vnd.kubernetes.protobuf"
52845        ],
52846        "responses": {
52847          "200": {
52848            "description": "OK",
52849            "schema": {
52850              "$ref": "#/definitions/io.k8s.api.batch.v1.Job"
52851            }
52852          },
52853          "401": {
52854            "description": "Unauthorized"
52855          }
52856        },
52857        "schemes": [
52858          "https"
52859        ],
52860        "tags": [
52861          "batch_v1"
52862        ],
52863        "x-kubernetes-action": "get",
52864        "x-kubernetes-group-version-kind": {
52865          "group": "batch",
52866          "kind": "Job",
52867          "version": "v1"
52868        }
52869      },
52870      "parameters": [
52871        {
52872          "description": "name of the Job",
52873          "in": "path",
52874          "name": "name",
52875          "required": true,
52876          "type": "string",
52877          "uniqueItems": true
52878        },
52879        {
52880          "description": "object name and auth scope, such as for teams and projects",
52881          "in": "path",
52882          "name": "namespace",
52883          "required": true,
52884          "type": "string",
52885          "uniqueItems": true
52886        },
52887        {
52888          "description": "If 'true', then the output is pretty printed.",
52889          "in": "query",
52890          "name": "pretty",
52891          "type": "string",
52892          "uniqueItems": true
52893        }
52894      ],
52895      "patch": {
52896        "consumes": [
52897          "application/json-patch+json",
52898          "application/merge-patch+json",
52899          "application/strategic-merge-patch+json",
52900          "application/apply-patch+yaml"
52901        ],
52902        "description": "partially update the specified Job",
52903        "operationId": "patchBatchV1NamespacedJob",
52904        "parameters": [
52905          {
52906            "in": "body",
52907            "name": "body",
52908            "required": true,
52909            "schema": {
52910              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
52911            }
52912          },
52913          {
52914            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
52915            "in": "query",
52916            "name": "dryRun",
52917            "type": "string",
52918            "uniqueItems": true
52919          },
52920          {
52921            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
52922            "in": "query",
52923            "name": "fieldManager",
52924            "type": "string",
52925            "uniqueItems": true
52926          },
52927          {
52928            "description": "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.",
52929            "in": "query",
52930            "name": "force",
52931            "type": "boolean",
52932            "uniqueItems": true
52933          }
52934        ],
52935        "produces": [
52936          "application/json",
52937          "application/yaml",
52938          "application/vnd.kubernetes.protobuf"
52939        ],
52940        "responses": {
52941          "200": {
52942            "description": "OK",
52943            "schema": {
52944              "$ref": "#/definitions/io.k8s.api.batch.v1.Job"
52945            }
52946          },
52947          "201": {
52948            "description": "Created",
52949            "schema": {
52950              "$ref": "#/definitions/io.k8s.api.batch.v1.Job"
52951            }
52952          },
52953          "401": {
52954            "description": "Unauthorized"
52955          }
52956        },
52957        "schemes": [
52958          "https"
52959        ],
52960        "tags": [
52961          "batch_v1"
52962        ],
52963        "x-kubernetes-action": "patch",
52964        "x-kubernetes-group-version-kind": {
52965          "group": "batch",
52966          "kind": "Job",
52967          "version": "v1"
52968        }
52969      },
52970      "put": {
52971        "consumes": [
52972          "*/*"
52973        ],
52974        "description": "replace the specified Job",
52975        "operationId": "replaceBatchV1NamespacedJob",
52976        "parameters": [
52977          {
52978            "in": "body",
52979            "name": "body",
52980            "required": true,
52981            "schema": {
52982              "$ref": "#/definitions/io.k8s.api.batch.v1.Job"
52983            }
52984          },
52985          {
52986            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
52987            "in": "query",
52988            "name": "dryRun",
52989            "type": "string",
52990            "uniqueItems": true
52991          },
52992          {
52993            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
52994            "in": "query",
52995            "name": "fieldManager",
52996            "type": "string",
52997            "uniqueItems": true
52998          }
52999        ],
53000        "produces": [
53001          "application/json",
53002          "application/yaml",
53003          "application/vnd.kubernetes.protobuf"
53004        ],
53005        "responses": {
53006          "200": {
53007            "description": "OK",
53008            "schema": {
53009              "$ref": "#/definitions/io.k8s.api.batch.v1.Job"
53010            }
53011          },
53012          "201": {
53013            "description": "Created",
53014            "schema": {
53015              "$ref": "#/definitions/io.k8s.api.batch.v1.Job"
53016            }
53017          },
53018          "401": {
53019            "description": "Unauthorized"
53020          }
53021        },
53022        "schemes": [
53023          "https"
53024        ],
53025        "tags": [
53026          "batch_v1"
53027        ],
53028        "x-kubernetes-action": "put",
53029        "x-kubernetes-group-version-kind": {
53030          "group": "batch",
53031          "kind": "Job",
53032          "version": "v1"
53033        }
53034      }
53035    },
53036    "/apis/batch/v1/namespaces/{namespace}/jobs/{name}/status": {
53037      "get": {
53038        "consumes": [
53039          "*/*"
53040        ],
53041        "description": "read status of the specified Job",
53042        "operationId": "readBatchV1NamespacedJobStatus",
53043        "produces": [
53044          "application/json",
53045          "application/yaml",
53046          "application/vnd.kubernetes.protobuf"
53047        ],
53048        "responses": {
53049          "200": {
53050            "description": "OK",
53051            "schema": {
53052              "$ref": "#/definitions/io.k8s.api.batch.v1.Job"
53053            }
53054          },
53055          "401": {
53056            "description": "Unauthorized"
53057          }
53058        },
53059        "schemes": [
53060          "https"
53061        ],
53062        "tags": [
53063          "batch_v1"
53064        ],
53065        "x-kubernetes-action": "get",
53066        "x-kubernetes-group-version-kind": {
53067          "group": "batch",
53068          "kind": "Job",
53069          "version": "v1"
53070        }
53071      },
53072      "parameters": [
53073        {
53074          "description": "name of the Job",
53075          "in": "path",
53076          "name": "name",
53077          "required": true,
53078          "type": "string",
53079          "uniqueItems": true
53080        },
53081        {
53082          "description": "object name and auth scope, such as for teams and projects",
53083          "in": "path",
53084          "name": "namespace",
53085          "required": true,
53086          "type": "string",
53087          "uniqueItems": true
53088        },
53089        {
53090          "description": "If 'true', then the output is pretty printed.",
53091          "in": "query",
53092          "name": "pretty",
53093          "type": "string",
53094          "uniqueItems": true
53095        }
53096      ],
53097      "patch": {
53098        "consumes": [
53099          "application/json-patch+json",
53100          "application/merge-patch+json",
53101          "application/strategic-merge-patch+json",
53102          "application/apply-patch+yaml"
53103        ],
53104        "description": "partially update status of the specified Job",
53105        "operationId": "patchBatchV1NamespacedJobStatus",
53106        "parameters": [
53107          {
53108            "in": "body",
53109            "name": "body",
53110            "required": true,
53111            "schema": {
53112              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
53113            }
53114          },
53115          {
53116            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
53117            "in": "query",
53118            "name": "dryRun",
53119            "type": "string",
53120            "uniqueItems": true
53121          },
53122          {
53123            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
53124            "in": "query",
53125            "name": "fieldManager",
53126            "type": "string",
53127            "uniqueItems": true
53128          },
53129          {
53130            "description": "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.",
53131            "in": "query",
53132            "name": "force",
53133            "type": "boolean",
53134            "uniqueItems": true
53135          }
53136        ],
53137        "produces": [
53138          "application/json",
53139          "application/yaml",
53140          "application/vnd.kubernetes.protobuf"
53141        ],
53142        "responses": {
53143          "200": {
53144            "description": "OK",
53145            "schema": {
53146              "$ref": "#/definitions/io.k8s.api.batch.v1.Job"
53147            }
53148          },
53149          "201": {
53150            "description": "Created",
53151            "schema": {
53152              "$ref": "#/definitions/io.k8s.api.batch.v1.Job"
53153            }
53154          },
53155          "401": {
53156            "description": "Unauthorized"
53157          }
53158        },
53159        "schemes": [
53160          "https"
53161        ],
53162        "tags": [
53163          "batch_v1"
53164        ],
53165        "x-kubernetes-action": "patch",
53166        "x-kubernetes-group-version-kind": {
53167          "group": "batch",
53168          "kind": "Job",
53169          "version": "v1"
53170        }
53171      },
53172      "put": {
53173        "consumes": [
53174          "*/*"
53175        ],
53176        "description": "replace status of the specified Job",
53177        "operationId": "replaceBatchV1NamespacedJobStatus",
53178        "parameters": [
53179          {
53180            "in": "body",
53181            "name": "body",
53182            "required": true,
53183            "schema": {
53184              "$ref": "#/definitions/io.k8s.api.batch.v1.Job"
53185            }
53186          },
53187          {
53188            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
53189            "in": "query",
53190            "name": "dryRun",
53191            "type": "string",
53192            "uniqueItems": true
53193          },
53194          {
53195            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
53196            "in": "query",
53197            "name": "fieldManager",
53198            "type": "string",
53199            "uniqueItems": true
53200          }
53201        ],
53202        "produces": [
53203          "application/json",
53204          "application/yaml",
53205          "application/vnd.kubernetes.protobuf"
53206        ],
53207        "responses": {
53208          "200": {
53209            "description": "OK",
53210            "schema": {
53211              "$ref": "#/definitions/io.k8s.api.batch.v1.Job"
53212            }
53213          },
53214          "201": {
53215            "description": "Created",
53216            "schema": {
53217              "$ref": "#/definitions/io.k8s.api.batch.v1.Job"
53218            }
53219          },
53220          "401": {
53221            "description": "Unauthorized"
53222          }
53223        },
53224        "schemes": [
53225          "https"
53226        ],
53227        "tags": [
53228          "batch_v1"
53229        ],
53230        "x-kubernetes-action": "put",
53231        "x-kubernetes-group-version-kind": {
53232          "group": "batch",
53233          "kind": "Job",
53234          "version": "v1"
53235        }
53236      }
53237    },
53238    "/apis/batch/v1/watch/cronjobs": {
53239      "get": {
53240        "consumes": [
53241          "*/*"
53242        ],
53243        "description": "watch individual changes to a list of CronJob. deprecated: use the 'watch' parameter with a list operation instead.",
53244        "operationId": "watchBatchV1CronJobListForAllNamespaces",
53245        "produces": [
53246          "application/json",
53247          "application/yaml",
53248          "application/vnd.kubernetes.protobuf",
53249          "application/json;stream=watch",
53250          "application/vnd.kubernetes.protobuf;stream=watch"
53251        ],
53252        "responses": {
53253          "200": {
53254            "description": "OK",
53255            "schema": {
53256              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
53257            }
53258          },
53259          "401": {
53260            "description": "Unauthorized"
53261          }
53262        },
53263        "schemes": [
53264          "https"
53265        ],
53266        "tags": [
53267          "batch_v1"
53268        ],
53269        "x-kubernetes-action": "watchlist",
53270        "x-kubernetes-group-version-kind": {
53271          "group": "batch",
53272          "kind": "CronJob",
53273          "version": "v1"
53274        }
53275      },
53276      "parameters": [
53277        {
53278          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
53279          "in": "query",
53280          "name": "allowWatchBookmarks",
53281          "type": "boolean",
53282          "uniqueItems": true
53283        },
53284        {
53285          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
53286          "in": "query",
53287          "name": "continue",
53288          "type": "string",
53289          "uniqueItems": true
53290        },
53291        {
53292          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
53293          "in": "query",
53294          "name": "fieldSelector",
53295          "type": "string",
53296          "uniqueItems": true
53297        },
53298        {
53299          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
53300          "in": "query",
53301          "name": "labelSelector",
53302          "type": "string",
53303          "uniqueItems": true
53304        },
53305        {
53306          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
53307          "in": "query",
53308          "name": "limit",
53309          "type": "integer",
53310          "uniqueItems": true
53311        },
53312        {
53313          "description": "If 'true', then the output is pretty printed.",
53314          "in": "query",
53315          "name": "pretty",
53316          "type": "string",
53317          "uniqueItems": true
53318        },
53319        {
53320          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
53321          "in": "query",
53322          "name": "resourceVersion",
53323          "type": "string",
53324          "uniqueItems": true
53325        },
53326        {
53327          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
53328          "in": "query",
53329          "name": "resourceVersionMatch",
53330          "type": "string",
53331          "uniqueItems": true
53332        },
53333        {
53334          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
53335          "in": "query",
53336          "name": "timeoutSeconds",
53337          "type": "integer",
53338          "uniqueItems": true
53339        },
53340        {
53341          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
53342          "in": "query",
53343          "name": "watch",
53344          "type": "boolean",
53345          "uniqueItems": true
53346        }
53347      ]
53348    },
53349    "/apis/batch/v1/watch/jobs": {
53350      "get": {
53351        "consumes": [
53352          "*/*"
53353        ],
53354        "description": "watch individual changes to a list of Job. deprecated: use the 'watch' parameter with a list operation instead.",
53355        "operationId": "watchBatchV1JobListForAllNamespaces",
53356        "produces": [
53357          "application/json",
53358          "application/yaml",
53359          "application/vnd.kubernetes.protobuf",
53360          "application/json;stream=watch",
53361          "application/vnd.kubernetes.protobuf;stream=watch"
53362        ],
53363        "responses": {
53364          "200": {
53365            "description": "OK",
53366            "schema": {
53367              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
53368            }
53369          },
53370          "401": {
53371            "description": "Unauthorized"
53372          }
53373        },
53374        "schemes": [
53375          "https"
53376        ],
53377        "tags": [
53378          "batch_v1"
53379        ],
53380        "x-kubernetes-action": "watchlist",
53381        "x-kubernetes-group-version-kind": {
53382          "group": "batch",
53383          "kind": "Job",
53384          "version": "v1"
53385        }
53386      },
53387      "parameters": [
53388        {
53389          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
53390          "in": "query",
53391          "name": "allowWatchBookmarks",
53392          "type": "boolean",
53393          "uniqueItems": true
53394        },
53395        {
53396          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
53397          "in": "query",
53398          "name": "continue",
53399          "type": "string",
53400          "uniqueItems": true
53401        },
53402        {
53403          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
53404          "in": "query",
53405          "name": "fieldSelector",
53406          "type": "string",
53407          "uniqueItems": true
53408        },
53409        {
53410          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
53411          "in": "query",
53412          "name": "labelSelector",
53413          "type": "string",
53414          "uniqueItems": true
53415        },
53416        {
53417          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
53418          "in": "query",
53419          "name": "limit",
53420          "type": "integer",
53421          "uniqueItems": true
53422        },
53423        {
53424          "description": "If 'true', then the output is pretty printed.",
53425          "in": "query",
53426          "name": "pretty",
53427          "type": "string",
53428          "uniqueItems": true
53429        },
53430        {
53431          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
53432          "in": "query",
53433          "name": "resourceVersion",
53434          "type": "string",
53435          "uniqueItems": true
53436        },
53437        {
53438          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
53439          "in": "query",
53440          "name": "resourceVersionMatch",
53441          "type": "string",
53442          "uniqueItems": true
53443        },
53444        {
53445          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
53446          "in": "query",
53447          "name": "timeoutSeconds",
53448          "type": "integer",
53449          "uniqueItems": true
53450        },
53451        {
53452          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
53453          "in": "query",
53454          "name": "watch",
53455          "type": "boolean",
53456          "uniqueItems": true
53457        }
53458      ]
53459    },
53460    "/apis/batch/v1/watch/namespaces/{namespace}/cronjobs": {
53461      "get": {
53462        "consumes": [
53463          "*/*"
53464        ],
53465        "description": "watch individual changes to a list of CronJob. deprecated: use the 'watch' parameter with a list operation instead.",
53466        "operationId": "watchBatchV1NamespacedCronJobList",
53467        "produces": [
53468          "application/json",
53469          "application/yaml",
53470          "application/vnd.kubernetes.protobuf",
53471          "application/json;stream=watch",
53472          "application/vnd.kubernetes.protobuf;stream=watch"
53473        ],
53474        "responses": {
53475          "200": {
53476            "description": "OK",
53477            "schema": {
53478              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
53479            }
53480          },
53481          "401": {
53482            "description": "Unauthorized"
53483          }
53484        },
53485        "schemes": [
53486          "https"
53487        ],
53488        "tags": [
53489          "batch_v1"
53490        ],
53491        "x-kubernetes-action": "watchlist",
53492        "x-kubernetes-group-version-kind": {
53493          "group": "batch",
53494          "kind": "CronJob",
53495          "version": "v1"
53496        }
53497      },
53498      "parameters": [
53499        {
53500          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
53501          "in": "query",
53502          "name": "allowWatchBookmarks",
53503          "type": "boolean",
53504          "uniqueItems": true
53505        },
53506        {
53507          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
53508          "in": "query",
53509          "name": "continue",
53510          "type": "string",
53511          "uniqueItems": true
53512        },
53513        {
53514          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
53515          "in": "query",
53516          "name": "fieldSelector",
53517          "type": "string",
53518          "uniqueItems": true
53519        },
53520        {
53521          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
53522          "in": "query",
53523          "name": "labelSelector",
53524          "type": "string",
53525          "uniqueItems": true
53526        },
53527        {
53528          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
53529          "in": "query",
53530          "name": "limit",
53531          "type": "integer",
53532          "uniqueItems": true
53533        },
53534        {
53535          "description": "object name and auth scope, such as for teams and projects",
53536          "in": "path",
53537          "name": "namespace",
53538          "required": true,
53539          "type": "string",
53540          "uniqueItems": true
53541        },
53542        {
53543          "description": "If 'true', then the output is pretty printed.",
53544          "in": "query",
53545          "name": "pretty",
53546          "type": "string",
53547          "uniqueItems": true
53548        },
53549        {
53550          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
53551          "in": "query",
53552          "name": "resourceVersion",
53553          "type": "string",
53554          "uniqueItems": true
53555        },
53556        {
53557          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
53558          "in": "query",
53559          "name": "resourceVersionMatch",
53560          "type": "string",
53561          "uniqueItems": true
53562        },
53563        {
53564          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
53565          "in": "query",
53566          "name": "timeoutSeconds",
53567          "type": "integer",
53568          "uniqueItems": true
53569        },
53570        {
53571          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
53572          "in": "query",
53573          "name": "watch",
53574          "type": "boolean",
53575          "uniqueItems": true
53576        }
53577      ]
53578    },
53579    "/apis/batch/v1/watch/namespaces/{namespace}/cronjobs/{name}": {
53580      "get": {
53581        "consumes": [
53582          "*/*"
53583        ],
53584        "description": "watch changes to an object of kind CronJob. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.",
53585        "operationId": "watchBatchV1NamespacedCronJob",
53586        "produces": [
53587          "application/json",
53588          "application/yaml",
53589          "application/vnd.kubernetes.protobuf",
53590          "application/json;stream=watch",
53591          "application/vnd.kubernetes.protobuf;stream=watch"
53592        ],
53593        "responses": {
53594          "200": {
53595            "description": "OK",
53596            "schema": {
53597              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
53598            }
53599          },
53600          "401": {
53601            "description": "Unauthorized"
53602          }
53603        },
53604        "schemes": [
53605          "https"
53606        ],
53607        "tags": [
53608          "batch_v1"
53609        ],
53610        "x-kubernetes-action": "watch",
53611        "x-kubernetes-group-version-kind": {
53612          "group": "batch",
53613          "kind": "CronJob",
53614          "version": "v1"
53615        }
53616      },
53617      "parameters": [
53618        {
53619          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
53620          "in": "query",
53621          "name": "allowWatchBookmarks",
53622          "type": "boolean",
53623          "uniqueItems": true
53624        },
53625        {
53626          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
53627          "in": "query",
53628          "name": "continue",
53629          "type": "string",
53630          "uniqueItems": true
53631        },
53632        {
53633          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
53634          "in": "query",
53635          "name": "fieldSelector",
53636          "type": "string",
53637          "uniqueItems": true
53638        },
53639        {
53640          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
53641          "in": "query",
53642          "name": "labelSelector",
53643          "type": "string",
53644          "uniqueItems": true
53645        },
53646        {
53647          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
53648          "in": "query",
53649          "name": "limit",
53650          "type": "integer",
53651          "uniqueItems": true
53652        },
53653        {
53654          "description": "name of the CronJob",
53655          "in": "path",
53656          "name": "name",
53657          "required": true,
53658          "type": "string",
53659          "uniqueItems": true
53660        },
53661        {
53662          "description": "object name and auth scope, such as for teams and projects",
53663          "in": "path",
53664          "name": "namespace",
53665          "required": true,
53666          "type": "string",
53667          "uniqueItems": true
53668        },
53669        {
53670          "description": "If 'true', then the output is pretty printed.",
53671          "in": "query",
53672          "name": "pretty",
53673          "type": "string",
53674          "uniqueItems": true
53675        },
53676        {
53677          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
53678          "in": "query",
53679          "name": "resourceVersion",
53680          "type": "string",
53681          "uniqueItems": true
53682        },
53683        {
53684          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
53685          "in": "query",
53686          "name": "resourceVersionMatch",
53687          "type": "string",
53688          "uniqueItems": true
53689        },
53690        {
53691          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
53692          "in": "query",
53693          "name": "timeoutSeconds",
53694          "type": "integer",
53695          "uniqueItems": true
53696        },
53697        {
53698          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
53699          "in": "query",
53700          "name": "watch",
53701          "type": "boolean",
53702          "uniqueItems": true
53703        }
53704      ]
53705    },
53706    "/apis/batch/v1/watch/namespaces/{namespace}/jobs": {
53707      "get": {
53708        "consumes": [
53709          "*/*"
53710        ],
53711        "description": "watch individual changes to a list of Job. deprecated: use the 'watch' parameter with a list operation instead.",
53712        "operationId": "watchBatchV1NamespacedJobList",
53713        "produces": [
53714          "application/json",
53715          "application/yaml",
53716          "application/vnd.kubernetes.protobuf",
53717          "application/json;stream=watch",
53718          "application/vnd.kubernetes.protobuf;stream=watch"
53719        ],
53720        "responses": {
53721          "200": {
53722            "description": "OK",
53723            "schema": {
53724              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
53725            }
53726          },
53727          "401": {
53728            "description": "Unauthorized"
53729          }
53730        },
53731        "schemes": [
53732          "https"
53733        ],
53734        "tags": [
53735          "batch_v1"
53736        ],
53737        "x-kubernetes-action": "watchlist",
53738        "x-kubernetes-group-version-kind": {
53739          "group": "batch",
53740          "kind": "Job",
53741          "version": "v1"
53742        }
53743      },
53744      "parameters": [
53745        {
53746          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
53747          "in": "query",
53748          "name": "allowWatchBookmarks",
53749          "type": "boolean",
53750          "uniqueItems": true
53751        },
53752        {
53753          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
53754          "in": "query",
53755          "name": "continue",
53756          "type": "string",
53757          "uniqueItems": true
53758        },
53759        {
53760          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
53761          "in": "query",
53762          "name": "fieldSelector",
53763          "type": "string",
53764          "uniqueItems": true
53765        },
53766        {
53767          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
53768          "in": "query",
53769          "name": "labelSelector",
53770          "type": "string",
53771          "uniqueItems": true
53772        },
53773        {
53774          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
53775          "in": "query",
53776          "name": "limit",
53777          "type": "integer",
53778          "uniqueItems": true
53779        },
53780        {
53781          "description": "object name and auth scope, such as for teams and projects",
53782          "in": "path",
53783          "name": "namespace",
53784          "required": true,
53785          "type": "string",
53786          "uniqueItems": true
53787        },
53788        {
53789          "description": "If 'true', then the output is pretty printed.",
53790          "in": "query",
53791          "name": "pretty",
53792          "type": "string",
53793          "uniqueItems": true
53794        },
53795        {
53796          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
53797          "in": "query",
53798          "name": "resourceVersion",
53799          "type": "string",
53800          "uniqueItems": true
53801        },
53802        {
53803          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
53804          "in": "query",
53805          "name": "resourceVersionMatch",
53806          "type": "string",
53807          "uniqueItems": true
53808        },
53809        {
53810          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
53811          "in": "query",
53812          "name": "timeoutSeconds",
53813          "type": "integer",
53814          "uniqueItems": true
53815        },
53816        {
53817          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
53818          "in": "query",
53819          "name": "watch",
53820          "type": "boolean",
53821          "uniqueItems": true
53822        }
53823      ]
53824    },
53825    "/apis/batch/v1/watch/namespaces/{namespace}/jobs/{name}": {
53826      "get": {
53827        "consumes": [
53828          "*/*"
53829        ],
53830        "description": "watch changes to an object of kind Job. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.",
53831        "operationId": "watchBatchV1NamespacedJob",
53832        "produces": [
53833          "application/json",
53834          "application/yaml",
53835          "application/vnd.kubernetes.protobuf",
53836          "application/json;stream=watch",
53837          "application/vnd.kubernetes.protobuf;stream=watch"
53838        ],
53839        "responses": {
53840          "200": {
53841            "description": "OK",
53842            "schema": {
53843              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
53844            }
53845          },
53846          "401": {
53847            "description": "Unauthorized"
53848          }
53849        },
53850        "schemes": [
53851          "https"
53852        ],
53853        "tags": [
53854          "batch_v1"
53855        ],
53856        "x-kubernetes-action": "watch",
53857        "x-kubernetes-group-version-kind": {
53858          "group": "batch",
53859          "kind": "Job",
53860          "version": "v1"
53861        }
53862      },
53863      "parameters": [
53864        {
53865          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
53866          "in": "query",
53867          "name": "allowWatchBookmarks",
53868          "type": "boolean",
53869          "uniqueItems": true
53870        },
53871        {
53872          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
53873          "in": "query",
53874          "name": "continue",
53875          "type": "string",
53876          "uniqueItems": true
53877        },
53878        {
53879          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
53880          "in": "query",
53881          "name": "fieldSelector",
53882          "type": "string",
53883          "uniqueItems": true
53884        },
53885        {
53886          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
53887          "in": "query",
53888          "name": "labelSelector",
53889          "type": "string",
53890          "uniqueItems": true
53891        },
53892        {
53893          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
53894          "in": "query",
53895          "name": "limit",
53896          "type": "integer",
53897          "uniqueItems": true
53898        },
53899        {
53900          "description": "name of the Job",
53901          "in": "path",
53902          "name": "name",
53903          "required": true,
53904          "type": "string",
53905          "uniqueItems": true
53906        },
53907        {
53908          "description": "object name and auth scope, such as for teams and projects",
53909          "in": "path",
53910          "name": "namespace",
53911          "required": true,
53912          "type": "string",
53913          "uniqueItems": true
53914        },
53915        {
53916          "description": "If 'true', then the output is pretty printed.",
53917          "in": "query",
53918          "name": "pretty",
53919          "type": "string",
53920          "uniqueItems": true
53921        },
53922        {
53923          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
53924          "in": "query",
53925          "name": "resourceVersion",
53926          "type": "string",
53927          "uniqueItems": true
53928        },
53929        {
53930          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
53931          "in": "query",
53932          "name": "resourceVersionMatch",
53933          "type": "string",
53934          "uniqueItems": true
53935        },
53936        {
53937          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
53938          "in": "query",
53939          "name": "timeoutSeconds",
53940          "type": "integer",
53941          "uniqueItems": true
53942        },
53943        {
53944          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
53945          "in": "query",
53946          "name": "watch",
53947          "type": "boolean",
53948          "uniqueItems": true
53949        }
53950      ]
53951    },
53952    "/apis/batch/v1beta1/": {
53953      "get": {
53954        "consumes": [
53955          "application/json",
53956          "application/yaml",
53957          "application/vnd.kubernetes.protobuf"
53958        ],
53959        "description": "get available resources",
53960        "operationId": "getBatchV1beta1APIResources",
53961        "produces": [
53962          "application/json",
53963          "application/yaml",
53964          "application/vnd.kubernetes.protobuf"
53965        ],
53966        "responses": {
53967          "200": {
53968            "description": "OK",
53969            "schema": {
53970              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
53971            }
53972          },
53973          "401": {
53974            "description": "Unauthorized"
53975          }
53976        },
53977        "schemes": [
53978          "https"
53979        ],
53980        "tags": [
53981          "batch_v1beta1"
53982        ]
53983      }
53984    },
53985    "/apis/batch/v1beta1/cronjobs": {
53986      "get": {
53987        "consumes": [
53988          "*/*"
53989        ],
53990        "description": "list or watch objects of kind CronJob",
53991        "operationId": "listBatchV1beta1CronJobForAllNamespaces",
53992        "produces": [
53993          "application/json",
53994          "application/yaml",
53995          "application/vnd.kubernetes.protobuf",
53996          "application/json;stream=watch",
53997          "application/vnd.kubernetes.protobuf;stream=watch"
53998        ],
53999        "responses": {
54000          "200": {
54001            "description": "OK",
54002            "schema": {
54003              "$ref": "#/definitions/io.k8s.api.batch.v1beta1.CronJobList"
54004            }
54005          },
54006          "401": {
54007            "description": "Unauthorized"
54008          }
54009        },
54010        "schemes": [
54011          "https"
54012        ],
54013        "tags": [
54014          "batch_v1beta1"
54015        ],
54016        "x-kubernetes-action": "list",
54017        "x-kubernetes-group-version-kind": {
54018          "group": "batch",
54019          "kind": "CronJob",
54020          "version": "v1beta1"
54021        }
54022      },
54023      "parameters": [
54024        {
54025          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
54026          "in": "query",
54027          "name": "allowWatchBookmarks",
54028          "type": "boolean",
54029          "uniqueItems": true
54030        },
54031        {
54032          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
54033          "in": "query",
54034          "name": "continue",
54035          "type": "string",
54036          "uniqueItems": true
54037        },
54038        {
54039          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
54040          "in": "query",
54041          "name": "fieldSelector",
54042          "type": "string",
54043          "uniqueItems": true
54044        },
54045        {
54046          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
54047          "in": "query",
54048          "name": "labelSelector",
54049          "type": "string",
54050          "uniqueItems": true
54051        },
54052        {
54053          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
54054          "in": "query",
54055          "name": "limit",
54056          "type": "integer",
54057          "uniqueItems": true
54058        },
54059        {
54060          "description": "If 'true', then the output is pretty printed.",
54061          "in": "query",
54062          "name": "pretty",
54063          "type": "string",
54064          "uniqueItems": true
54065        },
54066        {
54067          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
54068          "in": "query",
54069          "name": "resourceVersion",
54070          "type": "string",
54071          "uniqueItems": true
54072        },
54073        {
54074          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
54075          "in": "query",
54076          "name": "resourceVersionMatch",
54077          "type": "string",
54078          "uniqueItems": true
54079        },
54080        {
54081          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
54082          "in": "query",
54083          "name": "timeoutSeconds",
54084          "type": "integer",
54085          "uniqueItems": true
54086        },
54087        {
54088          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
54089          "in": "query",
54090          "name": "watch",
54091          "type": "boolean",
54092          "uniqueItems": true
54093        }
54094      ]
54095    },
54096    "/apis/batch/v1beta1/namespaces/{namespace}/cronjobs": {
54097      "delete": {
54098        "consumes": [
54099          "*/*"
54100        ],
54101        "description": "delete collection of CronJob",
54102        "operationId": "deleteBatchV1beta1CollectionNamespacedCronJob",
54103        "parameters": [
54104          {
54105            "in": "body",
54106            "name": "body",
54107            "schema": {
54108              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
54109            }
54110          },
54111          {
54112            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
54113            "in": "query",
54114            "name": "continue",
54115            "type": "string",
54116            "uniqueItems": true
54117          },
54118          {
54119            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
54120            "in": "query",
54121            "name": "dryRun",
54122            "type": "string",
54123            "uniqueItems": true
54124          },
54125          {
54126            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
54127            "in": "query",
54128            "name": "fieldSelector",
54129            "type": "string",
54130            "uniqueItems": true
54131          },
54132          {
54133            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
54134            "in": "query",
54135            "name": "gracePeriodSeconds",
54136            "type": "integer",
54137            "uniqueItems": true
54138          },
54139          {
54140            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
54141            "in": "query",
54142            "name": "labelSelector",
54143            "type": "string",
54144            "uniqueItems": true
54145          },
54146          {
54147            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
54148            "in": "query",
54149            "name": "limit",
54150            "type": "integer",
54151            "uniqueItems": true
54152          },
54153          {
54154            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
54155            "in": "query",
54156            "name": "orphanDependents",
54157            "type": "boolean",
54158            "uniqueItems": true
54159          },
54160          {
54161            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
54162            "in": "query",
54163            "name": "propagationPolicy",
54164            "type": "string",
54165            "uniqueItems": true
54166          },
54167          {
54168            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
54169            "in": "query",
54170            "name": "resourceVersion",
54171            "type": "string",
54172            "uniqueItems": true
54173          },
54174          {
54175            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
54176            "in": "query",
54177            "name": "resourceVersionMatch",
54178            "type": "string",
54179            "uniqueItems": true
54180          },
54181          {
54182            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
54183            "in": "query",
54184            "name": "timeoutSeconds",
54185            "type": "integer",
54186            "uniqueItems": true
54187          }
54188        ],
54189        "produces": [
54190          "application/json",
54191          "application/yaml",
54192          "application/vnd.kubernetes.protobuf"
54193        ],
54194        "responses": {
54195          "200": {
54196            "description": "OK",
54197            "schema": {
54198              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
54199            }
54200          },
54201          "401": {
54202            "description": "Unauthorized"
54203          }
54204        },
54205        "schemes": [
54206          "https"
54207        ],
54208        "tags": [
54209          "batch_v1beta1"
54210        ],
54211        "x-kubernetes-action": "deletecollection",
54212        "x-kubernetes-group-version-kind": {
54213          "group": "batch",
54214          "kind": "CronJob",
54215          "version": "v1beta1"
54216        }
54217      },
54218      "get": {
54219        "consumes": [
54220          "*/*"
54221        ],
54222        "description": "list or watch objects of kind CronJob",
54223        "operationId": "listBatchV1beta1NamespacedCronJob",
54224        "parameters": [
54225          {
54226            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
54227            "in": "query",
54228            "name": "allowWatchBookmarks",
54229            "type": "boolean",
54230            "uniqueItems": true
54231          },
54232          {
54233            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
54234            "in": "query",
54235            "name": "continue",
54236            "type": "string",
54237            "uniqueItems": true
54238          },
54239          {
54240            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
54241            "in": "query",
54242            "name": "fieldSelector",
54243            "type": "string",
54244            "uniqueItems": true
54245          },
54246          {
54247            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
54248            "in": "query",
54249            "name": "labelSelector",
54250            "type": "string",
54251            "uniqueItems": true
54252          },
54253          {
54254            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
54255            "in": "query",
54256            "name": "limit",
54257            "type": "integer",
54258            "uniqueItems": true
54259          },
54260          {
54261            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
54262            "in": "query",
54263            "name": "resourceVersion",
54264            "type": "string",
54265            "uniqueItems": true
54266          },
54267          {
54268            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
54269            "in": "query",
54270            "name": "resourceVersionMatch",
54271            "type": "string",
54272            "uniqueItems": true
54273          },
54274          {
54275            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
54276            "in": "query",
54277            "name": "timeoutSeconds",
54278            "type": "integer",
54279            "uniqueItems": true
54280          },
54281          {
54282            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
54283            "in": "query",
54284            "name": "watch",
54285            "type": "boolean",
54286            "uniqueItems": true
54287          }
54288        ],
54289        "produces": [
54290          "application/json",
54291          "application/yaml",
54292          "application/vnd.kubernetes.protobuf",
54293          "application/json;stream=watch",
54294          "application/vnd.kubernetes.protobuf;stream=watch"
54295        ],
54296        "responses": {
54297          "200": {
54298            "description": "OK",
54299            "schema": {
54300              "$ref": "#/definitions/io.k8s.api.batch.v1beta1.CronJobList"
54301            }
54302          },
54303          "401": {
54304            "description": "Unauthorized"
54305          }
54306        },
54307        "schemes": [
54308          "https"
54309        ],
54310        "tags": [
54311          "batch_v1beta1"
54312        ],
54313        "x-kubernetes-action": "list",
54314        "x-kubernetes-group-version-kind": {
54315          "group": "batch",
54316          "kind": "CronJob",
54317          "version": "v1beta1"
54318        }
54319      },
54320      "parameters": [
54321        {
54322          "description": "object name and auth scope, such as for teams and projects",
54323          "in": "path",
54324          "name": "namespace",
54325          "required": true,
54326          "type": "string",
54327          "uniqueItems": true
54328        },
54329        {
54330          "description": "If 'true', then the output is pretty printed.",
54331          "in": "query",
54332          "name": "pretty",
54333          "type": "string",
54334          "uniqueItems": true
54335        }
54336      ],
54337      "post": {
54338        "consumes": [
54339          "*/*"
54340        ],
54341        "description": "create a CronJob",
54342        "operationId": "createBatchV1beta1NamespacedCronJob",
54343        "parameters": [
54344          {
54345            "in": "body",
54346            "name": "body",
54347            "required": true,
54348            "schema": {
54349              "$ref": "#/definitions/io.k8s.api.batch.v1beta1.CronJob"
54350            }
54351          },
54352          {
54353            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
54354            "in": "query",
54355            "name": "dryRun",
54356            "type": "string",
54357            "uniqueItems": true
54358          },
54359          {
54360            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
54361            "in": "query",
54362            "name": "fieldManager",
54363            "type": "string",
54364            "uniqueItems": true
54365          }
54366        ],
54367        "produces": [
54368          "application/json",
54369          "application/yaml",
54370          "application/vnd.kubernetes.protobuf"
54371        ],
54372        "responses": {
54373          "200": {
54374            "description": "OK",
54375            "schema": {
54376              "$ref": "#/definitions/io.k8s.api.batch.v1beta1.CronJob"
54377            }
54378          },
54379          "201": {
54380            "description": "Created",
54381            "schema": {
54382              "$ref": "#/definitions/io.k8s.api.batch.v1beta1.CronJob"
54383            }
54384          },
54385          "202": {
54386            "description": "Accepted",
54387            "schema": {
54388              "$ref": "#/definitions/io.k8s.api.batch.v1beta1.CronJob"
54389            }
54390          },
54391          "401": {
54392            "description": "Unauthorized"
54393          }
54394        },
54395        "schemes": [
54396          "https"
54397        ],
54398        "tags": [
54399          "batch_v1beta1"
54400        ],
54401        "x-kubernetes-action": "post",
54402        "x-kubernetes-group-version-kind": {
54403          "group": "batch",
54404          "kind": "CronJob",
54405          "version": "v1beta1"
54406        }
54407      }
54408    },
54409    "/apis/batch/v1beta1/namespaces/{namespace}/cronjobs/{name}": {
54410      "delete": {
54411        "consumes": [
54412          "*/*"
54413        ],
54414        "description": "delete a CronJob",
54415        "operationId": "deleteBatchV1beta1NamespacedCronJob",
54416        "parameters": [
54417          {
54418            "in": "body",
54419            "name": "body",
54420            "schema": {
54421              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
54422            }
54423          },
54424          {
54425            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
54426            "in": "query",
54427            "name": "dryRun",
54428            "type": "string",
54429            "uniqueItems": true
54430          },
54431          {
54432            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
54433            "in": "query",
54434            "name": "gracePeriodSeconds",
54435            "type": "integer",
54436            "uniqueItems": true
54437          },
54438          {
54439            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
54440            "in": "query",
54441            "name": "orphanDependents",
54442            "type": "boolean",
54443            "uniqueItems": true
54444          },
54445          {
54446            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
54447            "in": "query",
54448            "name": "propagationPolicy",
54449            "type": "string",
54450            "uniqueItems": true
54451          }
54452        ],
54453        "produces": [
54454          "application/json",
54455          "application/yaml",
54456          "application/vnd.kubernetes.protobuf"
54457        ],
54458        "responses": {
54459          "200": {
54460            "description": "OK",
54461            "schema": {
54462              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
54463            }
54464          },
54465          "202": {
54466            "description": "Accepted",
54467            "schema": {
54468              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
54469            }
54470          },
54471          "401": {
54472            "description": "Unauthorized"
54473          }
54474        },
54475        "schemes": [
54476          "https"
54477        ],
54478        "tags": [
54479          "batch_v1beta1"
54480        ],
54481        "x-kubernetes-action": "delete",
54482        "x-kubernetes-group-version-kind": {
54483          "group": "batch",
54484          "kind": "CronJob",
54485          "version": "v1beta1"
54486        }
54487      },
54488      "get": {
54489        "consumes": [
54490          "*/*"
54491        ],
54492        "description": "read the specified CronJob",
54493        "operationId": "readBatchV1beta1NamespacedCronJob",
54494        "produces": [
54495          "application/json",
54496          "application/yaml",
54497          "application/vnd.kubernetes.protobuf"
54498        ],
54499        "responses": {
54500          "200": {
54501            "description": "OK",
54502            "schema": {
54503              "$ref": "#/definitions/io.k8s.api.batch.v1beta1.CronJob"
54504            }
54505          },
54506          "401": {
54507            "description": "Unauthorized"
54508          }
54509        },
54510        "schemes": [
54511          "https"
54512        ],
54513        "tags": [
54514          "batch_v1beta1"
54515        ],
54516        "x-kubernetes-action": "get",
54517        "x-kubernetes-group-version-kind": {
54518          "group": "batch",
54519          "kind": "CronJob",
54520          "version": "v1beta1"
54521        }
54522      },
54523      "parameters": [
54524        {
54525          "description": "name of the CronJob",
54526          "in": "path",
54527          "name": "name",
54528          "required": true,
54529          "type": "string",
54530          "uniqueItems": true
54531        },
54532        {
54533          "description": "object name and auth scope, such as for teams and projects",
54534          "in": "path",
54535          "name": "namespace",
54536          "required": true,
54537          "type": "string",
54538          "uniqueItems": true
54539        },
54540        {
54541          "description": "If 'true', then the output is pretty printed.",
54542          "in": "query",
54543          "name": "pretty",
54544          "type": "string",
54545          "uniqueItems": true
54546        }
54547      ],
54548      "patch": {
54549        "consumes": [
54550          "application/json-patch+json",
54551          "application/merge-patch+json",
54552          "application/strategic-merge-patch+json",
54553          "application/apply-patch+yaml"
54554        ],
54555        "description": "partially update the specified CronJob",
54556        "operationId": "patchBatchV1beta1NamespacedCronJob",
54557        "parameters": [
54558          {
54559            "in": "body",
54560            "name": "body",
54561            "required": true,
54562            "schema": {
54563              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
54564            }
54565          },
54566          {
54567            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
54568            "in": "query",
54569            "name": "dryRun",
54570            "type": "string",
54571            "uniqueItems": true
54572          },
54573          {
54574            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
54575            "in": "query",
54576            "name": "fieldManager",
54577            "type": "string",
54578            "uniqueItems": true
54579          },
54580          {
54581            "description": "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.",
54582            "in": "query",
54583            "name": "force",
54584            "type": "boolean",
54585            "uniqueItems": true
54586          }
54587        ],
54588        "produces": [
54589          "application/json",
54590          "application/yaml",
54591          "application/vnd.kubernetes.protobuf"
54592        ],
54593        "responses": {
54594          "200": {
54595            "description": "OK",
54596            "schema": {
54597              "$ref": "#/definitions/io.k8s.api.batch.v1beta1.CronJob"
54598            }
54599          },
54600          "201": {
54601            "description": "Created",
54602            "schema": {
54603              "$ref": "#/definitions/io.k8s.api.batch.v1beta1.CronJob"
54604            }
54605          },
54606          "401": {
54607            "description": "Unauthorized"
54608          }
54609        },
54610        "schemes": [
54611          "https"
54612        ],
54613        "tags": [
54614          "batch_v1beta1"
54615        ],
54616        "x-kubernetes-action": "patch",
54617        "x-kubernetes-group-version-kind": {
54618          "group": "batch",
54619          "kind": "CronJob",
54620          "version": "v1beta1"
54621        }
54622      },
54623      "put": {
54624        "consumes": [
54625          "*/*"
54626        ],
54627        "description": "replace the specified CronJob",
54628        "operationId": "replaceBatchV1beta1NamespacedCronJob",
54629        "parameters": [
54630          {
54631            "in": "body",
54632            "name": "body",
54633            "required": true,
54634            "schema": {
54635              "$ref": "#/definitions/io.k8s.api.batch.v1beta1.CronJob"
54636            }
54637          },
54638          {
54639            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
54640            "in": "query",
54641            "name": "dryRun",
54642            "type": "string",
54643            "uniqueItems": true
54644          },
54645          {
54646            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
54647            "in": "query",
54648            "name": "fieldManager",
54649            "type": "string",
54650            "uniqueItems": true
54651          }
54652        ],
54653        "produces": [
54654          "application/json",
54655          "application/yaml",
54656          "application/vnd.kubernetes.protobuf"
54657        ],
54658        "responses": {
54659          "200": {
54660            "description": "OK",
54661            "schema": {
54662              "$ref": "#/definitions/io.k8s.api.batch.v1beta1.CronJob"
54663            }
54664          },
54665          "201": {
54666            "description": "Created",
54667            "schema": {
54668              "$ref": "#/definitions/io.k8s.api.batch.v1beta1.CronJob"
54669            }
54670          },
54671          "401": {
54672            "description": "Unauthorized"
54673          }
54674        },
54675        "schemes": [
54676          "https"
54677        ],
54678        "tags": [
54679          "batch_v1beta1"
54680        ],
54681        "x-kubernetes-action": "put",
54682        "x-kubernetes-group-version-kind": {
54683          "group": "batch",
54684          "kind": "CronJob",
54685          "version": "v1beta1"
54686        }
54687      }
54688    },
54689    "/apis/batch/v1beta1/namespaces/{namespace}/cronjobs/{name}/status": {
54690      "get": {
54691        "consumes": [
54692          "*/*"
54693        ],
54694        "description": "read status of the specified CronJob",
54695        "operationId": "readBatchV1beta1NamespacedCronJobStatus",
54696        "produces": [
54697          "application/json",
54698          "application/yaml",
54699          "application/vnd.kubernetes.protobuf"
54700        ],
54701        "responses": {
54702          "200": {
54703            "description": "OK",
54704            "schema": {
54705              "$ref": "#/definitions/io.k8s.api.batch.v1beta1.CronJob"
54706            }
54707          },
54708          "401": {
54709            "description": "Unauthorized"
54710          }
54711        },
54712        "schemes": [
54713          "https"
54714        ],
54715        "tags": [
54716          "batch_v1beta1"
54717        ],
54718        "x-kubernetes-action": "get",
54719        "x-kubernetes-group-version-kind": {
54720          "group": "batch",
54721          "kind": "CronJob",
54722          "version": "v1beta1"
54723        }
54724      },
54725      "parameters": [
54726        {
54727          "description": "name of the CronJob",
54728          "in": "path",
54729          "name": "name",
54730          "required": true,
54731          "type": "string",
54732          "uniqueItems": true
54733        },
54734        {
54735          "description": "object name and auth scope, such as for teams and projects",
54736          "in": "path",
54737          "name": "namespace",
54738          "required": true,
54739          "type": "string",
54740          "uniqueItems": true
54741        },
54742        {
54743          "description": "If 'true', then the output is pretty printed.",
54744          "in": "query",
54745          "name": "pretty",
54746          "type": "string",
54747          "uniqueItems": true
54748        }
54749      ],
54750      "patch": {
54751        "consumes": [
54752          "application/json-patch+json",
54753          "application/merge-patch+json",
54754          "application/strategic-merge-patch+json",
54755          "application/apply-patch+yaml"
54756        ],
54757        "description": "partially update status of the specified CronJob",
54758        "operationId": "patchBatchV1beta1NamespacedCronJobStatus",
54759        "parameters": [
54760          {
54761            "in": "body",
54762            "name": "body",
54763            "required": true,
54764            "schema": {
54765              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
54766            }
54767          },
54768          {
54769            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
54770            "in": "query",
54771            "name": "dryRun",
54772            "type": "string",
54773            "uniqueItems": true
54774          },
54775          {
54776            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
54777            "in": "query",
54778            "name": "fieldManager",
54779            "type": "string",
54780            "uniqueItems": true
54781          },
54782          {
54783            "description": "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.",
54784            "in": "query",
54785            "name": "force",
54786            "type": "boolean",
54787            "uniqueItems": true
54788          }
54789        ],
54790        "produces": [
54791          "application/json",
54792          "application/yaml",
54793          "application/vnd.kubernetes.protobuf"
54794        ],
54795        "responses": {
54796          "200": {
54797            "description": "OK",
54798            "schema": {
54799              "$ref": "#/definitions/io.k8s.api.batch.v1beta1.CronJob"
54800            }
54801          },
54802          "201": {
54803            "description": "Created",
54804            "schema": {
54805              "$ref": "#/definitions/io.k8s.api.batch.v1beta1.CronJob"
54806            }
54807          },
54808          "401": {
54809            "description": "Unauthorized"
54810          }
54811        },
54812        "schemes": [
54813          "https"
54814        ],
54815        "tags": [
54816          "batch_v1beta1"
54817        ],
54818        "x-kubernetes-action": "patch",
54819        "x-kubernetes-group-version-kind": {
54820          "group": "batch",
54821          "kind": "CronJob",
54822          "version": "v1beta1"
54823        }
54824      },
54825      "put": {
54826        "consumes": [
54827          "*/*"
54828        ],
54829        "description": "replace status of the specified CronJob",
54830        "operationId": "replaceBatchV1beta1NamespacedCronJobStatus",
54831        "parameters": [
54832          {
54833            "in": "body",
54834            "name": "body",
54835            "required": true,
54836            "schema": {
54837              "$ref": "#/definitions/io.k8s.api.batch.v1beta1.CronJob"
54838            }
54839          },
54840          {
54841            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
54842            "in": "query",
54843            "name": "dryRun",
54844            "type": "string",
54845            "uniqueItems": true
54846          },
54847          {
54848            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
54849            "in": "query",
54850            "name": "fieldManager",
54851            "type": "string",
54852            "uniqueItems": true
54853          }
54854        ],
54855        "produces": [
54856          "application/json",
54857          "application/yaml",
54858          "application/vnd.kubernetes.protobuf"
54859        ],
54860        "responses": {
54861          "200": {
54862            "description": "OK",
54863            "schema": {
54864              "$ref": "#/definitions/io.k8s.api.batch.v1beta1.CronJob"
54865            }
54866          },
54867          "201": {
54868            "description": "Created",
54869            "schema": {
54870              "$ref": "#/definitions/io.k8s.api.batch.v1beta1.CronJob"
54871            }
54872          },
54873          "401": {
54874            "description": "Unauthorized"
54875          }
54876        },
54877        "schemes": [
54878          "https"
54879        ],
54880        "tags": [
54881          "batch_v1beta1"
54882        ],
54883        "x-kubernetes-action": "put",
54884        "x-kubernetes-group-version-kind": {
54885          "group": "batch",
54886          "kind": "CronJob",
54887          "version": "v1beta1"
54888        }
54889      }
54890    },
54891    "/apis/batch/v1beta1/watch/cronjobs": {
54892      "get": {
54893        "consumes": [
54894          "*/*"
54895        ],
54896        "description": "watch individual changes to a list of CronJob. deprecated: use the 'watch' parameter with a list operation instead.",
54897        "operationId": "watchBatchV1beta1CronJobListForAllNamespaces",
54898        "produces": [
54899          "application/json",
54900          "application/yaml",
54901          "application/vnd.kubernetes.protobuf",
54902          "application/json;stream=watch",
54903          "application/vnd.kubernetes.protobuf;stream=watch"
54904        ],
54905        "responses": {
54906          "200": {
54907            "description": "OK",
54908            "schema": {
54909              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
54910            }
54911          },
54912          "401": {
54913            "description": "Unauthorized"
54914          }
54915        },
54916        "schemes": [
54917          "https"
54918        ],
54919        "tags": [
54920          "batch_v1beta1"
54921        ],
54922        "x-kubernetes-action": "watchlist",
54923        "x-kubernetes-group-version-kind": {
54924          "group": "batch",
54925          "kind": "CronJob",
54926          "version": "v1beta1"
54927        }
54928      },
54929      "parameters": [
54930        {
54931          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
54932          "in": "query",
54933          "name": "allowWatchBookmarks",
54934          "type": "boolean",
54935          "uniqueItems": true
54936        },
54937        {
54938          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
54939          "in": "query",
54940          "name": "continue",
54941          "type": "string",
54942          "uniqueItems": true
54943        },
54944        {
54945          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
54946          "in": "query",
54947          "name": "fieldSelector",
54948          "type": "string",
54949          "uniqueItems": true
54950        },
54951        {
54952          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
54953          "in": "query",
54954          "name": "labelSelector",
54955          "type": "string",
54956          "uniqueItems": true
54957        },
54958        {
54959          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
54960          "in": "query",
54961          "name": "limit",
54962          "type": "integer",
54963          "uniqueItems": true
54964        },
54965        {
54966          "description": "If 'true', then the output is pretty printed.",
54967          "in": "query",
54968          "name": "pretty",
54969          "type": "string",
54970          "uniqueItems": true
54971        },
54972        {
54973          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
54974          "in": "query",
54975          "name": "resourceVersion",
54976          "type": "string",
54977          "uniqueItems": true
54978        },
54979        {
54980          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
54981          "in": "query",
54982          "name": "resourceVersionMatch",
54983          "type": "string",
54984          "uniqueItems": true
54985        },
54986        {
54987          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
54988          "in": "query",
54989          "name": "timeoutSeconds",
54990          "type": "integer",
54991          "uniqueItems": true
54992        },
54993        {
54994          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
54995          "in": "query",
54996          "name": "watch",
54997          "type": "boolean",
54998          "uniqueItems": true
54999        }
55000      ]
55001    },
55002    "/apis/batch/v1beta1/watch/namespaces/{namespace}/cronjobs": {
55003      "get": {
55004        "consumes": [
55005          "*/*"
55006        ],
55007        "description": "watch individual changes to a list of CronJob. deprecated: use the 'watch' parameter with a list operation instead.",
55008        "operationId": "watchBatchV1beta1NamespacedCronJobList",
55009        "produces": [
55010          "application/json",
55011          "application/yaml",
55012          "application/vnd.kubernetes.protobuf",
55013          "application/json;stream=watch",
55014          "application/vnd.kubernetes.protobuf;stream=watch"
55015        ],
55016        "responses": {
55017          "200": {
55018            "description": "OK",
55019            "schema": {
55020              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
55021            }
55022          },
55023          "401": {
55024            "description": "Unauthorized"
55025          }
55026        },
55027        "schemes": [
55028          "https"
55029        ],
55030        "tags": [
55031          "batch_v1beta1"
55032        ],
55033        "x-kubernetes-action": "watchlist",
55034        "x-kubernetes-group-version-kind": {
55035          "group": "batch",
55036          "kind": "CronJob",
55037          "version": "v1beta1"
55038        }
55039      },
55040      "parameters": [
55041        {
55042          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
55043          "in": "query",
55044          "name": "allowWatchBookmarks",
55045          "type": "boolean",
55046          "uniqueItems": true
55047        },
55048        {
55049          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
55050          "in": "query",
55051          "name": "continue",
55052          "type": "string",
55053          "uniqueItems": true
55054        },
55055        {
55056          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
55057          "in": "query",
55058          "name": "fieldSelector",
55059          "type": "string",
55060          "uniqueItems": true
55061        },
55062        {
55063          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
55064          "in": "query",
55065          "name": "labelSelector",
55066          "type": "string",
55067          "uniqueItems": true
55068        },
55069        {
55070          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
55071          "in": "query",
55072          "name": "limit",
55073          "type": "integer",
55074          "uniqueItems": true
55075        },
55076        {
55077          "description": "object name and auth scope, such as for teams and projects",
55078          "in": "path",
55079          "name": "namespace",
55080          "required": true,
55081          "type": "string",
55082          "uniqueItems": true
55083        },
55084        {
55085          "description": "If 'true', then the output is pretty printed.",
55086          "in": "query",
55087          "name": "pretty",
55088          "type": "string",
55089          "uniqueItems": true
55090        },
55091        {
55092          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
55093          "in": "query",
55094          "name": "resourceVersion",
55095          "type": "string",
55096          "uniqueItems": true
55097        },
55098        {
55099          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
55100          "in": "query",
55101          "name": "resourceVersionMatch",
55102          "type": "string",
55103          "uniqueItems": true
55104        },
55105        {
55106          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
55107          "in": "query",
55108          "name": "timeoutSeconds",
55109          "type": "integer",
55110          "uniqueItems": true
55111        },
55112        {
55113          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
55114          "in": "query",
55115          "name": "watch",
55116          "type": "boolean",
55117          "uniqueItems": true
55118        }
55119      ]
55120    },
55121    "/apis/batch/v1beta1/watch/namespaces/{namespace}/cronjobs/{name}": {
55122      "get": {
55123        "consumes": [
55124          "*/*"
55125        ],
55126        "description": "watch changes to an object of kind CronJob. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.",
55127        "operationId": "watchBatchV1beta1NamespacedCronJob",
55128        "produces": [
55129          "application/json",
55130          "application/yaml",
55131          "application/vnd.kubernetes.protobuf",
55132          "application/json;stream=watch",
55133          "application/vnd.kubernetes.protobuf;stream=watch"
55134        ],
55135        "responses": {
55136          "200": {
55137            "description": "OK",
55138            "schema": {
55139              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
55140            }
55141          },
55142          "401": {
55143            "description": "Unauthorized"
55144          }
55145        },
55146        "schemes": [
55147          "https"
55148        ],
55149        "tags": [
55150          "batch_v1beta1"
55151        ],
55152        "x-kubernetes-action": "watch",
55153        "x-kubernetes-group-version-kind": {
55154          "group": "batch",
55155          "kind": "CronJob",
55156          "version": "v1beta1"
55157        }
55158      },
55159      "parameters": [
55160        {
55161          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
55162          "in": "query",
55163          "name": "allowWatchBookmarks",
55164          "type": "boolean",
55165          "uniqueItems": true
55166        },
55167        {
55168          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
55169          "in": "query",
55170          "name": "continue",
55171          "type": "string",
55172          "uniqueItems": true
55173        },
55174        {
55175          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
55176          "in": "query",
55177          "name": "fieldSelector",
55178          "type": "string",
55179          "uniqueItems": true
55180        },
55181        {
55182          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
55183          "in": "query",
55184          "name": "labelSelector",
55185          "type": "string",
55186          "uniqueItems": true
55187        },
55188        {
55189          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
55190          "in": "query",
55191          "name": "limit",
55192          "type": "integer",
55193          "uniqueItems": true
55194        },
55195        {
55196          "description": "name of the CronJob",
55197          "in": "path",
55198          "name": "name",
55199          "required": true,
55200          "type": "string",
55201          "uniqueItems": true
55202        },
55203        {
55204          "description": "object name and auth scope, such as for teams and projects",
55205          "in": "path",
55206          "name": "namespace",
55207          "required": true,
55208          "type": "string",
55209          "uniqueItems": true
55210        },
55211        {
55212          "description": "If 'true', then the output is pretty printed.",
55213          "in": "query",
55214          "name": "pretty",
55215          "type": "string",
55216          "uniqueItems": true
55217        },
55218        {
55219          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
55220          "in": "query",
55221          "name": "resourceVersion",
55222          "type": "string",
55223          "uniqueItems": true
55224        },
55225        {
55226          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
55227          "in": "query",
55228          "name": "resourceVersionMatch",
55229          "type": "string",
55230          "uniqueItems": true
55231        },
55232        {
55233          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
55234          "in": "query",
55235          "name": "timeoutSeconds",
55236          "type": "integer",
55237          "uniqueItems": true
55238        },
55239        {
55240          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
55241          "in": "query",
55242          "name": "watch",
55243          "type": "boolean",
55244          "uniqueItems": true
55245        }
55246      ]
55247    },
55248    "/apis/certificates.k8s.io/": {
55249      "get": {
55250        "consumes": [
55251          "application/json",
55252          "application/yaml",
55253          "application/vnd.kubernetes.protobuf"
55254        ],
55255        "description": "get information of a group",
55256        "operationId": "getCertificatesAPIGroup",
55257        "produces": [
55258          "application/json",
55259          "application/yaml",
55260          "application/vnd.kubernetes.protobuf"
55261        ],
55262        "responses": {
55263          "200": {
55264            "description": "OK",
55265            "schema": {
55266              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup"
55267            }
55268          },
55269          "401": {
55270            "description": "Unauthorized"
55271          }
55272        },
55273        "schemes": [
55274          "https"
55275        ],
55276        "tags": [
55277          "certificates"
55278        ]
55279      }
55280    },
55281    "/apis/certificates.k8s.io/v1/": {
55282      "get": {
55283        "consumes": [
55284          "application/json",
55285          "application/yaml",
55286          "application/vnd.kubernetes.protobuf"
55287        ],
55288        "description": "get available resources",
55289        "operationId": "getCertificatesV1APIResources",
55290        "produces": [
55291          "application/json",
55292          "application/yaml",
55293          "application/vnd.kubernetes.protobuf"
55294        ],
55295        "responses": {
55296          "200": {
55297            "description": "OK",
55298            "schema": {
55299              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
55300            }
55301          },
55302          "401": {
55303            "description": "Unauthorized"
55304          }
55305        },
55306        "schemes": [
55307          "https"
55308        ],
55309        "tags": [
55310          "certificates_v1"
55311        ]
55312      }
55313    },
55314    "/apis/certificates.k8s.io/v1/certificatesigningrequests": {
55315      "delete": {
55316        "consumes": [
55317          "*/*"
55318        ],
55319        "description": "delete collection of CertificateSigningRequest",
55320        "operationId": "deleteCertificatesV1CollectionCertificateSigningRequest",
55321        "parameters": [
55322          {
55323            "in": "body",
55324            "name": "body",
55325            "schema": {
55326              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
55327            }
55328          },
55329          {
55330            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
55331            "in": "query",
55332            "name": "continue",
55333            "type": "string",
55334            "uniqueItems": true
55335          },
55336          {
55337            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
55338            "in": "query",
55339            "name": "dryRun",
55340            "type": "string",
55341            "uniqueItems": true
55342          },
55343          {
55344            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
55345            "in": "query",
55346            "name": "fieldSelector",
55347            "type": "string",
55348            "uniqueItems": true
55349          },
55350          {
55351            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
55352            "in": "query",
55353            "name": "gracePeriodSeconds",
55354            "type": "integer",
55355            "uniqueItems": true
55356          },
55357          {
55358            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
55359            "in": "query",
55360            "name": "labelSelector",
55361            "type": "string",
55362            "uniqueItems": true
55363          },
55364          {
55365            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
55366            "in": "query",
55367            "name": "limit",
55368            "type": "integer",
55369            "uniqueItems": true
55370          },
55371          {
55372            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
55373            "in": "query",
55374            "name": "orphanDependents",
55375            "type": "boolean",
55376            "uniqueItems": true
55377          },
55378          {
55379            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
55380            "in": "query",
55381            "name": "propagationPolicy",
55382            "type": "string",
55383            "uniqueItems": true
55384          },
55385          {
55386            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
55387            "in": "query",
55388            "name": "resourceVersion",
55389            "type": "string",
55390            "uniqueItems": true
55391          },
55392          {
55393            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
55394            "in": "query",
55395            "name": "resourceVersionMatch",
55396            "type": "string",
55397            "uniqueItems": true
55398          },
55399          {
55400            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
55401            "in": "query",
55402            "name": "timeoutSeconds",
55403            "type": "integer",
55404            "uniqueItems": true
55405          }
55406        ],
55407        "produces": [
55408          "application/json",
55409          "application/yaml",
55410          "application/vnd.kubernetes.protobuf"
55411        ],
55412        "responses": {
55413          "200": {
55414            "description": "OK",
55415            "schema": {
55416              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
55417            }
55418          },
55419          "401": {
55420            "description": "Unauthorized"
55421          }
55422        },
55423        "schemes": [
55424          "https"
55425        ],
55426        "tags": [
55427          "certificates_v1"
55428        ],
55429        "x-kubernetes-action": "deletecollection",
55430        "x-kubernetes-group-version-kind": {
55431          "group": "certificates.k8s.io",
55432          "kind": "CertificateSigningRequest",
55433          "version": "v1"
55434        }
55435      },
55436      "get": {
55437        "consumes": [
55438          "*/*"
55439        ],
55440        "description": "list or watch objects of kind CertificateSigningRequest",
55441        "operationId": "listCertificatesV1CertificateSigningRequest",
55442        "parameters": [
55443          {
55444            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
55445            "in": "query",
55446            "name": "allowWatchBookmarks",
55447            "type": "boolean",
55448            "uniqueItems": true
55449          },
55450          {
55451            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
55452            "in": "query",
55453            "name": "continue",
55454            "type": "string",
55455            "uniqueItems": true
55456          },
55457          {
55458            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
55459            "in": "query",
55460            "name": "fieldSelector",
55461            "type": "string",
55462            "uniqueItems": true
55463          },
55464          {
55465            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
55466            "in": "query",
55467            "name": "labelSelector",
55468            "type": "string",
55469            "uniqueItems": true
55470          },
55471          {
55472            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
55473            "in": "query",
55474            "name": "limit",
55475            "type": "integer",
55476            "uniqueItems": true
55477          },
55478          {
55479            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
55480            "in": "query",
55481            "name": "resourceVersion",
55482            "type": "string",
55483            "uniqueItems": true
55484          },
55485          {
55486            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
55487            "in": "query",
55488            "name": "resourceVersionMatch",
55489            "type": "string",
55490            "uniqueItems": true
55491          },
55492          {
55493            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
55494            "in": "query",
55495            "name": "timeoutSeconds",
55496            "type": "integer",
55497            "uniqueItems": true
55498          },
55499          {
55500            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
55501            "in": "query",
55502            "name": "watch",
55503            "type": "boolean",
55504            "uniqueItems": true
55505          }
55506        ],
55507        "produces": [
55508          "application/json",
55509          "application/yaml",
55510          "application/vnd.kubernetes.protobuf",
55511          "application/json;stream=watch",
55512          "application/vnd.kubernetes.protobuf;stream=watch"
55513        ],
55514        "responses": {
55515          "200": {
55516            "description": "OK",
55517            "schema": {
55518              "$ref": "#/definitions/io.k8s.api.certificates.v1.CertificateSigningRequestList"
55519            }
55520          },
55521          "401": {
55522            "description": "Unauthorized"
55523          }
55524        },
55525        "schemes": [
55526          "https"
55527        ],
55528        "tags": [
55529          "certificates_v1"
55530        ],
55531        "x-kubernetes-action": "list",
55532        "x-kubernetes-group-version-kind": {
55533          "group": "certificates.k8s.io",
55534          "kind": "CertificateSigningRequest",
55535          "version": "v1"
55536        }
55537      },
55538      "parameters": [
55539        {
55540          "description": "If 'true', then the output is pretty printed.",
55541          "in": "query",
55542          "name": "pretty",
55543          "type": "string",
55544          "uniqueItems": true
55545        }
55546      ],
55547      "post": {
55548        "consumes": [
55549          "*/*"
55550        ],
55551        "description": "create a CertificateSigningRequest",
55552        "operationId": "createCertificatesV1CertificateSigningRequest",
55553        "parameters": [
55554          {
55555            "in": "body",
55556            "name": "body",
55557            "required": true,
55558            "schema": {
55559              "$ref": "#/definitions/io.k8s.api.certificates.v1.CertificateSigningRequest"
55560            }
55561          },
55562          {
55563            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
55564            "in": "query",
55565            "name": "dryRun",
55566            "type": "string",
55567            "uniqueItems": true
55568          },
55569          {
55570            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
55571            "in": "query",
55572            "name": "fieldManager",
55573            "type": "string",
55574            "uniqueItems": true
55575          }
55576        ],
55577        "produces": [
55578          "application/json",
55579          "application/yaml",
55580          "application/vnd.kubernetes.protobuf"
55581        ],
55582        "responses": {
55583          "200": {
55584            "description": "OK",
55585            "schema": {
55586              "$ref": "#/definitions/io.k8s.api.certificates.v1.CertificateSigningRequest"
55587            }
55588          },
55589          "201": {
55590            "description": "Created",
55591            "schema": {
55592              "$ref": "#/definitions/io.k8s.api.certificates.v1.CertificateSigningRequest"
55593            }
55594          },
55595          "202": {
55596            "description": "Accepted",
55597            "schema": {
55598              "$ref": "#/definitions/io.k8s.api.certificates.v1.CertificateSigningRequest"
55599            }
55600          },
55601          "401": {
55602            "description": "Unauthorized"
55603          }
55604        },
55605        "schemes": [
55606          "https"
55607        ],
55608        "tags": [
55609          "certificates_v1"
55610        ],
55611        "x-kubernetes-action": "post",
55612        "x-kubernetes-group-version-kind": {
55613          "group": "certificates.k8s.io",
55614          "kind": "CertificateSigningRequest",
55615          "version": "v1"
55616        }
55617      }
55618    },
55619    "/apis/certificates.k8s.io/v1/certificatesigningrequests/{name}": {
55620      "delete": {
55621        "consumes": [
55622          "*/*"
55623        ],
55624        "description": "delete a CertificateSigningRequest",
55625        "operationId": "deleteCertificatesV1CertificateSigningRequest",
55626        "parameters": [
55627          {
55628            "in": "body",
55629            "name": "body",
55630            "schema": {
55631              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
55632            }
55633          },
55634          {
55635            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
55636            "in": "query",
55637            "name": "dryRun",
55638            "type": "string",
55639            "uniqueItems": true
55640          },
55641          {
55642            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
55643            "in": "query",
55644            "name": "gracePeriodSeconds",
55645            "type": "integer",
55646            "uniqueItems": true
55647          },
55648          {
55649            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
55650            "in": "query",
55651            "name": "orphanDependents",
55652            "type": "boolean",
55653            "uniqueItems": true
55654          },
55655          {
55656            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
55657            "in": "query",
55658            "name": "propagationPolicy",
55659            "type": "string",
55660            "uniqueItems": true
55661          }
55662        ],
55663        "produces": [
55664          "application/json",
55665          "application/yaml",
55666          "application/vnd.kubernetes.protobuf"
55667        ],
55668        "responses": {
55669          "200": {
55670            "description": "OK",
55671            "schema": {
55672              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
55673            }
55674          },
55675          "202": {
55676            "description": "Accepted",
55677            "schema": {
55678              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
55679            }
55680          },
55681          "401": {
55682            "description": "Unauthorized"
55683          }
55684        },
55685        "schemes": [
55686          "https"
55687        ],
55688        "tags": [
55689          "certificates_v1"
55690        ],
55691        "x-kubernetes-action": "delete",
55692        "x-kubernetes-group-version-kind": {
55693          "group": "certificates.k8s.io",
55694          "kind": "CertificateSigningRequest",
55695          "version": "v1"
55696        }
55697      },
55698      "get": {
55699        "consumes": [
55700          "*/*"
55701        ],
55702        "description": "read the specified CertificateSigningRequest",
55703        "operationId": "readCertificatesV1CertificateSigningRequest",
55704        "produces": [
55705          "application/json",
55706          "application/yaml",
55707          "application/vnd.kubernetes.protobuf"
55708        ],
55709        "responses": {
55710          "200": {
55711            "description": "OK",
55712            "schema": {
55713              "$ref": "#/definitions/io.k8s.api.certificates.v1.CertificateSigningRequest"
55714            }
55715          },
55716          "401": {
55717            "description": "Unauthorized"
55718          }
55719        },
55720        "schemes": [
55721          "https"
55722        ],
55723        "tags": [
55724          "certificates_v1"
55725        ],
55726        "x-kubernetes-action": "get",
55727        "x-kubernetes-group-version-kind": {
55728          "group": "certificates.k8s.io",
55729          "kind": "CertificateSigningRequest",
55730          "version": "v1"
55731        }
55732      },
55733      "parameters": [
55734        {
55735          "description": "name of the CertificateSigningRequest",
55736          "in": "path",
55737          "name": "name",
55738          "required": true,
55739          "type": "string",
55740          "uniqueItems": true
55741        },
55742        {
55743          "description": "If 'true', then the output is pretty printed.",
55744          "in": "query",
55745          "name": "pretty",
55746          "type": "string",
55747          "uniqueItems": true
55748        }
55749      ],
55750      "patch": {
55751        "consumes": [
55752          "application/json-patch+json",
55753          "application/merge-patch+json",
55754          "application/strategic-merge-patch+json",
55755          "application/apply-patch+yaml"
55756        ],
55757        "description": "partially update the specified CertificateSigningRequest",
55758        "operationId": "patchCertificatesV1CertificateSigningRequest",
55759        "parameters": [
55760          {
55761            "in": "body",
55762            "name": "body",
55763            "required": true,
55764            "schema": {
55765              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
55766            }
55767          },
55768          {
55769            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
55770            "in": "query",
55771            "name": "dryRun",
55772            "type": "string",
55773            "uniqueItems": true
55774          },
55775          {
55776            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
55777            "in": "query",
55778            "name": "fieldManager",
55779            "type": "string",
55780            "uniqueItems": true
55781          },
55782          {
55783            "description": "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.",
55784            "in": "query",
55785            "name": "force",
55786            "type": "boolean",
55787            "uniqueItems": true
55788          }
55789        ],
55790        "produces": [
55791          "application/json",
55792          "application/yaml",
55793          "application/vnd.kubernetes.protobuf"
55794        ],
55795        "responses": {
55796          "200": {
55797            "description": "OK",
55798            "schema": {
55799              "$ref": "#/definitions/io.k8s.api.certificates.v1.CertificateSigningRequest"
55800            }
55801          },
55802          "201": {
55803            "description": "Created",
55804            "schema": {
55805              "$ref": "#/definitions/io.k8s.api.certificates.v1.CertificateSigningRequest"
55806            }
55807          },
55808          "401": {
55809            "description": "Unauthorized"
55810          }
55811        },
55812        "schemes": [
55813          "https"
55814        ],
55815        "tags": [
55816          "certificates_v1"
55817        ],
55818        "x-kubernetes-action": "patch",
55819        "x-kubernetes-group-version-kind": {
55820          "group": "certificates.k8s.io",
55821          "kind": "CertificateSigningRequest",
55822          "version": "v1"
55823        }
55824      },
55825      "put": {
55826        "consumes": [
55827          "*/*"
55828        ],
55829        "description": "replace the specified CertificateSigningRequest",
55830        "operationId": "replaceCertificatesV1CertificateSigningRequest",
55831        "parameters": [
55832          {
55833            "in": "body",
55834            "name": "body",
55835            "required": true,
55836            "schema": {
55837              "$ref": "#/definitions/io.k8s.api.certificates.v1.CertificateSigningRequest"
55838            }
55839          },
55840          {
55841            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
55842            "in": "query",
55843            "name": "dryRun",
55844            "type": "string",
55845            "uniqueItems": true
55846          },
55847          {
55848            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
55849            "in": "query",
55850            "name": "fieldManager",
55851            "type": "string",
55852            "uniqueItems": true
55853          }
55854        ],
55855        "produces": [
55856          "application/json",
55857          "application/yaml",
55858          "application/vnd.kubernetes.protobuf"
55859        ],
55860        "responses": {
55861          "200": {
55862            "description": "OK",
55863            "schema": {
55864              "$ref": "#/definitions/io.k8s.api.certificates.v1.CertificateSigningRequest"
55865            }
55866          },
55867          "201": {
55868            "description": "Created",
55869            "schema": {
55870              "$ref": "#/definitions/io.k8s.api.certificates.v1.CertificateSigningRequest"
55871            }
55872          },
55873          "401": {
55874            "description": "Unauthorized"
55875          }
55876        },
55877        "schemes": [
55878          "https"
55879        ],
55880        "tags": [
55881          "certificates_v1"
55882        ],
55883        "x-kubernetes-action": "put",
55884        "x-kubernetes-group-version-kind": {
55885          "group": "certificates.k8s.io",
55886          "kind": "CertificateSigningRequest",
55887          "version": "v1"
55888        }
55889      }
55890    },
55891    "/apis/certificates.k8s.io/v1/certificatesigningrequests/{name}/approval": {
55892      "get": {
55893        "consumes": [
55894          "*/*"
55895        ],
55896        "description": "read approval of the specified CertificateSigningRequest",
55897        "operationId": "readCertificatesV1CertificateSigningRequestApproval",
55898        "produces": [
55899          "application/json",
55900          "application/yaml",
55901          "application/vnd.kubernetes.protobuf"
55902        ],
55903        "responses": {
55904          "200": {
55905            "description": "OK",
55906            "schema": {
55907              "$ref": "#/definitions/io.k8s.api.certificates.v1.CertificateSigningRequest"
55908            }
55909          },
55910          "401": {
55911            "description": "Unauthorized"
55912          }
55913        },
55914        "schemes": [
55915          "https"
55916        ],
55917        "tags": [
55918          "certificates_v1"
55919        ],
55920        "x-kubernetes-action": "get",
55921        "x-kubernetes-group-version-kind": {
55922          "group": "certificates.k8s.io",
55923          "kind": "CertificateSigningRequest",
55924          "version": "v1"
55925        }
55926      },
55927      "parameters": [
55928        {
55929          "description": "name of the CertificateSigningRequest",
55930          "in": "path",
55931          "name": "name",
55932          "required": true,
55933          "type": "string",
55934          "uniqueItems": true
55935        },
55936        {
55937          "description": "If 'true', then the output is pretty printed.",
55938          "in": "query",
55939          "name": "pretty",
55940          "type": "string",
55941          "uniqueItems": true
55942        }
55943      ],
55944      "patch": {
55945        "consumes": [
55946          "application/json-patch+json",
55947          "application/merge-patch+json",
55948          "application/strategic-merge-patch+json",
55949          "application/apply-patch+yaml"
55950        ],
55951        "description": "partially update approval of the specified CertificateSigningRequest",
55952        "operationId": "patchCertificatesV1CertificateSigningRequestApproval",
55953        "parameters": [
55954          {
55955            "in": "body",
55956            "name": "body",
55957            "required": true,
55958            "schema": {
55959              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
55960            }
55961          },
55962          {
55963            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
55964            "in": "query",
55965            "name": "dryRun",
55966            "type": "string",
55967            "uniqueItems": true
55968          },
55969          {
55970            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
55971            "in": "query",
55972            "name": "fieldManager",
55973            "type": "string",
55974            "uniqueItems": true
55975          },
55976          {
55977            "description": "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.",
55978            "in": "query",
55979            "name": "force",
55980            "type": "boolean",
55981            "uniqueItems": true
55982          }
55983        ],
55984        "produces": [
55985          "application/json",
55986          "application/yaml",
55987          "application/vnd.kubernetes.protobuf"
55988        ],
55989        "responses": {
55990          "200": {
55991            "description": "OK",
55992            "schema": {
55993              "$ref": "#/definitions/io.k8s.api.certificates.v1.CertificateSigningRequest"
55994            }
55995          },
55996          "201": {
55997            "description": "Created",
55998            "schema": {
55999              "$ref": "#/definitions/io.k8s.api.certificates.v1.CertificateSigningRequest"
56000            }
56001          },
56002          "401": {
56003            "description": "Unauthorized"
56004          }
56005        },
56006        "schemes": [
56007          "https"
56008        ],
56009        "tags": [
56010          "certificates_v1"
56011        ],
56012        "x-kubernetes-action": "patch",
56013        "x-kubernetes-group-version-kind": {
56014          "group": "certificates.k8s.io",
56015          "kind": "CertificateSigningRequest",
56016          "version": "v1"
56017        }
56018      },
56019      "put": {
56020        "consumes": [
56021          "*/*"
56022        ],
56023        "description": "replace approval of the specified CertificateSigningRequest",
56024        "operationId": "replaceCertificatesV1CertificateSigningRequestApproval",
56025        "parameters": [
56026          {
56027            "in": "body",
56028            "name": "body",
56029            "required": true,
56030            "schema": {
56031              "$ref": "#/definitions/io.k8s.api.certificates.v1.CertificateSigningRequest"
56032            }
56033          },
56034          {
56035            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
56036            "in": "query",
56037            "name": "dryRun",
56038            "type": "string",
56039            "uniqueItems": true
56040          },
56041          {
56042            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
56043            "in": "query",
56044            "name": "fieldManager",
56045            "type": "string",
56046            "uniqueItems": true
56047          }
56048        ],
56049        "produces": [
56050          "application/json",
56051          "application/yaml",
56052          "application/vnd.kubernetes.protobuf"
56053        ],
56054        "responses": {
56055          "200": {
56056            "description": "OK",
56057            "schema": {
56058              "$ref": "#/definitions/io.k8s.api.certificates.v1.CertificateSigningRequest"
56059            }
56060          },
56061          "201": {
56062            "description": "Created",
56063            "schema": {
56064              "$ref": "#/definitions/io.k8s.api.certificates.v1.CertificateSigningRequest"
56065            }
56066          },
56067          "401": {
56068            "description": "Unauthorized"
56069          }
56070        },
56071        "schemes": [
56072          "https"
56073        ],
56074        "tags": [
56075          "certificates_v1"
56076        ],
56077        "x-kubernetes-action": "put",
56078        "x-kubernetes-group-version-kind": {
56079          "group": "certificates.k8s.io",
56080          "kind": "CertificateSigningRequest",
56081          "version": "v1"
56082        }
56083      }
56084    },
56085    "/apis/certificates.k8s.io/v1/certificatesigningrequests/{name}/status": {
56086      "get": {
56087        "consumes": [
56088          "*/*"
56089        ],
56090        "description": "read status of the specified CertificateSigningRequest",
56091        "operationId": "readCertificatesV1CertificateSigningRequestStatus",
56092        "produces": [
56093          "application/json",
56094          "application/yaml",
56095          "application/vnd.kubernetes.protobuf"
56096        ],
56097        "responses": {
56098          "200": {
56099            "description": "OK",
56100            "schema": {
56101              "$ref": "#/definitions/io.k8s.api.certificates.v1.CertificateSigningRequest"
56102            }
56103          },
56104          "401": {
56105            "description": "Unauthorized"
56106          }
56107        },
56108        "schemes": [
56109          "https"
56110        ],
56111        "tags": [
56112          "certificates_v1"
56113        ],
56114        "x-kubernetes-action": "get",
56115        "x-kubernetes-group-version-kind": {
56116          "group": "certificates.k8s.io",
56117          "kind": "CertificateSigningRequest",
56118          "version": "v1"
56119        }
56120      },
56121      "parameters": [
56122        {
56123          "description": "name of the CertificateSigningRequest",
56124          "in": "path",
56125          "name": "name",
56126          "required": true,
56127          "type": "string",
56128          "uniqueItems": true
56129        },
56130        {
56131          "description": "If 'true', then the output is pretty printed.",
56132          "in": "query",
56133          "name": "pretty",
56134          "type": "string",
56135          "uniqueItems": true
56136        }
56137      ],
56138      "patch": {
56139        "consumes": [
56140          "application/json-patch+json",
56141          "application/merge-patch+json",
56142          "application/strategic-merge-patch+json",
56143          "application/apply-patch+yaml"
56144        ],
56145        "description": "partially update status of the specified CertificateSigningRequest",
56146        "operationId": "patchCertificatesV1CertificateSigningRequestStatus",
56147        "parameters": [
56148          {
56149            "in": "body",
56150            "name": "body",
56151            "required": true,
56152            "schema": {
56153              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
56154            }
56155          },
56156          {
56157            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
56158            "in": "query",
56159            "name": "dryRun",
56160            "type": "string",
56161            "uniqueItems": true
56162          },
56163          {
56164            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
56165            "in": "query",
56166            "name": "fieldManager",
56167            "type": "string",
56168            "uniqueItems": true
56169          },
56170          {
56171            "description": "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.",
56172            "in": "query",
56173            "name": "force",
56174            "type": "boolean",
56175            "uniqueItems": true
56176          }
56177        ],
56178        "produces": [
56179          "application/json",
56180          "application/yaml",
56181          "application/vnd.kubernetes.protobuf"
56182        ],
56183        "responses": {
56184          "200": {
56185            "description": "OK",
56186            "schema": {
56187              "$ref": "#/definitions/io.k8s.api.certificates.v1.CertificateSigningRequest"
56188            }
56189          },
56190          "201": {
56191            "description": "Created",
56192            "schema": {
56193              "$ref": "#/definitions/io.k8s.api.certificates.v1.CertificateSigningRequest"
56194            }
56195          },
56196          "401": {
56197            "description": "Unauthorized"
56198          }
56199        },
56200        "schemes": [
56201          "https"
56202        ],
56203        "tags": [
56204          "certificates_v1"
56205        ],
56206        "x-kubernetes-action": "patch",
56207        "x-kubernetes-group-version-kind": {
56208          "group": "certificates.k8s.io",
56209          "kind": "CertificateSigningRequest",
56210          "version": "v1"
56211        }
56212      },
56213      "put": {
56214        "consumes": [
56215          "*/*"
56216        ],
56217        "description": "replace status of the specified CertificateSigningRequest",
56218        "operationId": "replaceCertificatesV1CertificateSigningRequestStatus",
56219        "parameters": [
56220          {
56221            "in": "body",
56222            "name": "body",
56223            "required": true,
56224            "schema": {
56225              "$ref": "#/definitions/io.k8s.api.certificates.v1.CertificateSigningRequest"
56226            }
56227          },
56228          {
56229            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
56230            "in": "query",
56231            "name": "dryRun",
56232            "type": "string",
56233            "uniqueItems": true
56234          },
56235          {
56236            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
56237            "in": "query",
56238            "name": "fieldManager",
56239            "type": "string",
56240            "uniqueItems": true
56241          }
56242        ],
56243        "produces": [
56244          "application/json",
56245          "application/yaml",
56246          "application/vnd.kubernetes.protobuf"
56247        ],
56248        "responses": {
56249          "200": {
56250            "description": "OK",
56251            "schema": {
56252              "$ref": "#/definitions/io.k8s.api.certificates.v1.CertificateSigningRequest"
56253            }
56254          },
56255          "201": {
56256            "description": "Created",
56257            "schema": {
56258              "$ref": "#/definitions/io.k8s.api.certificates.v1.CertificateSigningRequest"
56259            }
56260          },
56261          "401": {
56262            "description": "Unauthorized"
56263          }
56264        },
56265        "schemes": [
56266          "https"
56267        ],
56268        "tags": [
56269          "certificates_v1"
56270        ],
56271        "x-kubernetes-action": "put",
56272        "x-kubernetes-group-version-kind": {
56273          "group": "certificates.k8s.io",
56274          "kind": "CertificateSigningRequest",
56275          "version": "v1"
56276        }
56277      }
56278    },
56279    "/apis/certificates.k8s.io/v1/watch/certificatesigningrequests": {
56280      "get": {
56281        "consumes": [
56282          "*/*"
56283        ],
56284        "description": "watch individual changes to a list of CertificateSigningRequest. deprecated: use the 'watch' parameter with a list operation instead.",
56285        "operationId": "watchCertificatesV1CertificateSigningRequestList",
56286        "produces": [
56287          "application/json",
56288          "application/yaml",
56289          "application/vnd.kubernetes.protobuf",
56290          "application/json;stream=watch",
56291          "application/vnd.kubernetes.protobuf;stream=watch"
56292        ],
56293        "responses": {
56294          "200": {
56295            "description": "OK",
56296            "schema": {
56297              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
56298            }
56299          },
56300          "401": {
56301            "description": "Unauthorized"
56302          }
56303        },
56304        "schemes": [
56305          "https"
56306        ],
56307        "tags": [
56308          "certificates_v1"
56309        ],
56310        "x-kubernetes-action": "watchlist",
56311        "x-kubernetes-group-version-kind": {
56312          "group": "certificates.k8s.io",
56313          "kind": "CertificateSigningRequest",
56314          "version": "v1"
56315        }
56316      },
56317      "parameters": [
56318        {
56319          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
56320          "in": "query",
56321          "name": "allowWatchBookmarks",
56322          "type": "boolean",
56323          "uniqueItems": true
56324        },
56325        {
56326          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
56327          "in": "query",
56328          "name": "continue",
56329          "type": "string",
56330          "uniqueItems": true
56331        },
56332        {
56333          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
56334          "in": "query",
56335          "name": "fieldSelector",
56336          "type": "string",
56337          "uniqueItems": true
56338        },
56339        {
56340          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
56341          "in": "query",
56342          "name": "labelSelector",
56343          "type": "string",
56344          "uniqueItems": true
56345        },
56346        {
56347          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
56348          "in": "query",
56349          "name": "limit",
56350          "type": "integer",
56351          "uniqueItems": true
56352        },
56353        {
56354          "description": "If 'true', then the output is pretty printed.",
56355          "in": "query",
56356          "name": "pretty",
56357          "type": "string",
56358          "uniqueItems": true
56359        },
56360        {
56361          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
56362          "in": "query",
56363          "name": "resourceVersion",
56364          "type": "string",
56365          "uniqueItems": true
56366        },
56367        {
56368          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
56369          "in": "query",
56370          "name": "resourceVersionMatch",
56371          "type": "string",
56372          "uniqueItems": true
56373        },
56374        {
56375          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
56376          "in": "query",
56377          "name": "timeoutSeconds",
56378          "type": "integer",
56379          "uniqueItems": true
56380        },
56381        {
56382          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
56383          "in": "query",
56384          "name": "watch",
56385          "type": "boolean",
56386          "uniqueItems": true
56387        }
56388      ]
56389    },
56390    "/apis/certificates.k8s.io/v1/watch/certificatesigningrequests/{name}": {
56391      "get": {
56392        "consumes": [
56393          "*/*"
56394        ],
56395        "description": "watch changes to an object of kind CertificateSigningRequest. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.",
56396        "operationId": "watchCertificatesV1CertificateSigningRequest",
56397        "produces": [
56398          "application/json",
56399          "application/yaml",
56400          "application/vnd.kubernetes.protobuf",
56401          "application/json;stream=watch",
56402          "application/vnd.kubernetes.protobuf;stream=watch"
56403        ],
56404        "responses": {
56405          "200": {
56406            "description": "OK",
56407            "schema": {
56408              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
56409            }
56410          },
56411          "401": {
56412            "description": "Unauthorized"
56413          }
56414        },
56415        "schemes": [
56416          "https"
56417        ],
56418        "tags": [
56419          "certificates_v1"
56420        ],
56421        "x-kubernetes-action": "watch",
56422        "x-kubernetes-group-version-kind": {
56423          "group": "certificates.k8s.io",
56424          "kind": "CertificateSigningRequest",
56425          "version": "v1"
56426        }
56427      },
56428      "parameters": [
56429        {
56430          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
56431          "in": "query",
56432          "name": "allowWatchBookmarks",
56433          "type": "boolean",
56434          "uniqueItems": true
56435        },
56436        {
56437          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
56438          "in": "query",
56439          "name": "continue",
56440          "type": "string",
56441          "uniqueItems": true
56442        },
56443        {
56444          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
56445          "in": "query",
56446          "name": "fieldSelector",
56447          "type": "string",
56448          "uniqueItems": true
56449        },
56450        {
56451          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
56452          "in": "query",
56453          "name": "labelSelector",
56454          "type": "string",
56455          "uniqueItems": true
56456        },
56457        {
56458          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
56459          "in": "query",
56460          "name": "limit",
56461          "type": "integer",
56462          "uniqueItems": true
56463        },
56464        {
56465          "description": "name of the CertificateSigningRequest",
56466          "in": "path",
56467          "name": "name",
56468          "required": true,
56469          "type": "string",
56470          "uniqueItems": true
56471        },
56472        {
56473          "description": "If 'true', then the output is pretty printed.",
56474          "in": "query",
56475          "name": "pretty",
56476          "type": "string",
56477          "uniqueItems": true
56478        },
56479        {
56480          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
56481          "in": "query",
56482          "name": "resourceVersion",
56483          "type": "string",
56484          "uniqueItems": true
56485        },
56486        {
56487          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
56488          "in": "query",
56489          "name": "resourceVersionMatch",
56490          "type": "string",
56491          "uniqueItems": true
56492        },
56493        {
56494          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
56495          "in": "query",
56496          "name": "timeoutSeconds",
56497          "type": "integer",
56498          "uniqueItems": true
56499        },
56500        {
56501          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
56502          "in": "query",
56503          "name": "watch",
56504          "type": "boolean",
56505          "uniqueItems": true
56506        }
56507      ]
56508    },
56509    "/apis/coordination.k8s.io/": {
56510      "get": {
56511        "consumes": [
56512          "application/json",
56513          "application/yaml",
56514          "application/vnd.kubernetes.protobuf"
56515        ],
56516        "description": "get information of a group",
56517        "operationId": "getCoordinationAPIGroup",
56518        "produces": [
56519          "application/json",
56520          "application/yaml",
56521          "application/vnd.kubernetes.protobuf"
56522        ],
56523        "responses": {
56524          "200": {
56525            "description": "OK",
56526            "schema": {
56527              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup"
56528            }
56529          },
56530          "401": {
56531            "description": "Unauthorized"
56532          }
56533        },
56534        "schemes": [
56535          "https"
56536        ],
56537        "tags": [
56538          "coordination"
56539        ]
56540      }
56541    },
56542    "/apis/coordination.k8s.io/v1/": {
56543      "get": {
56544        "consumes": [
56545          "application/json",
56546          "application/yaml",
56547          "application/vnd.kubernetes.protobuf"
56548        ],
56549        "description": "get available resources",
56550        "operationId": "getCoordinationV1APIResources",
56551        "produces": [
56552          "application/json",
56553          "application/yaml",
56554          "application/vnd.kubernetes.protobuf"
56555        ],
56556        "responses": {
56557          "200": {
56558            "description": "OK",
56559            "schema": {
56560              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
56561            }
56562          },
56563          "401": {
56564            "description": "Unauthorized"
56565          }
56566        },
56567        "schemes": [
56568          "https"
56569        ],
56570        "tags": [
56571          "coordination_v1"
56572        ]
56573      }
56574    },
56575    "/apis/coordination.k8s.io/v1/leases": {
56576      "get": {
56577        "consumes": [
56578          "*/*"
56579        ],
56580        "description": "list or watch objects of kind Lease",
56581        "operationId": "listCoordinationV1LeaseForAllNamespaces",
56582        "produces": [
56583          "application/json",
56584          "application/yaml",
56585          "application/vnd.kubernetes.protobuf",
56586          "application/json;stream=watch",
56587          "application/vnd.kubernetes.protobuf;stream=watch"
56588        ],
56589        "responses": {
56590          "200": {
56591            "description": "OK",
56592            "schema": {
56593              "$ref": "#/definitions/io.k8s.api.coordination.v1.LeaseList"
56594            }
56595          },
56596          "401": {
56597            "description": "Unauthorized"
56598          }
56599        },
56600        "schemes": [
56601          "https"
56602        ],
56603        "tags": [
56604          "coordination_v1"
56605        ],
56606        "x-kubernetes-action": "list",
56607        "x-kubernetes-group-version-kind": {
56608          "group": "coordination.k8s.io",
56609          "kind": "Lease",
56610          "version": "v1"
56611        }
56612      },
56613      "parameters": [
56614        {
56615          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
56616          "in": "query",
56617          "name": "allowWatchBookmarks",
56618          "type": "boolean",
56619          "uniqueItems": true
56620        },
56621        {
56622          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
56623          "in": "query",
56624          "name": "continue",
56625          "type": "string",
56626          "uniqueItems": true
56627        },
56628        {
56629          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
56630          "in": "query",
56631          "name": "fieldSelector",
56632          "type": "string",
56633          "uniqueItems": true
56634        },
56635        {
56636          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
56637          "in": "query",
56638          "name": "labelSelector",
56639          "type": "string",
56640          "uniqueItems": true
56641        },
56642        {
56643          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
56644          "in": "query",
56645          "name": "limit",
56646          "type": "integer",
56647          "uniqueItems": true
56648        },
56649        {
56650          "description": "If 'true', then the output is pretty printed.",
56651          "in": "query",
56652          "name": "pretty",
56653          "type": "string",
56654          "uniqueItems": true
56655        },
56656        {
56657          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
56658          "in": "query",
56659          "name": "resourceVersion",
56660          "type": "string",
56661          "uniqueItems": true
56662        },
56663        {
56664          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
56665          "in": "query",
56666          "name": "resourceVersionMatch",
56667          "type": "string",
56668          "uniqueItems": true
56669        },
56670        {
56671          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
56672          "in": "query",
56673          "name": "timeoutSeconds",
56674          "type": "integer",
56675          "uniqueItems": true
56676        },
56677        {
56678          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
56679          "in": "query",
56680          "name": "watch",
56681          "type": "boolean",
56682          "uniqueItems": true
56683        }
56684      ]
56685    },
56686    "/apis/coordination.k8s.io/v1/namespaces/{namespace}/leases": {
56687      "delete": {
56688        "consumes": [
56689          "*/*"
56690        ],
56691        "description": "delete collection of Lease",
56692        "operationId": "deleteCoordinationV1CollectionNamespacedLease",
56693        "parameters": [
56694          {
56695            "in": "body",
56696            "name": "body",
56697            "schema": {
56698              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
56699            }
56700          },
56701          {
56702            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
56703            "in": "query",
56704            "name": "continue",
56705            "type": "string",
56706            "uniqueItems": true
56707          },
56708          {
56709            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
56710            "in": "query",
56711            "name": "dryRun",
56712            "type": "string",
56713            "uniqueItems": true
56714          },
56715          {
56716            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
56717            "in": "query",
56718            "name": "fieldSelector",
56719            "type": "string",
56720            "uniqueItems": true
56721          },
56722          {
56723            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
56724            "in": "query",
56725            "name": "gracePeriodSeconds",
56726            "type": "integer",
56727            "uniqueItems": true
56728          },
56729          {
56730            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
56731            "in": "query",
56732            "name": "labelSelector",
56733            "type": "string",
56734            "uniqueItems": true
56735          },
56736          {
56737            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
56738            "in": "query",
56739            "name": "limit",
56740            "type": "integer",
56741            "uniqueItems": true
56742          },
56743          {
56744            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
56745            "in": "query",
56746            "name": "orphanDependents",
56747            "type": "boolean",
56748            "uniqueItems": true
56749          },
56750          {
56751            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
56752            "in": "query",
56753            "name": "propagationPolicy",
56754            "type": "string",
56755            "uniqueItems": true
56756          },
56757          {
56758            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
56759            "in": "query",
56760            "name": "resourceVersion",
56761            "type": "string",
56762            "uniqueItems": true
56763          },
56764          {
56765            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
56766            "in": "query",
56767            "name": "resourceVersionMatch",
56768            "type": "string",
56769            "uniqueItems": true
56770          },
56771          {
56772            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
56773            "in": "query",
56774            "name": "timeoutSeconds",
56775            "type": "integer",
56776            "uniqueItems": true
56777          }
56778        ],
56779        "produces": [
56780          "application/json",
56781          "application/yaml",
56782          "application/vnd.kubernetes.protobuf"
56783        ],
56784        "responses": {
56785          "200": {
56786            "description": "OK",
56787            "schema": {
56788              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
56789            }
56790          },
56791          "401": {
56792            "description": "Unauthorized"
56793          }
56794        },
56795        "schemes": [
56796          "https"
56797        ],
56798        "tags": [
56799          "coordination_v1"
56800        ],
56801        "x-kubernetes-action": "deletecollection",
56802        "x-kubernetes-group-version-kind": {
56803          "group": "coordination.k8s.io",
56804          "kind": "Lease",
56805          "version": "v1"
56806        }
56807      },
56808      "get": {
56809        "consumes": [
56810          "*/*"
56811        ],
56812        "description": "list or watch objects of kind Lease",
56813        "operationId": "listCoordinationV1NamespacedLease",
56814        "parameters": [
56815          {
56816            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
56817            "in": "query",
56818            "name": "allowWatchBookmarks",
56819            "type": "boolean",
56820            "uniqueItems": true
56821          },
56822          {
56823            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
56824            "in": "query",
56825            "name": "continue",
56826            "type": "string",
56827            "uniqueItems": true
56828          },
56829          {
56830            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
56831            "in": "query",
56832            "name": "fieldSelector",
56833            "type": "string",
56834            "uniqueItems": true
56835          },
56836          {
56837            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
56838            "in": "query",
56839            "name": "labelSelector",
56840            "type": "string",
56841            "uniqueItems": true
56842          },
56843          {
56844            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
56845            "in": "query",
56846            "name": "limit",
56847            "type": "integer",
56848            "uniqueItems": true
56849          },
56850          {
56851            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
56852            "in": "query",
56853            "name": "resourceVersion",
56854            "type": "string",
56855            "uniqueItems": true
56856          },
56857          {
56858            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
56859            "in": "query",
56860            "name": "resourceVersionMatch",
56861            "type": "string",
56862            "uniqueItems": true
56863          },
56864          {
56865            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
56866            "in": "query",
56867            "name": "timeoutSeconds",
56868            "type": "integer",
56869            "uniqueItems": true
56870          },
56871          {
56872            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
56873            "in": "query",
56874            "name": "watch",
56875            "type": "boolean",
56876            "uniqueItems": true
56877          }
56878        ],
56879        "produces": [
56880          "application/json",
56881          "application/yaml",
56882          "application/vnd.kubernetes.protobuf",
56883          "application/json;stream=watch",
56884          "application/vnd.kubernetes.protobuf;stream=watch"
56885        ],
56886        "responses": {
56887          "200": {
56888            "description": "OK",
56889            "schema": {
56890              "$ref": "#/definitions/io.k8s.api.coordination.v1.LeaseList"
56891            }
56892          },
56893          "401": {
56894            "description": "Unauthorized"
56895          }
56896        },
56897        "schemes": [
56898          "https"
56899        ],
56900        "tags": [
56901          "coordination_v1"
56902        ],
56903        "x-kubernetes-action": "list",
56904        "x-kubernetes-group-version-kind": {
56905          "group": "coordination.k8s.io",
56906          "kind": "Lease",
56907          "version": "v1"
56908        }
56909      },
56910      "parameters": [
56911        {
56912          "description": "object name and auth scope, such as for teams and projects",
56913          "in": "path",
56914          "name": "namespace",
56915          "required": true,
56916          "type": "string",
56917          "uniqueItems": true
56918        },
56919        {
56920          "description": "If 'true', then the output is pretty printed.",
56921          "in": "query",
56922          "name": "pretty",
56923          "type": "string",
56924          "uniqueItems": true
56925        }
56926      ],
56927      "post": {
56928        "consumes": [
56929          "*/*"
56930        ],
56931        "description": "create a Lease",
56932        "operationId": "createCoordinationV1NamespacedLease",
56933        "parameters": [
56934          {
56935            "in": "body",
56936            "name": "body",
56937            "required": true,
56938            "schema": {
56939              "$ref": "#/definitions/io.k8s.api.coordination.v1.Lease"
56940            }
56941          },
56942          {
56943            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
56944            "in": "query",
56945            "name": "dryRun",
56946            "type": "string",
56947            "uniqueItems": true
56948          },
56949          {
56950            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
56951            "in": "query",
56952            "name": "fieldManager",
56953            "type": "string",
56954            "uniqueItems": true
56955          }
56956        ],
56957        "produces": [
56958          "application/json",
56959          "application/yaml",
56960          "application/vnd.kubernetes.protobuf"
56961        ],
56962        "responses": {
56963          "200": {
56964            "description": "OK",
56965            "schema": {
56966              "$ref": "#/definitions/io.k8s.api.coordination.v1.Lease"
56967            }
56968          },
56969          "201": {
56970            "description": "Created",
56971            "schema": {
56972              "$ref": "#/definitions/io.k8s.api.coordination.v1.Lease"
56973            }
56974          },
56975          "202": {
56976            "description": "Accepted",
56977            "schema": {
56978              "$ref": "#/definitions/io.k8s.api.coordination.v1.Lease"
56979            }
56980          },
56981          "401": {
56982            "description": "Unauthorized"
56983          }
56984        },
56985        "schemes": [
56986          "https"
56987        ],
56988        "tags": [
56989          "coordination_v1"
56990        ],
56991        "x-kubernetes-action": "post",
56992        "x-kubernetes-group-version-kind": {
56993          "group": "coordination.k8s.io",
56994          "kind": "Lease",
56995          "version": "v1"
56996        }
56997      }
56998    },
56999    "/apis/coordination.k8s.io/v1/namespaces/{namespace}/leases/{name}": {
57000      "delete": {
57001        "consumes": [
57002          "*/*"
57003        ],
57004        "description": "delete a Lease",
57005        "operationId": "deleteCoordinationV1NamespacedLease",
57006        "parameters": [
57007          {
57008            "in": "body",
57009            "name": "body",
57010            "schema": {
57011              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
57012            }
57013          },
57014          {
57015            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
57016            "in": "query",
57017            "name": "dryRun",
57018            "type": "string",
57019            "uniqueItems": true
57020          },
57021          {
57022            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
57023            "in": "query",
57024            "name": "gracePeriodSeconds",
57025            "type": "integer",
57026            "uniqueItems": true
57027          },
57028          {
57029            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
57030            "in": "query",
57031            "name": "orphanDependents",
57032            "type": "boolean",
57033            "uniqueItems": true
57034          },
57035          {
57036            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
57037            "in": "query",
57038            "name": "propagationPolicy",
57039            "type": "string",
57040            "uniqueItems": true
57041          }
57042        ],
57043        "produces": [
57044          "application/json",
57045          "application/yaml",
57046          "application/vnd.kubernetes.protobuf"
57047        ],
57048        "responses": {
57049          "200": {
57050            "description": "OK",
57051            "schema": {
57052              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
57053            }
57054          },
57055          "202": {
57056            "description": "Accepted",
57057            "schema": {
57058              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
57059            }
57060          },
57061          "401": {
57062            "description": "Unauthorized"
57063          }
57064        },
57065        "schemes": [
57066          "https"
57067        ],
57068        "tags": [
57069          "coordination_v1"
57070        ],
57071        "x-kubernetes-action": "delete",
57072        "x-kubernetes-group-version-kind": {
57073          "group": "coordination.k8s.io",
57074          "kind": "Lease",
57075          "version": "v1"
57076        }
57077      },
57078      "get": {
57079        "consumes": [
57080          "*/*"
57081        ],
57082        "description": "read the specified Lease",
57083        "operationId": "readCoordinationV1NamespacedLease",
57084        "produces": [
57085          "application/json",
57086          "application/yaml",
57087          "application/vnd.kubernetes.protobuf"
57088        ],
57089        "responses": {
57090          "200": {
57091            "description": "OK",
57092            "schema": {
57093              "$ref": "#/definitions/io.k8s.api.coordination.v1.Lease"
57094            }
57095          },
57096          "401": {
57097            "description": "Unauthorized"
57098          }
57099        },
57100        "schemes": [
57101          "https"
57102        ],
57103        "tags": [
57104          "coordination_v1"
57105        ],
57106        "x-kubernetes-action": "get",
57107        "x-kubernetes-group-version-kind": {
57108          "group": "coordination.k8s.io",
57109          "kind": "Lease",
57110          "version": "v1"
57111        }
57112      },
57113      "parameters": [
57114        {
57115          "description": "name of the Lease",
57116          "in": "path",
57117          "name": "name",
57118          "required": true,
57119          "type": "string",
57120          "uniqueItems": true
57121        },
57122        {
57123          "description": "object name and auth scope, such as for teams and projects",
57124          "in": "path",
57125          "name": "namespace",
57126          "required": true,
57127          "type": "string",
57128          "uniqueItems": true
57129        },
57130        {
57131          "description": "If 'true', then the output is pretty printed.",
57132          "in": "query",
57133          "name": "pretty",
57134          "type": "string",
57135          "uniqueItems": true
57136        }
57137      ],
57138      "patch": {
57139        "consumes": [
57140          "application/json-patch+json",
57141          "application/merge-patch+json",
57142          "application/strategic-merge-patch+json",
57143          "application/apply-patch+yaml"
57144        ],
57145        "description": "partially update the specified Lease",
57146        "operationId": "patchCoordinationV1NamespacedLease",
57147        "parameters": [
57148          {
57149            "in": "body",
57150            "name": "body",
57151            "required": true,
57152            "schema": {
57153              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
57154            }
57155          },
57156          {
57157            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
57158            "in": "query",
57159            "name": "dryRun",
57160            "type": "string",
57161            "uniqueItems": true
57162          },
57163          {
57164            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
57165            "in": "query",
57166            "name": "fieldManager",
57167            "type": "string",
57168            "uniqueItems": true
57169          },
57170          {
57171            "description": "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.",
57172            "in": "query",
57173            "name": "force",
57174            "type": "boolean",
57175            "uniqueItems": true
57176          }
57177        ],
57178        "produces": [
57179          "application/json",
57180          "application/yaml",
57181          "application/vnd.kubernetes.protobuf"
57182        ],
57183        "responses": {
57184          "200": {
57185            "description": "OK",
57186            "schema": {
57187              "$ref": "#/definitions/io.k8s.api.coordination.v1.Lease"
57188            }
57189          },
57190          "201": {
57191            "description": "Created",
57192            "schema": {
57193              "$ref": "#/definitions/io.k8s.api.coordination.v1.Lease"
57194            }
57195          },
57196          "401": {
57197            "description": "Unauthorized"
57198          }
57199        },
57200        "schemes": [
57201          "https"
57202        ],
57203        "tags": [
57204          "coordination_v1"
57205        ],
57206        "x-kubernetes-action": "patch",
57207        "x-kubernetes-group-version-kind": {
57208          "group": "coordination.k8s.io",
57209          "kind": "Lease",
57210          "version": "v1"
57211        }
57212      },
57213      "put": {
57214        "consumes": [
57215          "*/*"
57216        ],
57217        "description": "replace the specified Lease",
57218        "operationId": "replaceCoordinationV1NamespacedLease",
57219        "parameters": [
57220          {
57221            "in": "body",
57222            "name": "body",
57223            "required": true,
57224            "schema": {
57225              "$ref": "#/definitions/io.k8s.api.coordination.v1.Lease"
57226            }
57227          },
57228          {
57229            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
57230            "in": "query",
57231            "name": "dryRun",
57232            "type": "string",
57233            "uniqueItems": true
57234          },
57235          {
57236            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
57237            "in": "query",
57238            "name": "fieldManager",
57239            "type": "string",
57240            "uniqueItems": true
57241          }
57242        ],
57243        "produces": [
57244          "application/json",
57245          "application/yaml",
57246          "application/vnd.kubernetes.protobuf"
57247        ],
57248        "responses": {
57249          "200": {
57250            "description": "OK",
57251            "schema": {
57252              "$ref": "#/definitions/io.k8s.api.coordination.v1.Lease"
57253            }
57254          },
57255          "201": {
57256            "description": "Created",
57257            "schema": {
57258              "$ref": "#/definitions/io.k8s.api.coordination.v1.Lease"
57259            }
57260          },
57261          "401": {
57262            "description": "Unauthorized"
57263          }
57264        },
57265        "schemes": [
57266          "https"
57267        ],
57268        "tags": [
57269          "coordination_v1"
57270        ],
57271        "x-kubernetes-action": "put",
57272        "x-kubernetes-group-version-kind": {
57273          "group": "coordination.k8s.io",
57274          "kind": "Lease",
57275          "version": "v1"
57276        }
57277      }
57278    },
57279    "/apis/coordination.k8s.io/v1/watch/leases": {
57280      "get": {
57281        "consumes": [
57282          "*/*"
57283        ],
57284        "description": "watch individual changes to a list of Lease. deprecated: use the 'watch' parameter with a list operation instead.",
57285        "operationId": "watchCoordinationV1LeaseListForAllNamespaces",
57286        "produces": [
57287          "application/json",
57288          "application/yaml",
57289          "application/vnd.kubernetes.protobuf",
57290          "application/json;stream=watch",
57291          "application/vnd.kubernetes.protobuf;stream=watch"
57292        ],
57293        "responses": {
57294          "200": {
57295            "description": "OK",
57296            "schema": {
57297              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
57298            }
57299          },
57300          "401": {
57301            "description": "Unauthorized"
57302          }
57303        },
57304        "schemes": [
57305          "https"
57306        ],
57307        "tags": [
57308          "coordination_v1"
57309        ],
57310        "x-kubernetes-action": "watchlist",
57311        "x-kubernetes-group-version-kind": {
57312          "group": "coordination.k8s.io",
57313          "kind": "Lease",
57314          "version": "v1"
57315        }
57316      },
57317      "parameters": [
57318        {
57319          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
57320          "in": "query",
57321          "name": "allowWatchBookmarks",
57322          "type": "boolean",
57323          "uniqueItems": true
57324        },
57325        {
57326          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
57327          "in": "query",
57328          "name": "continue",
57329          "type": "string",
57330          "uniqueItems": true
57331        },
57332        {
57333          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
57334          "in": "query",
57335          "name": "fieldSelector",
57336          "type": "string",
57337          "uniqueItems": true
57338        },
57339        {
57340          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
57341          "in": "query",
57342          "name": "labelSelector",
57343          "type": "string",
57344          "uniqueItems": true
57345        },
57346        {
57347          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
57348          "in": "query",
57349          "name": "limit",
57350          "type": "integer",
57351          "uniqueItems": true
57352        },
57353        {
57354          "description": "If 'true', then the output is pretty printed.",
57355          "in": "query",
57356          "name": "pretty",
57357          "type": "string",
57358          "uniqueItems": true
57359        },
57360        {
57361          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
57362          "in": "query",
57363          "name": "resourceVersion",
57364          "type": "string",
57365          "uniqueItems": true
57366        },
57367        {
57368          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
57369          "in": "query",
57370          "name": "resourceVersionMatch",
57371          "type": "string",
57372          "uniqueItems": true
57373        },
57374        {
57375          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
57376          "in": "query",
57377          "name": "timeoutSeconds",
57378          "type": "integer",
57379          "uniqueItems": true
57380        },
57381        {
57382          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
57383          "in": "query",
57384          "name": "watch",
57385          "type": "boolean",
57386          "uniqueItems": true
57387        }
57388      ]
57389    },
57390    "/apis/coordination.k8s.io/v1/watch/namespaces/{namespace}/leases": {
57391      "get": {
57392        "consumes": [
57393          "*/*"
57394        ],
57395        "description": "watch individual changes to a list of Lease. deprecated: use the 'watch' parameter with a list operation instead.",
57396        "operationId": "watchCoordinationV1NamespacedLeaseList",
57397        "produces": [
57398          "application/json",
57399          "application/yaml",
57400          "application/vnd.kubernetes.protobuf",
57401          "application/json;stream=watch",
57402          "application/vnd.kubernetes.protobuf;stream=watch"
57403        ],
57404        "responses": {
57405          "200": {
57406            "description": "OK",
57407            "schema": {
57408              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
57409            }
57410          },
57411          "401": {
57412            "description": "Unauthorized"
57413          }
57414        },
57415        "schemes": [
57416          "https"
57417        ],
57418        "tags": [
57419          "coordination_v1"
57420        ],
57421        "x-kubernetes-action": "watchlist",
57422        "x-kubernetes-group-version-kind": {
57423          "group": "coordination.k8s.io",
57424          "kind": "Lease",
57425          "version": "v1"
57426        }
57427      },
57428      "parameters": [
57429        {
57430          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
57431          "in": "query",
57432          "name": "allowWatchBookmarks",
57433          "type": "boolean",
57434          "uniqueItems": true
57435        },
57436        {
57437          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
57438          "in": "query",
57439          "name": "continue",
57440          "type": "string",
57441          "uniqueItems": true
57442        },
57443        {
57444          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
57445          "in": "query",
57446          "name": "fieldSelector",
57447          "type": "string",
57448          "uniqueItems": true
57449        },
57450        {
57451          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
57452          "in": "query",
57453          "name": "labelSelector",
57454          "type": "string",
57455          "uniqueItems": true
57456        },
57457        {
57458          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
57459          "in": "query",
57460          "name": "limit",
57461          "type": "integer",
57462          "uniqueItems": true
57463        },
57464        {
57465          "description": "object name and auth scope, such as for teams and projects",
57466          "in": "path",
57467          "name": "namespace",
57468          "required": true,
57469          "type": "string",
57470          "uniqueItems": true
57471        },
57472        {
57473          "description": "If 'true', then the output is pretty printed.",
57474          "in": "query",
57475          "name": "pretty",
57476          "type": "string",
57477          "uniqueItems": true
57478        },
57479        {
57480          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
57481          "in": "query",
57482          "name": "resourceVersion",
57483          "type": "string",
57484          "uniqueItems": true
57485        },
57486        {
57487          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
57488          "in": "query",
57489          "name": "resourceVersionMatch",
57490          "type": "string",
57491          "uniqueItems": true
57492        },
57493        {
57494          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
57495          "in": "query",
57496          "name": "timeoutSeconds",
57497          "type": "integer",
57498          "uniqueItems": true
57499        },
57500        {
57501          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
57502          "in": "query",
57503          "name": "watch",
57504          "type": "boolean",
57505          "uniqueItems": true
57506        }
57507      ]
57508    },
57509    "/apis/coordination.k8s.io/v1/watch/namespaces/{namespace}/leases/{name}": {
57510      "get": {
57511        "consumes": [
57512          "*/*"
57513        ],
57514        "description": "watch changes to an object of kind Lease. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.",
57515        "operationId": "watchCoordinationV1NamespacedLease",
57516        "produces": [
57517          "application/json",
57518          "application/yaml",
57519          "application/vnd.kubernetes.protobuf",
57520          "application/json;stream=watch",
57521          "application/vnd.kubernetes.protobuf;stream=watch"
57522        ],
57523        "responses": {
57524          "200": {
57525            "description": "OK",
57526            "schema": {
57527              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
57528            }
57529          },
57530          "401": {
57531            "description": "Unauthorized"
57532          }
57533        },
57534        "schemes": [
57535          "https"
57536        ],
57537        "tags": [
57538          "coordination_v1"
57539        ],
57540        "x-kubernetes-action": "watch",
57541        "x-kubernetes-group-version-kind": {
57542          "group": "coordination.k8s.io",
57543          "kind": "Lease",
57544          "version": "v1"
57545        }
57546      },
57547      "parameters": [
57548        {
57549          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
57550          "in": "query",
57551          "name": "allowWatchBookmarks",
57552          "type": "boolean",
57553          "uniqueItems": true
57554        },
57555        {
57556          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
57557          "in": "query",
57558          "name": "continue",
57559          "type": "string",
57560          "uniqueItems": true
57561        },
57562        {
57563          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
57564          "in": "query",
57565          "name": "fieldSelector",
57566          "type": "string",
57567          "uniqueItems": true
57568        },
57569        {
57570          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
57571          "in": "query",
57572          "name": "labelSelector",
57573          "type": "string",
57574          "uniqueItems": true
57575        },
57576        {
57577          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
57578          "in": "query",
57579          "name": "limit",
57580          "type": "integer",
57581          "uniqueItems": true
57582        },
57583        {
57584          "description": "name of the Lease",
57585          "in": "path",
57586          "name": "name",
57587          "required": true,
57588          "type": "string",
57589          "uniqueItems": true
57590        },
57591        {
57592          "description": "object name and auth scope, such as for teams and projects",
57593          "in": "path",
57594          "name": "namespace",
57595          "required": true,
57596          "type": "string",
57597          "uniqueItems": true
57598        },
57599        {
57600          "description": "If 'true', then the output is pretty printed.",
57601          "in": "query",
57602          "name": "pretty",
57603          "type": "string",
57604          "uniqueItems": true
57605        },
57606        {
57607          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
57608          "in": "query",
57609          "name": "resourceVersion",
57610          "type": "string",
57611          "uniqueItems": true
57612        },
57613        {
57614          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
57615          "in": "query",
57616          "name": "resourceVersionMatch",
57617          "type": "string",
57618          "uniqueItems": true
57619        },
57620        {
57621          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
57622          "in": "query",
57623          "name": "timeoutSeconds",
57624          "type": "integer",
57625          "uniqueItems": true
57626        },
57627        {
57628          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
57629          "in": "query",
57630          "name": "watch",
57631          "type": "boolean",
57632          "uniqueItems": true
57633        }
57634      ]
57635    },
57636    "/apis/discovery.k8s.io/": {
57637      "get": {
57638        "consumes": [
57639          "application/json",
57640          "application/yaml",
57641          "application/vnd.kubernetes.protobuf"
57642        ],
57643        "description": "get information of a group",
57644        "operationId": "getDiscoveryAPIGroup",
57645        "produces": [
57646          "application/json",
57647          "application/yaml",
57648          "application/vnd.kubernetes.protobuf"
57649        ],
57650        "responses": {
57651          "200": {
57652            "description": "OK",
57653            "schema": {
57654              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup"
57655            }
57656          },
57657          "401": {
57658            "description": "Unauthorized"
57659          }
57660        },
57661        "schemes": [
57662          "https"
57663        ],
57664        "tags": [
57665          "discovery"
57666        ]
57667      }
57668    },
57669    "/apis/discovery.k8s.io/v1/": {
57670      "get": {
57671        "consumes": [
57672          "application/json",
57673          "application/yaml",
57674          "application/vnd.kubernetes.protobuf"
57675        ],
57676        "description": "get available resources",
57677        "operationId": "getDiscoveryV1APIResources",
57678        "produces": [
57679          "application/json",
57680          "application/yaml",
57681          "application/vnd.kubernetes.protobuf"
57682        ],
57683        "responses": {
57684          "200": {
57685            "description": "OK",
57686            "schema": {
57687              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
57688            }
57689          },
57690          "401": {
57691            "description": "Unauthorized"
57692          }
57693        },
57694        "schemes": [
57695          "https"
57696        ],
57697        "tags": [
57698          "discovery_v1"
57699        ]
57700      }
57701    },
57702    "/apis/discovery.k8s.io/v1/endpointslices": {
57703      "get": {
57704        "consumes": [
57705          "*/*"
57706        ],
57707        "description": "list or watch objects of kind EndpointSlice",
57708        "operationId": "listDiscoveryV1EndpointSliceForAllNamespaces",
57709        "produces": [
57710          "application/json",
57711          "application/yaml",
57712          "application/vnd.kubernetes.protobuf",
57713          "application/json;stream=watch",
57714          "application/vnd.kubernetes.protobuf;stream=watch"
57715        ],
57716        "responses": {
57717          "200": {
57718            "description": "OK",
57719            "schema": {
57720              "$ref": "#/definitions/io.k8s.api.discovery.v1.EndpointSliceList"
57721            }
57722          },
57723          "401": {
57724            "description": "Unauthorized"
57725          }
57726        },
57727        "schemes": [
57728          "https"
57729        ],
57730        "tags": [
57731          "discovery_v1"
57732        ],
57733        "x-kubernetes-action": "list",
57734        "x-kubernetes-group-version-kind": {
57735          "group": "discovery.k8s.io",
57736          "kind": "EndpointSlice",
57737          "version": "v1"
57738        }
57739      },
57740      "parameters": [
57741        {
57742          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
57743          "in": "query",
57744          "name": "allowWatchBookmarks",
57745          "type": "boolean",
57746          "uniqueItems": true
57747        },
57748        {
57749          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
57750          "in": "query",
57751          "name": "continue",
57752          "type": "string",
57753          "uniqueItems": true
57754        },
57755        {
57756          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
57757          "in": "query",
57758          "name": "fieldSelector",
57759          "type": "string",
57760          "uniqueItems": true
57761        },
57762        {
57763          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
57764          "in": "query",
57765          "name": "labelSelector",
57766          "type": "string",
57767          "uniqueItems": true
57768        },
57769        {
57770          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
57771          "in": "query",
57772          "name": "limit",
57773          "type": "integer",
57774          "uniqueItems": true
57775        },
57776        {
57777          "description": "If 'true', then the output is pretty printed.",
57778          "in": "query",
57779          "name": "pretty",
57780          "type": "string",
57781          "uniqueItems": true
57782        },
57783        {
57784          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
57785          "in": "query",
57786          "name": "resourceVersion",
57787          "type": "string",
57788          "uniqueItems": true
57789        },
57790        {
57791          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
57792          "in": "query",
57793          "name": "resourceVersionMatch",
57794          "type": "string",
57795          "uniqueItems": true
57796        },
57797        {
57798          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
57799          "in": "query",
57800          "name": "timeoutSeconds",
57801          "type": "integer",
57802          "uniqueItems": true
57803        },
57804        {
57805          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
57806          "in": "query",
57807          "name": "watch",
57808          "type": "boolean",
57809          "uniqueItems": true
57810        }
57811      ]
57812    },
57813    "/apis/discovery.k8s.io/v1/namespaces/{namespace}/endpointslices": {
57814      "delete": {
57815        "consumes": [
57816          "*/*"
57817        ],
57818        "description": "delete collection of EndpointSlice",
57819        "operationId": "deleteDiscoveryV1CollectionNamespacedEndpointSlice",
57820        "parameters": [
57821          {
57822            "in": "body",
57823            "name": "body",
57824            "schema": {
57825              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
57826            }
57827          },
57828          {
57829            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
57830            "in": "query",
57831            "name": "continue",
57832            "type": "string",
57833            "uniqueItems": true
57834          },
57835          {
57836            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
57837            "in": "query",
57838            "name": "dryRun",
57839            "type": "string",
57840            "uniqueItems": true
57841          },
57842          {
57843            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
57844            "in": "query",
57845            "name": "fieldSelector",
57846            "type": "string",
57847            "uniqueItems": true
57848          },
57849          {
57850            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
57851            "in": "query",
57852            "name": "gracePeriodSeconds",
57853            "type": "integer",
57854            "uniqueItems": true
57855          },
57856          {
57857            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
57858            "in": "query",
57859            "name": "labelSelector",
57860            "type": "string",
57861            "uniqueItems": true
57862          },
57863          {
57864            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
57865            "in": "query",
57866            "name": "limit",
57867            "type": "integer",
57868            "uniqueItems": true
57869          },
57870          {
57871            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
57872            "in": "query",
57873            "name": "orphanDependents",
57874            "type": "boolean",
57875            "uniqueItems": true
57876          },
57877          {
57878            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
57879            "in": "query",
57880            "name": "propagationPolicy",
57881            "type": "string",
57882            "uniqueItems": true
57883          },
57884          {
57885            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
57886            "in": "query",
57887            "name": "resourceVersion",
57888            "type": "string",
57889            "uniqueItems": true
57890          },
57891          {
57892            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
57893            "in": "query",
57894            "name": "resourceVersionMatch",
57895            "type": "string",
57896            "uniqueItems": true
57897          },
57898          {
57899            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
57900            "in": "query",
57901            "name": "timeoutSeconds",
57902            "type": "integer",
57903            "uniqueItems": true
57904          }
57905        ],
57906        "produces": [
57907          "application/json",
57908          "application/yaml",
57909          "application/vnd.kubernetes.protobuf"
57910        ],
57911        "responses": {
57912          "200": {
57913            "description": "OK",
57914            "schema": {
57915              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
57916            }
57917          },
57918          "401": {
57919            "description": "Unauthorized"
57920          }
57921        },
57922        "schemes": [
57923          "https"
57924        ],
57925        "tags": [
57926          "discovery_v1"
57927        ],
57928        "x-kubernetes-action": "deletecollection",
57929        "x-kubernetes-group-version-kind": {
57930          "group": "discovery.k8s.io",
57931          "kind": "EndpointSlice",
57932          "version": "v1"
57933        }
57934      },
57935      "get": {
57936        "consumes": [
57937          "*/*"
57938        ],
57939        "description": "list or watch objects of kind EndpointSlice",
57940        "operationId": "listDiscoveryV1NamespacedEndpointSlice",
57941        "parameters": [
57942          {
57943            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
57944            "in": "query",
57945            "name": "allowWatchBookmarks",
57946            "type": "boolean",
57947            "uniqueItems": true
57948          },
57949          {
57950            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
57951            "in": "query",
57952            "name": "continue",
57953            "type": "string",
57954            "uniqueItems": true
57955          },
57956          {
57957            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
57958            "in": "query",
57959            "name": "fieldSelector",
57960            "type": "string",
57961            "uniqueItems": true
57962          },
57963          {
57964            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
57965            "in": "query",
57966            "name": "labelSelector",
57967            "type": "string",
57968            "uniqueItems": true
57969          },
57970          {
57971            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
57972            "in": "query",
57973            "name": "limit",
57974            "type": "integer",
57975            "uniqueItems": true
57976          },
57977          {
57978            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
57979            "in": "query",
57980            "name": "resourceVersion",
57981            "type": "string",
57982            "uniqueItems": true
57983          },
57984          {
57985            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
57986            "in": "query",
57987            "name": "resourceVersionMatch",
57988            "type": "string",
57989            "uniqueItems": true
57990          },
57991          {
57992            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
57993            "in": "query",
57994            "name": "timeoutSeconds",
57995            "type": "integer",
57996            "uniqueItems": true
57997          },
57998          {
57999            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
58000            "in": "query",
58001            "name": "watch",
58002            "type": "boolean",
58003            "uniqueItems": true
58004          }
58005        ],
58006        "produces": [
58007          "application/json",
58008          "application/yaml",
58009          "application/vnd.kubernetes.protobuf",
58010          "application/json;stream=watch",
58011          "application/vnd.kubernetes.protobuf;stream=watch"
58012        ],
58013        "responses": {
58014          "200": {
58015            "description": "OK",
58016            "schema": {
58017              "$ref": "#/definitions/io.k8s.api.discovery.v1.EndpointSliceList"
58018            }
58019          },
58020          "401": {
58021            "description": "Unauthorized"
58022          }
58023        },
58024        "schemes": [
58025          "https"
58026        ],
58027        "tags": [
58028          "discovery_v1"
58029        ],
58030        "x-kubernetes-action": "list",
58031        "x-kubernetes-group-version-kind": {
58032          "group": "discovery.k8s.io",
58033          "kind": "EndpointSlice",
58034          "version": "v1"
58035        }
58036      },
58037      "parameters": [
58038        {
58039          "description": "object name and auth scope, such as for teams and projects",
58040          "in": "path",
58041          "name": "namespace",
58042          "required": true,
58043          "type": "string",
58044          "uniqueItems": true
58045        },
58046        {
58047          "description": "If 'true', then the output is pretty printed.",
58048          "in": "query",
58049          "name": "pretty",
58050          "type": "string",
58051          "uniqueItems": true
58052        }
58053      ],
58054      "post": {
58055        "consumes": [
58056          "*/*"
58057        ],
58058        "description": "create an EndpointSlice",
58059        "operationId": "createDiscoveryV1NamespacedEndpointSlice",
58060        "parameters": [
58061          {
58062            "in": "body",
58063            "name": "body",
58064            "required": true,
58065            "schema": {
58066              "$ref": "#/definitions/io.k8s.api.discovery.v1.EndpointSlice"
58067            }
58068          },
58069          {
58070            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
58071            "in": "query",
58072            "name": "dryRun",
58073            "type": "string",
58074            "uniqueItems": true
58075          },
58076          {
58077            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
58078            "in": "query",
58079            "name": "fieldManager",
58080            "type": "string",
58081            "uniqueItems": true
58082          }
58083        ],
58084        "produces": [
58085          "application/json",
58086          "application/yaml",
58087          "application/vnd.kubernetes.protobuf"
58088        ],
58089        "responses": {
58090          "200": {
58091            "description": "OK",
58092            "schema": {
58093              "$ref": "#/definitions/io.k8s.api.discovery.v1.EndpointSlice"
58094            }
58095          },
58096          "201": {
58097            "description": "Created",
58098            "schema": {
58099              "$ref": "#/definitions/io.k8s.api.discovery.v1.EndpointSlice"
58100            }
58101          },
58102          "202": {
58103            "description": "Accepted",
58104            "schema": {
58105              "$ref": "#/definitions/io.k8s.api.discovery.v1.EndpointSlice"
58106            }
58107          },
58108          "401": {
58109            "description": "Unauthorized"
58110          }
58111        },
58112        "schemes": [
58113          "https"
58114        ],
58115        "tags": [
58116          "discovery_v1"
58117        ],
58118        "x-kubernetes-action": "post",
58119        "x-kubernetes-group-version-kind": {
58120          "group": "discovery.k8s.io",
58121          "kind": "EndpointSlice",
58122          "version": "v1"
58123        }
58124      }
58125    },
58126    "/apis/discovery.k8s.io/v1/namespaces/{namespace}/endpointslices/{name}": {
58127      "delete": {
58128        "consumes": [
58129          "*/*"
58130        ],
58131        "description": "delete an EndpointSlice",
58132        "operationId": "deleteDiscoveryV1NamespacedEndpointSlice",
58133        "parameters": [
58134          {
58135            "in": "body",
58136            "name": "body",
58137            "schema": {
58138              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
58139            }
58140          },
58141          {
58142            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
58143            "in": "query",
58144            "name": "dryRun",
58145            "type": "string",
58146            "uniqueItems": true
58147          },
58148          {
58149            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
58150            "in": "query",
58151            "name": "gracePeriodSeconds",
58152            "type": "integer",
58153            "uniqueItems": true
58154          },
58155          {
58156            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
58157            "in": "query",
58158            "name": "orphanDependents",
58159            "type": "boolean",
58160            "uniqueItems": true
58161          },
58162          {
58163            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
58164            "in": "query",
58165            "name": "propagationPolicy",
58166            "type": "string",
58167            "uniqueItems": true
58168          }
58169        ],
58170        "produces": [
58171          "application/json",
58172          "application/yaml",
58173          "application/vnd.kubernetes.protobuf"
58174        ],
58175        "responses": {
58176          "200": {
58177            "description": "OK",
58178            "schema": {
58179              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
58180            }
58181          },
58182          "202": {
58183            "description": "Accepted",
58184            "schema": {
58185              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
58186            }
58187          },
58188          "401": {
58189            "description": "Unauthorized"
58190          }
58191        },
58192        "schemes": [
58193          "https"
58194        ],
58195        "tags": [
58196          "discovery_v1"
58197        ],
58198        "x-kubernetes-action": "delete",
58199        "x-kubernetes-group-version-kind": {
58200          "group": "discovery.k8s.io",
58201          "kind": "EndpointSlice",
58202          "version": "v1"
58203        }
58204      },
58205      "get": {
58206        "consumes": [
58207          "*/*"
58208        ],
58209        "description": "read the specified EndpointSlice",
58210        "operationId": "readDiscoveryV1NamespacedEndpointSlice",
58211        "produces": [
58212          "application/json",
58213          "application/yaml",
58214          "application/vnd.kubernetes.protobuf"
58215        ],
58216        "responses": {
58217          "200": {
58218            "description": "OK",
58219            "schema": {
58220              "$ref": "#/definitions/io.k8s.api.discovery.v1.EndpointSlice"
58221            }
58222          },
58223          "401": {
58224            "description": "Unauthorized"
58225          }
58226        },
58227        "schemes": [
58228          "https"
58229        ],
58230        "tags": [
58231          "discovery_v1"
58232        ],
58233        "x-kubernetes-action": "get",
58234        "x-kubernetes-group-version-kind": {
58235          "group": "discovery.k8s.io",
58236          "kind": "EndpointSlice",
58237          "version": "v1"
58238        }
58239      },
58240      "parameters": [
58241        {
58242          "description": "name of the EndpointSlice",
58243          "in": "path",
58244          "name": "name",
58245          "required": true,
58246          "type": "string",
58247          "uniqueItems": true
58248        },
58249        {
58250          "description": "object name and auth scope, such as for teams and projects",
58251          "in": "path",
58252          "name": "namespace",
58253          "required": true,
58254          "type": "string",
58255          "uniqueItems": true
58256        },
58257        {
58258          "description": "If 'true', then the output is pretty printed.",
58259          "in": "query",
58260          "name": "pretty",
58261          "type": "string",
58262          "uniqueItems": true
58263        }
58264      ],
58265      "patch": {
58266        "consumes": [
58267          "application/json-patch+json",
58268          "application/merge-patch+json",
58269          "application/strategic-merge-patch+json",
58270          "application/apply-patch+yaml"
58271        ],
58272        "description": "partially update the specified EndpointSlice",
58273        "operationId": "patchDiscoveryV1NamespacedEndpointSlice",
58274        "parameters": [
58275          {
58276            "in": "body",
58277            "name": "body",
58278            "required": true,
58279            "schema": {
58280              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
58281            }
58282          },
58283          {
58284            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
58285            "in": "query",
58286            "name": "dryRun",
58287            "type": "string",
58288            "uniqueItems": true
58289          },
58290          {
58291            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
58292            "in": "query",
58293            "name": "fieldManager",
58294            "type": "string",
58295            "uniqueItems": true
58296          },
58297          {
58298            "description": "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.",
58299            "in": "query",
58300            "name": "force",
58301            "type": "boolean",
58302            "uniqueItems": true
58303          }
58304        ],
58305        "produces": [
58306          "application/json",
58307          "application/yaml",
58308          "application/vnd.kubernetes.protobuf"
58309        ],
58310        "responses": {
58311          "200": {
58312            "description": "OK",
58313            "schema": {
58314              "$ref": "#/definitions/io.k8s.api.discovery.v1.EndpointSlice"
58315            }
58316          },
58317          "201": {
58318            "description": "Created",
58319            "schema": {
58320              "$ref": "#/definitions/io.k8s.api.discovery.v1.EndpointSlice"
58321            }
58322          },
58323          "401": {
58324            "description": "Unauthorized"
58325          }
58326        },
58327        "schemes": [
58328          "https"
58329        ],
58330        "tags": [
58331          "discovery_v1"
58332        ],
58333        "x-kubernetes-action": "patch",
58334        "x-kubernetes-group-version-kind": {
58335          "group": "discovery.k8s.io",
58336          "kind": "EndpointSlice",
58337          "version": "v1"
58338        }
58339      },
58340      "put": {
58341        "consumes": [
58342          "*/*"
58343        ],
58344        "description": "replace the specified EndpointSlice",
58345        "operationId": "replaceDiscoveryV1NamespacedEndpointSlice",
58346        "parameters": [
58347          {
58348            "in": "body",
58349            "name": "body",
58350            "required": true,
58351            "schema": {
58352              "$ref": "#/definitions/io.k8s.api.discovery.v1.EndpointSlice"
58353            }
58354          },
58355          {
58356            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
58357            "in": "query",
58358            "name": "dryRun",
58359            "type": "string",
58360            "uniqueItems": true
58361          },
58362          {
58363            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
58364            "in": "query",
58365            "name": "fieldManager",
58366            "type": "string",
58367            "uniqueItems": true
58368          }
58369        ],
58370        "produces": [
58371          "application/json",
58372          "application/yaml",
58373          "application/vnd.kubernetes.protobuf"
58374        ],
58375        "responses": {
58376          "200": {
58377            "description": "OK",
58378            "schema": {
58379              "$ref": "#/definitions/io.k8s.api.discovery.v1.EndpointSlice"
58380            }
58381          },
58382          "201": {
58383            "description": "Created",
58384            "schema": {
58385              "$ref": "#/definitions/io.k8s.api.discovery.v1.EndpointSlice"
58386            }
58387          },
58388          "401": {
58389            "description": "Unauthorized"
58390          }
58391        },
58392        "schemes": [
58393          "https"
58394        ],
58395        "tags": [
58396          "discovery_v1"
58397        ],
58398        "x-kubernetes-action": "put",
58399        "x-kubernetes-group-version-kind": {
58400          "group": "discovery.k8s.io",
58401          "kind": "EndpointSlice",
58402          "version": "v1"
58403        }
58404      }
58405    },
58406    "/apis/discovery.k8s.io/v1/watch/endpointslices": {
58407      "get": {
58408        "consumes": [
58409          "*/*"
58410        ],
58411        "description": "watch individual changes to a list of EndpointSlice. deprecated: use the 'watch' parameter with a list operation instead.",
58412        "operationId": "watchDiscoveryV1EndpointSliceListForAllNamespaces",
58413        "produces": [
58414          "application/json",
58415          "application/yaml",
58416          "application/vnd.kubernetes.protobuf",
58417          "application/json;stream=watch",
58418          "application/vnd.kubernetes.protobuf;stream=watch"
58419        ],
58420        "responses": {
58421          "200": {
58422            "description": "OK",
58423            "schema": {
58424              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
58425            }
58426          },
58427          "401": {
58428            "description": "Unauthorized"
58429          }
58430        },
58431        "schemes": [
58432          "https"
58433        ],
58434        "tags": [
58435          "discovery_v1"
58436        ],
58437        "x-kubernetes-action": "watchlist",
58438        "x-kubernetes-group-version-kind": {
58439          "group": "discovery.k8s.io",
58440          "kind": "EndpointSlice",
58441          "version": "v1"
58442        }
58443      },
58444      "parameters": [
58445        {
58446          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
58447          "in": "query",
58448          "name": "allowWatchBookmarks",
58449          "type": "boolean",
58450          "uniqueItems": true
58451        },
58452        {
58453          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
58454          "in": "query",
58455          "name": "continue",
58456          "type": "string",
58457          "uniqueItems": true
58458        },
58459        {
58460          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
58461          "in": "query",
58462          "name": "fieldSelector",
58463          "type": "string",
58464          "uniqueItems": true
58465        },
58466        {
58467          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
58468          "in": "query",
58469          "name": "labelSelector",
58470          "type": "string",
58471          "uniqueItems": true
58472        },
58473        {
58474          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
58475          "in": "query",
58476          "name": "limit",
58477          "type": "integer",
58478          "uniqueItems": true
58479        },
58480        {
58481          "description": "If 'true', then the output is pretty printed.",
58482          "in": "query",
58483          "name": "pretty",
58484          "type": "string",
58485          "uniqueItems": true
58486        },
58487        {
58488          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
58489          "in": "query",
58490          "name": "resourceVersion",
58491          "type": "string",
58492          "uniqueItems": true
58493        },
58494        {
58495          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
58496          "in": "query",
58497          "name": "resourceVersionMatch",
58498          "type": "string",
58499          "uniqueItems": true
58500        },
58501        {
58502          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
58503          "in": "query",
58504          "name": "timeoutSeconds",
58505          "type": "integer",
58506          "uniqueItems": true
58507        },
58508        {
58509          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
58510          "in": "query",
58511          "name": "watch",
58512          "type": "boolean",
58513          "uniqueItems": true
58514        }
58515      ]
58516    },
58517    "/apis/discovery.k8s.io/v1/watch/namespaces/{namespace}/endpointslices": {
58518      "get": {
58519        "consumes": [
58520          "*/*"
58521        ],
58522        "description": "watch individual changes to a list of EndpointSlice. deprecated: use the 'watch' parameter with a list operation instead.",
58523        "operationId": "watchDiscoveryV1NamespacedEndpointSliceList",
58524        "produces": [
58525          "application/json",
58526          "application/yaml",
58527          "application/vnd.kubernetes.protobuf",
58528          "application/json;stream=watch",
58529          "application/vnd.kubernetes.protobuf;stream=watch"
58530        ],
58531        "responses": {
58532          "200": {
58533            "description": "OK",
58534            "schema": {
58535              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
58536            }
58537          },
58538          "401": {
58539            "description": "Unauthorized"
58540          }
58541        },
58542        "schemes": [
58543          "https"
58544        ],
58545        "tags": [
58546          "discovery_v1"
58547        ],
58548        "x-kubernetes-action": "watchlist",
58549        "x-kubernetes-group-version-kind": {
58550          "group": "discovery.k8s.io",
58551          "kind": "EndpointSlice",
58552          "version": "v1"
58553        }
58554      },
58555      "parameters": [
58556        {
58557          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
58558          "in": "query",
58559          "name": "allowWatchBookmarks",
58560          "type": "boolean",
58561          "uniqueItems": true
58562        },
58563        {
58564          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
58565          "in": "query",
58566          "name": "continue",
58567          "type": "string",
58568          "uniqueItems": true
58569        },
58570        {
58571          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
58572          "in": "query",
58573          "name": "fieldSelector",
58574          "type": "string",
58575          "uniqueItems": true
58576        },
58577        {
58578          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
58579          "in": "query",
58580          "name": "labelSelector",
58581          "type": "string",
58582          "uniqueItems": true
58583        },
58584        {
58585          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
58586          "in": "query",
58587          "name": "limit",
58588          "type": "integer",
58589          "uniqueItems": true
58590        },
58591        {
58592          "description": "object name and auth scope, such as for teams and projects",
58593          "in": "path",
58594          "name": "namespace",
58595          "required": true,
58596          "type": "string",
58597          "uniqueItems": true
58598        },
58599        {
58600          "description": "If 'true', then the output is pretty printed.",
58601          "in": "query",
58602          "name": "pretty",
58603          "type": "string",
58604          "uniqueItems": true
58605        },
58606        {
58607          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
58608          "in": "query",
58609          "name": "resourceVersion",
58610          "type": "string",
58611          "uniqueItems": true
58612        },
58613        {
58614          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
58615          "in": "query",
58616          "name": "resourceVersionMatch",
58617          "type": "string",
58618          "uniqueItems": true
58619        },
58620        {
58621          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
58622          "in": "query",
58623          "name": "timeoutSeconds",
58624          "type": "integer",
58625          "uniqueItems": true
58626        },
58627        {
58628          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
58629          "in": "query",
58630          "name": "watch",
58631          "type": "boolean",
58632          "uniqueItems": true
58633        }
58634      ]
58635    },
58636    "/apis/discovery.k8s.io/v1/watch/namespaces/{namespace}/endpointslices/{name}": {
58637      "get": {
58638        "consumes": [
58639          "*/*"
58640        ],
58641        "description": "watch changes to an object of kind EndpointSlice. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.",
58642        "operationId": "watchDiscoveryV1NamespacedEndpointSlice",
58643        "produces": [
58644          "application/json",
58645          "application/yaml",
58646          "application/vnd.kubernetes.protobuf",
58647          "application/json;stream=watch",
58648          "application/vnd.kubernetes.protobuf;stream=watch"
58649        ],
58650        "responses": {
58651          "200": {
58652            "description": "OK",
58653            "schema": {
58654              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
58655            }
58656          },
58657          "401": {
58658            "description": "Unauthorized"
58659          }
58660        },
58661        "schemes": [
58662          "https"
58663        ],
58664        "tags": [
58665          "discovery_v1"
58666        ],
58667        "x-kubernetes-action": "watch",
58668        "x-kubernetes-group-version-kind": {
58669          "group": "discovery.k8s.io",
58670          "kind": "EndpointSlice",
58671          "version": "v1"
58672        }
58673      },
58674      "parameters": [
58675        {
58676          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
58677          "in": "query",
58678          "name": "allowWatchBookmarks",
58679          "type": "boolean",
58680          "uniqueItems": true
58681        },
58682        {
58683          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
58684          "in": "query",
58685          "name": "continue",
58686          "type": "string",
58687          "uniqueItems": true
58688        },
58689        {
58690          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
58691          "in": "query",
58692          "name": "fieldSelector",
58693          "type": "string",
58694          "uniqueItems": true
58695        },
58696        {
58697          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
58698          "in": "query",
58699          "name": "labelSelector",
58700          "type": "string",
58701          "uniqueItems": true
58702        },
58703        {
58704          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
58705          "in": "query",
58706          "name": "limit",
58707          "type": "integer",
58708          "uniqueItems": true
58709        },
58710        {
58711          "description": "name of the EndpointSlice",
58712          "in": "path",
58713          "name": "name",
58714          "required": true,
58715          "type": "string",
58716          "uniqueItems": true
58717        },
58718        {
58719          "description": "object name and auth scope, such as for teams and projects",
58720          "in": "path",
58721          "name": "namespace",
58722          "required": true,
58723          "type": "string",
58724          "uniqueItems": true
58725        },
58726        {
58727          "description": "If 'true', then the output is pretty printed.",
58728          "in": "query",
58729          "name": "pretty",
58730          "type": "string",
58731          "uniqueItems": true
58732        },
58733        {
58734          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
58735          "in": "query",
58736          "name": "resourceVersion",
58737          "type": "string",
58738          "uniqueItems": true
58739        },
58740        {
58741          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
58742          "in": "query",
58743          "name": "resourceVersionMatch",
58744          "type": "string",
58745          "uniqueItems": true
58746        },
58747        {
58748          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
58749          "in": "query",
58750          "name": "timeoutSeconds",
58751          "type": "integer",
58752          "uniqueItems": true
58753        },
58754        {
58755          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
58756          "in": "query",
58757          "name": "watch",
58758          "type": "boolean",
58759          "uniqueItems": true
58760        }
58761      ]
58762    },
58763    "/apis/discovery.k8s.io/v1beta1/": {
58764      "get": {
58765        "consumes": [
58766          "application/json",
58767          "application/yaml",
58768          "application/vnd.kubernetes.protobuf"
58769        ],
58770        "description": "get available resources",
58771        "operationId": "getDiscoveryV1beta1APIResources",
58772        "produces": [
58773          "application/json",
58774          "application/yaml",
58775          "application/vnd.kubernetes.protobuf"
58776        ],
58777        "responses": {
58778          "200": {
58779            "description": "OK",
58780            "schema": {
58781              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
58782            }
58783          },
58784          "401": {
58785            "description": "Unauthorized"
58786          }
58787        },
58788        "schemes": [
58789          "https"
58790        ],
58791        "tags": [
58792          "discovery_v1beta1"
58793        ]
58794      }
58795    },
58796    "/apis/discovery.k8s.io/v1beta1/endpointslices": {
58797      "get": {
58798        "consumes": [
58799          "*/*"
58800        ],
58801        "description": "list or watch objects of kind EndpointSlice",
58802        "operationId": "listDiscoveryV1beta1EndpointSliceForAllNamespaces",
58803        "produces": [
58804          "application/json",
58805          "application/yaml",
58806          "application/vnd.kubernetes.protobuf",
58807          "application/json;stream=watch",
58808          "application/vnd.kubernetes.protobuf;stream=watch"
58809        ],
58810        "responses": {
58811          "200": {
58812            "description": "OK",
58813            "schema": {
58814              "$ref": "#/definitions/io.k8s.api.discovery.v1beta1.EndpointSliceList"
58815            }
58816          },
58817          "401": {
58818            "description": "Unauthorized"
58819          }
58820        },
58821        "schemes": [
58822          "https"
58823        ],
58824        "tags": [
58825          "discovery_v1beta1"
58826        ],
58827        "x-kubernetes-action": "list",
58828        "x-kubernetes-group-version-kind": {
58829          "group": "discovery.k8s.io",
58830          "kind": "EndpointSlice",
58831          "version": "v1beta1"
58832        }
58833      },
58834      "parameters": [
58835        {
58836          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
58837          "in": "query",
58838          "name": "allowWatchBookmarks",
58839          "type": "boolean",
58840          "uniqueItems": true
58841        },
58842        {
58843          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
58844          "in": "query",
58845          "name": "continue",
58846          "type": "string",
58847          "uniqueItems": true
58848        },
58849        {
58850          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
58851          "in": "query",
58852          "name": "fieldSelector",
58853          "type": "string",
58854          "uniqueItems": true
58855        },
58856        {
58857          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
58858          "in": "query",
58859          "name": "labelSelector",
58860          "type": "string",
58861          "uniqueItems": true
58862        },
58863        {
58864          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
58865          "in": "query",
58866          "name": "limit",
58867          "type": "integer",
58868          "uniqueItems": true
58869        },
58870        {
58871          "description": "If 'true', then the output is pretty printed.",
58872          "in": "query",
58873          "name": "pretty",
58874          "type": "string",
58875          "uniqueItems": true
58876        },
58877        {
58878          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
58879          "in": "query",
58880          "name": "resourceVersion",
58881          "type": "string",
58882          "uniqueItems": true
58883        },
58884        {
58885          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
58886          "in": "query",
58887          "name": "resourceVersionMatch",
58888          "type": "string",
58889          "uniqueItems": true
58890        },
58891        {
58892          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
58893          "in": "query",
58894          "name": "timeoutSeconds",
58895          "type": "integer",
58896          "uniqueItems": true
58897        },
58898        {
58899          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
58900          "in": "query",
58901          "name": "watch",
58902          "type": "boolean",
58903          "uniqueItems": true
58904        }
58905      ]
58906    },
58907    "/apis/discovery.k8s.io/v1beta1/namespaces/{namespace}/endpointslices": {
58908      "delete": {
58909        "consumes": [
58910          "*/*"
58911        ],
58912        "description": "delete collection of EndpointSlice",
58913        "operationId": "deleteDiscoveryV1beta1CollectionNamespacedEndpointSlice",
58914        "parameters": [
58915          {
58916            "in": "body",
58917            "name": "body",
58918            "schema": {
58919              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
58920            }
58921          },
58922          {
58923            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
58924            "in": "query",
58925            "name": "continue",
58926            "type": "string",
58927            "uniqueItems": true
58928          },
58929          {
58930            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
58931            "in": "query",
58932            "name": "dryRun",
58933            "type": "string",
58934            "uniqueItems": true
58935          },
58936          {
58937            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
58938            "in": "query",
58939            "name": "fieldSelector",
58940            "type": "string",
58941            "uniqueItems": true
58942          },
58943          {
58944            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
58945            "in": "query",
58946            "name": "gracePeriodSeconds",
58947            "type": "integer",
58948            "uniqueItems": true
58949          },
58950          {
58951            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
58952            "in": "query",
58953            "name": "labelSelector",
58954            "type": "string",
58955            "uniqueItems": true
58956          },
58957          {
58958            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
58959            "in": "query",
58960            "name": "limit",
58961            "type": "integer",
58962            "uniqueItems": true
58963          },
58964          {
58965            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
58966            "in": "query",
58967            "name": "orphanDependents",
58968            "type": "boolean",
58969            "uniqueItems": true
58970          },
58971          {
58972            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
58973            "in": "query",
58974            "name": "propagationPolicy",
58975            "type": "string",
58976            "uniqueItems": true
58977          },
58978          {
58979            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
58980            "in": "query",
58981            "name": "resourceVersion",
58982            "type": "string",
58983            "uniqueItems": true
58984          },
58985          {
58986            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
58987            "in": "query",
58988            "name": "resourceVersionMatch",
58989            "type": "string",
58990            "uniqueItems": true
58991          },
58992          {
58993            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
58994            "in": "query",
58995            "name": "timeoutSeconds",
58996            "type": "integer",
58997            "uniqueItems": true
58998          }
58999        ],
59000        "produces": [
59001          "application/json",
59002          "application/yaml",
59003          "application/vnd.kubernetes.protobuf"
59004        ],
59005        "responses": {
59006          "200": {
59007            "description": "OK",
59008            "schema": {
59009              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
59010            }
59011          },
59012          "401": {
59013            "description": "Unauthorized"
59014          }
59015        },
59016        "schemes": [
59017          "https"
59018        ],
59019        "tags": [
59020          "discovery_v1beta1"
59021        ],
59022        "x-kubernetes-action": "deletecollection",
59023        "x-kubernetes-group-version-kind": {
59024          "group": "discovery.k8s.io",
59025          "kind": "EndpointSlice",
59026          "version": "v1beta1"
59027        }
59028      },
59029      "get": {
59030        "consumes": [
59031          "*/*"
59032        ],
59033        "description": "list or watch objects of kind EndpointSlice",
59034        "operationId": "listDiscoveryV1beta1NamespacedEndpointSlice",
59035        "parameters": [
59036          {
59037            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
59038            "in": "query",
59039            "name": "allowWatchBookmarks",
59040            "type": "boolean",
59041            "uniqueItems": true
59042          },
59043          {
59044            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
59045            "in": "query",
59046            "name": "continue",
59047            "type": "string",
59048            "uniqueItems": true
59049          },
59050          {
59051            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
59052            "in": "query",
59053            "name": "fieldSelector",
59054            "type": "string",
59055            "uniqueItems": true
59056          },
59057          {
59058            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
59059            "in": "query",
59060            "name": "labelSelector",
59061            "type": "string",
59062            "uniqueItems": true
59063          },
59064          {
59065            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
59066            "in": "query",
59067            "name": "limit",
59068            "type": "integer",
59069            "uniqueItems": true
59070          },
59071          {
59072            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
59073            "in": "query",
59074            "name": "resourceVersion",
59075            "type": "string",
59076            "uniqueItems": true
59077          },
59078          {
59079            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
59080            "in": "query",
59081            "name": "resourceVersionMatch",
59082            "type": "string",
59083            "uniqueItems": true
59084          },
59085          {
59086            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
59087            "in": "query",
59088            "name": "timeoutSeconds",
59089            "type": "integer",
59090            "uniqueItems": true
59091          },
59092          {
59093            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
59094            "in": "query",
59095            "name": "watch",
59096            "type": "boolean",
59097            "uniqueItems": true
59098          }
59099        ],
59100        "produces": [
59101          "application/json",
59102          "application/yaml",
59103          "application/vnd.kubernetes.protobuf",
59104          "application/json;stream=watch",
59105          "application/vnd.kubernetes.protobuf;stream=watch"
59106        ],
59107        "responses": {
59108          "200": {
59109            "description": "OK",
59110            "schema": {
59111              "$ref": "#/definitions/io.k8s.api.discovery.v1beta1.EndpointSliceList"
59112            }
59113          },
59114          "401": {
59115            "description": "Unauthorized"
59116          }
59117        },
59118        "schemes": [
59119          "https"
59120        ],
59121        "tags": [
59122          "discovery_v1beta1"
59123        ],
59124        "x-kubernetes-action": "list",
59125        "x-kubernetes-group-version-kind": {
59126          "group": "discovery.k8s.io",
59127          "kind": "EndpointSlice",
59128          "version": "v1beta1"
59129        }
59130      },
59131      "parameters": [
59132        {
59133          "description": "object name and auth scope, such as for teams and projects",
59134          "in": "path",
59135          "name": "namespace",
59136          "required": true,
59137          "type": "string",
59138          "uniqueItems": true
59139        },
59140        {
59141          "description": "If 'true', then the output is pretty printed.",
59142          "in": "query",
59143          "name": "pretty",
59144          "type": "string",
59145          "uniqueItems": true
59146        }
59147      ],
59148      "post": {
59149        "consumes": [
59150          "*/*"
59151        ],
59152        "description": "create an EndpointSlice",
59153        "operationId": "createDiscoveryV1beta1NamespacedEndpointSlice",
59154        "parameters": [
59155          {
59156            "in": "body",
59157            "name": "body",
59158            "required": true,
59159            "schema": {
59160              "$ref": "#/definitions/io.k8s.api.discovery.v1beta1.EndpointSlice"
59161            }
59162          },
59163          {
59164            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
59165            "in": "query",
59166            "name": "dryRun",
59167            "type": "string",
59168            "uniqueItems": true
59169          },
59170          {
59171            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
59172            "in": "query",
59173            "name": "fieldManager",
59174            "type": "string",
59175            "uniqueItems": true
59176          }
59177        ],
59178        "produces": [
59179          "application/json",
59180          "application/yaml",
59181          "application/vnd.kubernetes.protobuf"
59182        ],
59183        "responses": {
59184          "200": {
59185            "description": "OK",
59186            "schema": {
59187              "$ref": "#/definitions/io.k8s.api.discovery.v1beta1.EndpointSlice"
59188            }
59189          },
59190          "201": {
59191            "description": "Created",
59192            "schema": {
59193              "$ref": "#/definitions/io.k8s.api.discovery.v1beta1.EndpointSlice"
59194            }
59195          },
59196          "202": {
59197            "description": "Accepted",
59198            "schema": {
59199              "$ref": "#/definitions/io.k8s.api.discovery.v1beta1.EndpointSlice"
59200            }
59201          },
59202          "401": {
59203            "description": "Unauthorized"
59204          }
59205        },
59206        "schemes": [
59207          "https"
59208        ],
59209        "tags": [
59210          "discovery_v1beta1"
59211        ],
59212        "x-kubernetes-action": "post",
59213        "x-kubernetes-group-version-kind": {
59214          "group": "discovery.k8s.io",
59215          "kind": "EndpointSlice",
59216          "version": "v1beta1"
59217        }
59218      }
59219    },
59220    "/apis/discovery.k8s.io/v1beta1/namespaces/{namespace}/endpointslices/{name}": {
59221      "delete": {
59222        "consumes": [
59223          "*/*"
59224        ],
59225        "description": "delete an EndpointSlice",
59226        "operationId": "deleteDiscoveryV1beta1NamespacedEndpointSlice",
59227        "parameters": [
59228          {
59229            "in": "body",
59230            "name": "body",
59231            "schema": {
59232              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
59233            }
59234          },
59235          {
59236            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
59237            "in": "query",
59238            "name": "dryRun",
59239            "type": "string",
59240            "uniqueItems": true
59241          },
59242          {
59243            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
59244            "in": "query",
59245            "name": "gracePeriodSeconds",
59246            "type": "integer",
59247            "uniqueItems": true
59248          },
59249          {
59250            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
59251            "in": "query",
59252            "name": "orphanDependents",
59253            "type": "boolean",
59254            "uniqueItems": true
59255          },
59256          {
59257            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
59258            "in": "query",
59259            "name": "propagationPolicy",
59260            "type": "string",
59261            "uniqueItems": true
59262          }
59263        ],
59264        "produces": [
59265          "application/json",
59266          "application/yaml",
59267          "application/vnd.kubernetes.protobuf"
59268        ],
59269        "responses": {
59270          "200": {
59271            "description": "OK",
59272            "schema": {
59273              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
59274            }
59275          },
59276          "202": {
59277            "description": "Accepted",
59278            "schema": {
59279              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
59280            }
59281          },
59282          "401": {
59283            "description": "Unauthorized"
59284          }
59285        },
59286        "schemes": [
59287          "https"
59288        ],
59289        "tags": [
59290          "discovery_v1beta1"
59291        ],
59292        "x-kubernetes-action": "delete",
59293        "x-kubernetes-group-version-kind": {
59294          "group": "discovery.k8s.io",
59295          "kind": "EndpointSlice",
59296          "version": "v1beta1"
59297        }
59298      },
59299      "get": {
59300        "consumes": [
59301          "*/*"
59302        ],
59303        "description": "read the specified EndpointSlice",
59304        "operationId": "readDiscoveryV1beta1NamespacedEndpointSlice",
59305        "produces": [
59306          "application/json",
59307          "application/yaml",
59308          "application/vnd.kubernetes.protobuf"
59309        ],
59310        "responses": {
59311          "200": {
59312            "description": "OK",
59313            "schema": {
59314              "$ref": "#/definitions/io.k8s.api.discovery.v1beta1.EndpointSlice"
59315            }
59316          },
59317          "401": {
59318            "description": "Unauthorized"
59319          }
59320        },
59321        "schemes": [
59322          "https"
59323        ],
59324        "tags": [
59325          "discovery_v1beta1"
59326        ],
59327        "x-kubernetes-action": "get",
59328        "x-kubernetes-group-version-kind": {
59329          "group": "discovery.k8s.io",
59330          "kind": "EndpointSlice",
59331          "version": "v1beta1"
59332        }
59333      },
59334      "parameters": [
59335        {
59336          "description": "name of the EndpointSlice",
59337          "in": "path",
59338          "name": "name",
59339          "required": true,
59340          "type": "string",
59341          "uniqueItems": true
59342        },
59343        {
59344          "description": "object name and auth scope, such as for teams and projects",
59345          "in": "path",
59346          "name": "namespace",
59347          "required": true,
59348          "type": "string",
59349          "uniqueItems": true
59350        },
59351        {
59352          "description": "If 'true', then the output is pretty printed.",
59353          "in": "query",
59354          "name": "pretty",
59355          "type": "string",
59356          "uniqueItems": true
59357        }
59358      ],
59359      "patch": {
59360        "consumes": [
59361          "application/json-patch+json",
59362          "application/merge-patch+json",
59363          "application/strategic-merge-patch+json",
59364          "application/apply-patch+yaml"
59365        ],
59366        "description": "partially update the specified EndpointSlice",
59367        "operationId": "patchDiscoveryV1beta1NamespacedEndpointSlice",
59368        "parameters": [
59369          {
59370            "in": "body",
59371            "name": "body",
59372            "required": true,
59373            "schema": {
59374              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
59375            }
59376          },
59377          {
59378            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
59379            "in": "query",
59380            "name": "dryRun",
59381            "type": "string",
59382            "uniqueItems": true
59383          },
59384          {
59385            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
59386            "in": "query",
59387            "name": "fieldManager",
59388            "type": "string",
59389            "uniqueItems": true
59390          },
59391          {
59392            "description": "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.",
59393            "in": "query",
59394            "name": "force",
59395            "type": "boolean",
59396            "uniqueItems": true
59397          }
59398        ],
59399        "produces": [
59400          "application/json",
59401          "application/yaml",
59402          "application/vnd.kubernetes.protobuf"
59403        ],
59404        "responses": {
59405          "200": {
59406            "description": "OK",
59407            "schema": {
59408              "$ref": "#/definitions/io.k8s.api.discovery.v1beta1.EndpointSlice"
59409            }
59410          },
59411          "201": {
59412            "description": "Created",
59413            "schema": {
59414              "$ref": "#/definitions/io.k8s.api.discovery.v1beta1.EndpointSlice"
59415            }
59416          },
59417          "401": {
59418            "description": "Unauthorized"
59419          }
59420        },
59421        "schemes": [
59422          "https"
59423        ],
59424        "tags": [
59425          "discovery_v1beta1"
59426        ],
59427        "x-kubernetes-action": "patch",
59428        "x-kubernetes-group-version-kind": {
59429          "group": "discovery.k8s.io",
59430          "kind": "EndpointSlice",
59431          "version": "v1beta1"
59432        }
59433      },
59434      "put": {
59435        "consumes": [
59436          "*/*"
59437        ],
59438        "description": "replace the specified EndpointSlice",
59439        "operationId": "replaceDiscoveryV1beta1NamespacedEndpointSlice",
59440        "parameters": [
59441          {
59442            "in": "body",
59443            "name": "body",
59444            "required": true,
59445            "schema": {
59446              "$ref": "#/definitions/io.k8s.api.discovery.v1beta1.EndpointSlice"
59447            }
59448          },
59449          {
59450            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
59451            "in": "query",
59452            "name": "dryRun",
59453            "type": "string",
59454            "uniqueItems": true
59455          },
59456          {
59457            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
59458            "in": "query",
59459            "name": "fieldManager",
59460            "type": "string",
59461            "uniqueItems": true
59462          }
59463        ],
59464        "produces": [
59465          "application/json",
59466          "application/yaml",
59467          "application/vnd.kubernetes.protobuf"
59468        ],
59469        "responses": {
59470          "200": {
59471            "description": "OK",
59472            "schema": {
59473              "$ref": "#/definitions/io.k8s.api.discovery.v1beta1.EndpointSlice"
59474            }
59475          },
59476          "201": {
59477            "description": "Created",
59478            "schema": {
59479              "$ref": "#/definitions/io.k8s.api.discovery.v1beta1.EndpointSlice"
59480            }
59481          },
59482          "401": {
59483            "description": "Unauthorized"
59484          }
59485        },
59486        "schemes": [
59487          "https"
59488        ],
59489        "tags": [
59490          "discovery_v1beta1"
59491        ],
59492        "x-kubernetes-action": "put",
59493        "x-kubernetes-group-version-kind": {
59494          "group": "discovery.k8s.io",
59495          "kind": "EndpointSlice",
59496          "version": "v1beta1"
59497        }
59498      }
59499    },
59500    "/apis/discovery.k8s.io/v1beta1/watch/endpointslices": {
59501      "get": {
59502        "consumes": [
59503          "*/*"
59504        ],
59505        "description": "watch individual changes to a list of EndpointSlice. deprecated: use the 'watch' parameter with a list operation instead.",
59506        "operationId": "watchDiscoveryV1beta1EndpointSliceListForAllNamespaces",
59507        "produces": [
59508          "application/json",
59509          "application/yaml",
59510          "application/vnd.kubernetes.protobuf",
59511          "application/json;stream=watch",
59512          "application/vnd.kubernetes.protobuf;stream=watch"
59513        ],
59514        "responses": {
59515          "200": {
59516            "description": "OK",
59517            "schema": {
59518              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
59519            }
59520          },
59521          "401": {
59522            "description": "Unauthorized"
59523          }
59524        },
59525        "schemes": [
59526          "https"
59527        ],
59528        "tags": [
59529          "discovery_v1beta1"
59530        ],
59531        "x-kubernetes-action": "watchlist",
59532        "x-kubernetes-group-version-kind": {
59533          "group": "discovery.k8s.io",
59534          "kind": "EndpointSlice",
59535          "version": "v1beta1"
59536        }
59537      },
59538      "parameters": [
59539        {
59540          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
59541          "in": "query",
59542          "name": "allowWatchBookmarks",
59543          "type": "boolean",
59544          "uniqueItems": true
59545        },
59546        {
59547          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
59548          "in": "query",
59549          "name": "continue",
59550          "type": "string",
59551          "uniqueItems": true
59552        },
59553        {
59554          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
59555          "in": "query",
59556          "name": "fieldSelector",
59557          "type": "string",
59558          "uniqueItems": true
59559        },
59560        {
59561          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
59562          "in": "query",
59563          "name": "labelSelector",
59564          "type": "string",
59565          "uniqueItems": true
59566        },
59567        {
59568          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
59569          "in": "query",
59570          "name": "limit",
59571          "type": "integer",
59572          "uniqueItems": true
59573        },
59574        {
59575          "description": "If 'true', then the output is pretty printed.",
59576          "in": "query",
59577          "name": "pretty",
59578          "type": "string",
59579          "uniqueItems": true
59580        },
59581        {
59582          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
59583          "in": "query",
59584          "name": "resourceVersion",
59585          "type": "string",
59586          "uniqueItems": true
59587        },
59588        {
59589          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
59590          "in": "query",
59591          "name": "resourceVersionMatch",
59592          "type": "string",
59593          "uniqueItems": true
59594        },
59595        {
59596          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
59597          "in": "query",
59598          "name": "timeoutSeconds",
59599          "type": "integer",
59600          "uniqueItems": true
59601        },
59602        {
59603          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
59604          "in": "query",
59605          "name": "watch",
59606          "type": "boolean",
59607          "uniqueItems": true
59608        }
59609      ]
59610    },
59611    "/apis/discovery.k8s.io/v1beta1/watch/namespaces/{namespace}/endpointslices": {
59612      "get": {
59613        "consumes": [
59614          "*/*"
59615        ],
59616        "description": "watch individual changes to a list of EndpointSlice. deprecated: use the 'watch' parameter with a list operation instead.",
59617        "operationId": "watchDiscoveryV1beta1NamespacedEndpointSliceList",
59618        "produces": [
59619          "application/json",
59620          "application/yaml",
59621          "application/vnd.kubernetes.protobuf",
59622          "application/json;stream=watch",
59623          "application/vnd.kubernetes.protobuf;stream=watch"
59624        ],
59625        "responses": {
59626          "200": {
59627            "description": "OK",
59628            "schema": {
59629              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
59630            }
59631          },
59632          "401": {
59633            "description": "Unauthorized"
59634          }
59635        },
59636        "schemes": [
59637          "https"
59638        ],
59639        "tags": [
59640          "discovery_v1beta1"
59641        ],
59642        "x-kubernetes-action": "watchlist",
59643        "x-kubernetes-group-version-kind": {
59644          "group": "discovery.k8s.io",
59645          "kind": "EndpointSlice",
59646          "version": "v1beta1"
59647        }
59648      },
59649      "parameters": [
59650        {
59651          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
59652          "in": "query",
59653          "name": "allowWatchBookmarks",
59654          "type": "boolean",
59655          "uniqueItems": true
59656        },
59657        {
59658          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
59659          "in": "query",
59660          "name": "continue",
59661          "type": "string",
59662          "uniqueItems": true
59663        },
59664        {
59665          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
59666          "in": "query",
59667          "name": "fieldSelector",
59668          "type": "string",
59669          "uniqueItems": true
59670        },
59671        {
59672          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
59673          "in": "query",
59674          "name": "labelSelector",
59675          "type": "string",
59676          "uniqueItems": true
59677        },
59678        {
59679          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
59680          "in": "query",
59681          "name": "limit",
59682          "type": "integer",
59683          "uniqueItems": true
59684        },
59685        {
59686          "description": "object name and auth scope, such as for teams and projects",
59687          "in": "path",
59688          "name": "namespace",
59689          "required": true,
59690          "type": "string",
59691          "uniqueItems": true
59692        },
59693        {
59694          "description": "If 'true', then the output is pretty printed.",
59695          "in": "query",
59696          "name": "pretty",
59697          "type": "string",
59698          "uniqueItems": true
59699        },
59700        {
59701          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
59702          "in": "query",
59703          "name": "resourceVersion",
59704          "type": "string",
59705          "uniqueItems": true
59706        },
59707        {
59708          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
59709          "in": "query",
59710          "name": "resourceVersionMatch",
59711          "type": "string",
59712          "uniqueItems": true
59713        },
59714        {
59715          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
59716          "in": "query",
59717          "name": "timeoutSeconds",
59718          "type": "integer",
59719          "uniqueItems": true
59720        },
59721        {
59722          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
59723          "in": "query",
59724          "name": "watch",
59725          "type": "boolean",
59726          "uniqueItems": true
59727        }
59728      ]
59729    },
59730    "/apis/discovery.k8s.io/v1beta1/watch/namespaces/{namespace}/endpointslices/{name}": {
59731      "get": {
59732        "consumes": [
59733          "*/*"
59734        ],
59735        "description": "watch changes to an object of kind EndpointSlice. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.",
59736        "operationId": "watchDiscoveryV1beta1NamespacedEndpointSlice",
59737        "produces": [
59738          "application/json",
59739          "application/yaml",
59740          "application/vnd.kubernetes.protobuf",
59741          "application/json;stream=watch",
59742          "application/vnd.kubernetes.protobuf;stream=watch"
59743        ],
59744        "responses": {
59745          "200": {
59746            "description": "OK",
59747            "schema": {
59748              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
59749            }
59750          },
59751          "401": {
59752            "description": "Unauthorized"
59753          }
59754        },
59755        "schemes": [
59756          "https"
59757        ],
59758        "tags": [
59759          "discovery_v1beta1"
59760        ],
59761        "x-kubernetes-action": "watch",
59762        "x-kubernetes-group-version-kind": {
59763          "group": "discovery.k8s.io",
59764          "kind": "EndpointSlice",
59765          "version": "v1beta1"
59766        }
59767      },
59768      "parameters": [
59769        {
59770          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
59771          "in": "query",
59772          "name": "allowWatchBookmarks",
59773          "type": "boolean",
59774          "uniqueItems": true
59775        },
59776        {
59777          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
59778          "in": "query",
59779          "name": "continue",
59780          "type": "string",
59781          "uniqueItems": true
59782        },
59783        {
59784          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
59785          "in": "query",
59786          "name": "fieldSelector",
59787          "type": "string",
59788          "uniqueItems": true
59789        },
59790        {
59791          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
59792          "in": "query",
59793          "name": "labelSelector",
59794          "type": "string",
59795          "uniqueItems": true
59796        },
59797        {
59798          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
59799          "in": "query",
59800          "name": "limit",
59801          "type": "integer",
59802          "uniqueItems": true
59803        },
59804        {
59805          "description": "name of the EndpointSlice",
59806          "in": "path",
59807          "name": "name",
59808          "required": true,
59809          "type": "string",
59810          "uniqueItems": true
59811        },
59812        {
59813          "description": "object name and auth scope, such as for teams and projects",
59814          "in": "path",
59815          "name": "namespace",
59816          "required": true,
59817          "type": "string",
59818          "uniqueItems": true
59819        },
59820        {
59821          "description": "If 'true', then the output is pretty printed.",
59822          "in": "query",
59823          "name": "pretty",
59824          "type": "string",
59825          "uniqueItems": true
59826        },
59827        {
59828          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
59829          "in": "query",
59830          "name": "resourceVersion",
59831          "type": "string",
59832          "uniqueItems": true
59833        },
59834        {
59835          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
59836          "in": "query",
59837          "name": "resourceVersionMatch",
59838          "type": "string",
59839          "uniqueItems": true
59840        },
59841        {
59842          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
59843          "in": "query",
59844          "name": "timeoutSeconds",
59845          "type": "integer",
59846          "uniqueItems": true
59847        },
59848        {
59849          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
59850          "in": "query",
59851          "name": "watch",
59852          "type": "boolean",
59853          "uniqueItems": true
59854        }
59855      ]
59856    },
59857    "/apis/events.k8s.io/": {
59858      "get": {
59859        "consumes": [
59860          "application/json",
59861          "application/yaml",
59862          "application/vnd.kubernetes.protobuf"
59863        ],
59864        "description": "get information of a group",
59865        "operationId": "getEventsAPIGroup",
59866        "produces": [
59867          "application/json",
59868          "application/yaml",
59869          "application/vnd.kubernetes.protobuf"
59870        ],
59871        "responses": {
59872          "200": {
59873            "description": "OK",
59874            "schema": {
59875              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup"
59876            }
59877          },
59878          "401": {
59879            "description": "Unauthorized"
59880          }
59881        },
59882        "schemes": [
59883          "https"
59884        ],
59885        "tags": [
59886          "events"
59887        ]
59888      }
59889    },
59890    "/apis/events.k8s.io/v1/": {
59891      "get": {
59892        "consumes": [
59893          "application/json",
59894          "application/yaml",
59895          "application/vnd.kubernetes.protobuf"
59896        ],
59897        "description": "get available resources",
59898        "operationId": "getEventsV1APIResources",
59899        "produces": [
59900          "application/json",
59901          "application/yaml",
59902          "application/vnd.kubernetes.protobuf"
59903        ],
59904        "responses": {
59905          "200": {
59906            "description": "OK",
59907            "schema": {
59908              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
59909            }
59910          },
59911          "401": {
59912            "description": "Unauthorized"
59913          }
59914        },
59915        "schemes": [
59916          "https"
59917        ],
59918        "tags": [
59919          "events_v1"
59920        ]
59921      }
59922    },
59923    "/apis/events.k8s.io/v1/events": {
59924      "get": {
59925        "consumes": [
59926          "*/*"
59927        ],
59928        "description": "list or watch objects of kind Event",
59929        "operationId": "listEventsV1EventForAllNamespaces",
59930        "produces": [
59931          "application/json",
59932          "application/yaml",
59933          "application/vnd.kubernetes.protobuf",
59934          "application/json;stream=watch",
59935          "application/vnd.kubernetes.protobuf;stream=watch"
59936        ],
59937        "responses": {
59938          "200": {
59939            "description": "OK",
59940            "schema": {
59941              "$ref": "#/definitions/io.k8s.api.events.v1.EventList"
59942            }
59943          },
59944          "401": {
59945            "description": "Unauthorized"
59946          }
59947        },
59948        "schemes": [
59949          "https"
59950        ],
59951        "tags": [
59952          "events_v1"
59953        ],
59954        "x-kubernetes-action": "list",
59955        "x-kubernetes-group-version-kind": {
59956          "group": "events.k8s.io",
59957          "kind": "Event",
59958          "version": "v1"
59959        }
59960      },
59961      "parameters": [
59962        {
59963          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
59964          "in": "query",
59965          "name": "allowWatchBookmarks",
59966          "type": "boolean",
59967          "uniqueItems": true
59968        },
59969        {
59970          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
59971          "in": "query",
59972          "name": "continue",
59973          "type": "string",
59974          "uniqueItems": true
59975        },
59976        {
59977          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
59978          "in": "query",
59979          "name": "fieldSelector",
59980          "type": "string",
59981          "uniqueItems": true
59982        },
59983        {
59984          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
59985          "in": "query",
59986          "name": "labelSelector",
59987          "type": "string",
59988          "uniqueItems": true
59989        },
59990        {
59991          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
59992          "in": "query",
59993          "name": "limit",
59994          "type": "integer",
59995          "uniqueItems": true
59996        },
59997        {
59998          "description": "If 'true', then the output is pretty printed.",
59999          "in": "query",
60000          "name": "pretty",
60001          "type": "string",
60002          "uniqueItems": true
60003        },
60004        {
60005          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
60006          "in": "query",
60007          "name": "resourceVersion",
60008          "type": "string",
60009          "uniqueItems": true
60010        },
60011        {
60012          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
60013          "in": "query",
60014          "name": "resourceVersionMatch",
60015          "type": "string",
60016          "uniqueItems": true
60017        },
60018        {
60019          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
60020          "in": "query",
60021          "name": "timeoutSeconds",
60022          "type": "integer",
60023          "uniqueItems": true
60024        },
60025        {
60026          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
60027          "in": "query",
60028          "name": "watch",
60029          "type": "boolean",
60030          "uniqueItems": true
60031        }
60032      ]
60033    },
60034    "/apis/events.k8s.io/v1/namespaces/{namespace}/events": {
60035      "delete": {
60036        "consumes": [
60037          "*/*"
60038        ],
60039        "description": "delete collection of Event",
60040        "operationId": "deleteEventsV1CollectionNamespacedEvent",
60041        "parameters": [
60042          {
60043            "in": "body",
60044            "name": "body",
60045            "schema": {
60046              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
60047            }
60048          },
60049          {
60050            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
60051            "in": "query",
60052            "name": "continue",
60053            "type": "string",
60054            "uniqueItems": true
60055          },
60056          {
60057            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
60058            "in": "query",
60059            "name": "dryRun",
60060            "type": "string",
60061            "uniqueItems": true
60062          },
60063          {
60064            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
60065            "in": "query",
60066            "name": "fieldSelector",
60067            "type": "string",
60068            "uniqueItems": true
60069          },
60070          {
60071            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
60072            "in": "query",
60073            "name": "gracePeriodSeconds",
60074            "type": "integer",
60075            "uniqueItems": true
60076          },
60077          {
60078            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
60079            "in": "query",
60080            "name": "labelSelector",
60081            "type": "string",
60082            "uniqueItems": true
60083          },
60084          {
60085            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
60086            "in": "query",
60087            "name": "limit",
60088            "type": "integer",
60089            "uniqueItems": true
60090          },
60091          {
60092            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
60093            "in": "query",
60094            "name": "orphanDependents",
60095            "type": "boolean",
60096            "uniqueItems": true
60097          },
60098          {
60099            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
60100            "in": "query",
60101            "name": "propagationPolicy",
60102            "type": "string",
60103            "uniqueItems": true
60104          },
60105          {
60106            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
60107            "in": "query",
60108            "name": "resourceVersion",
60109            "type": "string",
60110            "uniqueItems": true
60111          },
60112          {
60113            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
60114            "in": "query",
60115            "name": "resourceVersionMatch",
60116            "type": "string",
60117            "uniqueItems": true
60118          },
60119          {
60120            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
60121            "in": "query",
60122            "name": "timeoutSeconds",
60123            "type": "integer",
60124            "uniqueItems": true
60125          }
60126        ],
60127        "produces": [
60128          "application/json",
60129          "application/yaml",
60130          "application/vnd.kubernetes.protobuf"
60131        ],
60132        "responses": {
60133          "200": {
60134            "description": "OK",
60135            "schema": {
60136              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
60137            }
60138          },
60139          "401": {
60140            "description": "Unauthorized"
60141          }
60142        },
60143        "schemes": [
60144          "https"
60145        ],
60146        "tags": [
60147          "events_v1"
60148        ],
60149        "x-kubernetes-action": "deletecollection",
60150        "x-kubernetes-group-version-kind": {
60151          "group": "events.k8s.io",
60152          "kind": "Event",
60153          "version": "v1"
60154        }
60155      },
60156      "get": {
60157        "consumes": [
60158          "*/*"
60159        ],
60160        "description": "list or watch objects of kind Event",
60161        "operationId": "listEventsV1NamespacedEvent",
60162        "parameters": [
60163          {
60164            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
60165            "in": "query",
60166            "name": "allowWatchBookmarks",
60167            "type": "boolean",
60168            "uniqueItems": true
60169          },
60170          {
60171            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
60172            "in": "query",
60173            "name": "continue",
60174            "type": "string",
60175            "uniqueItems": true
60176          },
60177          {
60178            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
60179            "in": "query",
60180            "name": "fieldSelector",
60181            "type": "string",
60182            "uniqueItems": true
60183          },
60184          {
60185            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
60186            "in": "query",
60187            "name": "labelSelector",
60188            "type": "string",
60189            "uniqueItems": true
60190          },
60191          {
60192            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
60193            "in": "query",
60194            "name": "limit",
60195            "type": "integer",
60196            "uniqueItems": true
60197          },
60198          {
60199            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
60200            "in": "query",
60201            "name": "resourceVersion",
60202            "type": "string",
60203            "uniqueItems": true
60204          },
60205          {
60206            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
60207            "in": "query",
60208            "name": "resourceVersionMatch",
60209            "type": "string",
60210            "uniqueItems": true
60211          },
60212          {
60213            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
60214            "in": "query",
60215            "name": "timeoutSeconds",
60216            "type": "integer",
60217            "uniqueItems": true
60218          },
60219          {
60220            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
60221            "in": "query",
60222            "name": "watch",
60223            "type": "boolean",
60224            "uniqueItems": true
60225          }
60226        ],
60227        "produces": [
60228          "application/json",
60229          "application/yaml",
60230          "application/vnd.kubernetes.protobuf",
60231          "application/json;stream=watch",
60232          "application/vnd.kubernetes.protobuf;stream=watch"
60233        ],
60234        "responses": {
60235          "200": {
60236            "description": "OK",
60237            "schema": {
60238              "$ref": "#/definitions/io.k8s.api.events.v1.EventList"
60239            }
60240          },
60241          "401": {
60242            "description": "Unauthorized"
60243          }
60244        },
60245        "schemes": [
60246          "https"
60247        ],
60248        "tags": [
60249          "events_v1"
60250        ],
60251        "x-kubernetes-action": "list",
60252        "x-kubernetes-group-version-kind": {
60253          "group": "events.k8s.io",
60254          "kind": "Event",
60255          "version": "v1"
60256        }
60257      },
60258      "parameters": [
60259        {
60260          "description": "object name and auth scope, such as for teams and projects",
60261          "in": "path",
60262          "name": "namespace",
60263          "required": true,
60264          "type": "string",
60265          "uniqueItems": true
60266        },
60267        {
60268          "description": "If 'true', then the output is pretty printed.",
60269          "in": "query",
60270          "name": "pretty",
60271          "type": "string",
60272          "uniqueItems": true
60273        }
60274      ],
60275      "post": {
60276        "consumes": [
60277          "*/*"
60278        ],
60279        "description": "create an Event",
60280        "operationId": "createEventsV1NamespacedEvent",
60281        "parameters": [
60282          {
60283            "in": "body",
60284            "name": "body",
60285            "required": true,
60286            "schema": {
60287              "$ref": "#/definitions/io.k8s.api.events.v1.Event"
60288            }
60289          },
60290          {
60291            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
60292            "in": "query",
60293            "name": "dryRun",
60294            "type": "string",
60295            "uniqueItems": true
60296          },
60297          {
60298            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
60299            "in": "query",
60300            "name": "fieldManager",
60301            "type": "string",
60302            "uniqueItems": true
60303          }
60304        ],
60305        "produces": [
60306          "application/json",
60307          "application/yaml",
60308          "application/vnd.kubernetes.protobuf"
60309        ],
60310        "responses": {
60311          "200": {
60312            "description": "OK",
60313            "schema": {
60314              "$ref": "#/definitions/io.k8s.api.events.v1.Event"
60315            }
60316          },
60317          "201": {
60318            "description": "Created",
60319            "schema": {
60320              "$ref": "#/definitions/io.k8s.api.events.v1.Event"
60321            }
60322          },
60323          "202": {
60324            "description": "Accepted",
60325            "schema": {
60326              "$ref": "#/definitions/io.k8s.api.events.v1.Event"
60327            }
60328          },
60329          "401": {
60330            "description": "Unauthorized"
60331          }
60332        },
60333        "schemes": [
60334          "https"
60335        ],
60336        "tags": [
60337          "events_v1"
60338        ],
60339        "x-kubernetes-action": "post",
60340        "x-kubernetes-group-version-kind": {
60341          "group": "events.k8s.io",
60342          "kind": "Event",
60343          "version": "v1"
60344        }
60345      }
60346    },
60347    "/apis/events.k8s.io/v1/namespaces/{namespace}/events/{name}": {
60348      "delete": {
60349        "consumes": [
60350          "*/*"
60351        ],
60352        "description": "delete an Event",
60353        "operationId": "deleteEventsV1NamespacedEvent",
60354        "parameters": [
60355          {
60356            "in": "body",
60357            "name": "body",
60358            "schema": {
60359              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
60360            }
60361          },
60362          {
60363            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
60364            "in": "query",
60365            "name": "dryRun",
60366            "type": "string",
60367            "uniqueItems": true
60368          },
60369          {
60370            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
60371            "in": "query",
60372            "name": "gracePeriodSeconds",
60373            "type": "integer",
60374            "uniqueItems": true
60375          },
60376          {
60377            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
60378            "in": "query",
60379            "name": "orphanDependents",
60380            "type": "boolean",
60381            "uniqueItems": true
60382          },
60383          {
60384            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
60385            "in": "query",
60386            "name": "propagationPolicy",
60387            "type": "string",
60388            "uniqueItems": true
60389          }
60390        ],
60391        "produces": [
60392          "application/json",
60393          "application/yaml",
60394          "application/vnd.kubernetes.protobuf"
60395        ],
60396        "responses": {
60397          "200": {
60398            "description": "OK",
60399            "schema": {
60400              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
60401            }
60402          },
60403          "202": {
60404            "description": "Accepted",
60405            "schema": {
60406              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
60407            }
60408          },
60409          "401": {
60410            "description": "Unauthorized"
60411          }
60412        },
60413        "schemes": [
60414          "https"
60415        ],
60416        "tags": [
60417          "events_v1"
60418        ],
60419        "x-kubernetes-action": "delete",
60420        "x-kubernetes-group-version-kind": {
60421          "group": "events.k8s.io",
60422          "kind": "Event",
60423          "version": "v1"
60424        }
60425      },
60426      "get": {
60427        "consumes": [
60428          "*/*"
60429        ],
60430        "description": "read the specified Event",
60431        "operationId": "readEventsV1NamespacedEvent",
60432        "produces": [
60433          "application/json",
60434          "application/yaml",
60435          "application/vnd.kubernetes.protobuf"
60436        ],
60437        "responses": {
60438          "200": {
60439            "description": "OK",
60440            "schema": {
60441              "$ref": "#/definitions/io.k8s.api.events.v1.Event"
60442            }
60443          },
60444          "401": {
60445            "description": "Unauthorized"
60446          }
60447        },
60448        "schemes": [
60449          "https"
60450        ],
60451        "tags": [
60452          "events_v1"
60453        ],
60454        "x-kubernetes-action": "get",
60455        "x-kubernetes-group-version-kind": {
60456          "group": "events.k8s.io",
60457          "kind": "Event",
60458          "version": "v1"
60459        }
60460      },
60461      "parameters": [
60462        {
60463          "description": "name of the Event",
60464          "in": "path",
60465          "name": "name",
60466          "required": true,
60467          "type": "string",
60468          "uniqueItems": true
60469        },
60470        {
60471          "description": "object name and auth scope, such as for teams and projects",
60472          "in": "path",
60473          "name": "namespace",
60474          "required": true,
60475          "type": "string",
60476          "uniqueItems": true
60477        },
60478        {
60479          "description": "If 'true', then the output is pretty printed.",
60480          "in": "query",
60481          "name": "pretty",
60482          "type": "string",
60483          "uniqueItems": true
60484        }
60485      ],
60486      "patch": {
60487        "consumes": [
60488          "application/json-patch+json",
60489          "application/merge-patch+json",
60490          "application/strategic-merge-patch+json",
60491          "application/apply-patch+yaml"
60492        ],
60493        "description": "partially update the specified Event",
60494        "operationId": "patchEventsV1NamespacedEvent",
60495        "parameters": [
60496          {
60497            "in": "body",
60498            "name": "body",
60499            "required": true,
60500            "schema": {
60501              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
60502            }
60503          },
60504          {
60505            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
60506            "in": "query",
60507            "name": "dryRun",
60508            "type": "string",
60509            "uniqueItems": true
60510          },
60511          {
60512            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
60513            "in": "query",
60514            "name": "fieldManager",
60515            "type": "string",
60516            "uniqueItems": true
60517          },
60518          {
60519            "description": "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.",
60520            "in": "query",
60521            "name": "force",
60522            "type": "boolean",
60523            "uniqueItems": true
60524          }
60525        ],
60526        "produces": [
60527          "application/json",
60528          "application/yaml",
60529          "application/vnd.kubernetes.protobuf"
60530        ],
60531        "responses": {
60532          "200": {
60533            "description": "OK",
60534            "schema": {
60535              "$ref": "#/definitions/io.k8s.api.events.v1.Event"
60536            }
60537          },
60538          "201": {
60539            "description": "Created",
60540            "schema": {
60541              "$ref": "#/definitions/io.k8s.api.events.v1.Event"
60542            }
60543          },
60544          "401": {
60545            "description": "Unauthorized"
60546          }
60547        },
60548        "schemes": [
60549          "https"
60550        ],
60551        "tags": [
60552          "events_v1"
60553        ],
60554        "x-kubernetes-action": "patch",
60555        "x-kubernetes-group-version-kind": {
60556          "group": "events.k8s.io",
60557          "kind": "Event",
60558          "version": "v1"
60559        }
60560      },
60561      "put": {
60562        "consumes": [
60563          "*/*"
60564        ],
60565        "description": "replace the specified Event",
60566        "operationId": "replaceEventsV1NamespacedEvent",
60567        "parameters": [
60568          {
60569            "in": "body",
60570            "name": "body",
60571            "required": true,
60572            "schema": {
60573              "$ref": "#/definitions/io.k8s.api.events.v1.Event"
60574            }
60575          },
60576          {
60577            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
60578            "in": "query",
60579            "name": "dryRun",
60580            "type": "string",
60581            "uniqueItems": true
60582          },
60583          {
60584            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
60585            "in": "query",
60586            "name": "fieldManager",
60587            "type": "string",
60588            "uniqueItems": true
60589          }
60590        ],
60591        "produces": [
60592          "application/json",
60593          "application/yaml",
60594          "application/vnd.kubernetes.protobuf"
60595        ],
60596        "responses": {
60597          "200": {
60598            "description": "OK",
60599            "schema": {
60600              "$ref": "#/definitions/io.k8s.api.events.v1.Event"
60601            }
60602          },
60603          "201": {
60604            "description": "Created",
60605            "schema": {
60606              "$ref": "#/definitions/io.k8s.api.events.v1.Event"
60607            }
60608          },
60609          "401": {
60610            "description": "Unauthorized"
60611          }
60612        },
60613        "schemes": [
60614          "https"
60615        ],
60616        "tags": [
60617          "events_v1"
60618        ],
60619        "x-kubernetes-action": "put",
60620        "x-kubernetes-group-version-kind": {
60621          "group": "events.k8s.io",
60622          "kind": "Event",
60623          "version": "v1"
60624        }
60625      }
60626    },
60627    "/apis/events.k8s.io/v1/watch/events": {
60628      "get": {
60629        "consumes": [
60630          "*/*"
60631        ],
60632        "description": "watch individual changes to a list of Event. deprecated: use the 'watch' parameter with a list operation instead.",
60633        "operationId": "watchEventsV1EventListForAllNamespaces",
60634        "produces": [
60635          "application/json",
60636          "application/yaml",
60637          "application/vnd.kubernetes.protobuf",
60638          "application/json;stream=watch",
60639          "application/vnd.kubernetes.protobuf;stream=watch"
60640        ],
60641        "responses": {
60642          "200": {
60643            "description": "OK",
60644            "schema": {
60645              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
60646            }
60647          },
60648          "401": {
60649            "description": "Unauthorized"
60650          }
60651        },
60652        "schemes": [
60653          "https"
60654        ],
60655        "tags": [
60656          "events_v1"
60657        ],
60658        "x-kubernetes-action": "watchlist",
60659        "x-kubernetes-group-version-kind": {
60660          "group": "events.k8s.io",
60661          "kind": "Event",
60662          "version": "v1"
60663        }
60664      },
60665      "parameters": [
60666        {
60667          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
60668          "in": "query",
60669          "name": "allowWatchBookmarks",
60670          "type": "boolean",
60671          "uniqueItems": true
60672        },
60673        {
60674          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
60675          "in": "query",
60676          "name": "continue",
60677          "type": "string",
60678          "uniqueItems": true
60679        },
60680        {
60681          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
60682          "in": "query",
60683          "name": "fieldSelector",
60684          "type": "string",
60685          "uniqueItems": true
60686        },
60687        {
60688          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
60689          "in": "query",
60690          "name": "labelSelector",
60691          "type": "string",
60692          "uniqueItems": true
60693        },
60694        {
60695          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
60696          "in": "query",
60697          "name": "limit",
60698          "type": "integer",
60699          "uniqueItems": true
60700        },
60701        {
60702          "description": "If 'true', then the output is pretty printed.",
60703          "in": "query",
60704          "name": "pretty",
60705          "type": "string",
60706          "uniqueItems": true
60707        },
60708        {
60709          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
60710          "in": "query",
60711          "name": "resourceVersion",
60712          "type": "string",
60713          "uniqueItems": true
60714        },
60715        {
60716          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
60717          "in": "query",
60718          "name": "resourceVersionMatch",
60719          "type": "string",
60720          "uniqueItems": true
60721        },
60722        {
60723          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
60724          "in": "query",
60725          "name": "timeoutSeconds",
60726          "type": "integer",
60727          "uniqueItems": true
60728        },
60729        {
60730          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
60731          "in": "query",
60732          "name": "watch",
60733          "type": "boolean",
60734          "uniqueItems": true
60735        }
60736      ]
60737    },
60738    "/apis/events.k8s.io/v1/watch/namespaces/{namespace}/events": {
60739      "get": {
60740        "consumes": [
60741          "*/*"
60742        ],
60743        "description": "watch individual changes to a list of Event. deprecated: use the 'watch' parameter with a list operation instead.",
60744        "operationId": "watchEventsV1NamespacedEventList",
60745        "produces": [
60746          "application/json",
60747          "application/yaml",
60748          "application/vnd.kubernetes.protobuf",
60749          "application/json;stream=watch",
60750          "application/vnd.kubernetes.protobuf;stream=watch"
60751        ],
60752        "responses": {
60753          "200": {
60754            "description": "OK",
60755            "schema": {
60756              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
60757            }
60758          },
60759          "401": {
60760            "description": "Unauthorized"
60761          }
60762        },
60763        "schemes": [
60764          "https"
60765        ],
60766        "tags": [
60767          "events_v1"
60768        ],
60769        "x-kubernetes-action": "watchlist",
60770        "x-kubernetes-group-version-kind": {
60771          "group": "events.k8s.io",
60772          "kind": "Event",
60773          "version": "v1"
60774        }
60775      },
60776      "parameters": [
60777        {
60778          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
60779          "in": "query",
60780          "name": "allowWatchBookmarks",
60781          "type": "boolean",
60782          "uniqueItems": true
60783        },
60784        {
60785          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
60786          "in": "query",
60787          "name": "continue",
60788          "type": "string",
60789          "uniqueItems": true
60790        },
60791        {
60792          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
60793          "in": "query",
60794          "name": "fieldSelector",
60795          "type": "string",
60796          "uniqueItems": true
60797        },
60798        {
60799          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
60800          "in": "query",
60801          "name": "labelSelector",
60802          "type": "string",
60803          "uniqueItems": true
60804        },
60805        {
60806          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
60807          "in": "query",
60808          "name": "limit",
60809          "type": "integer",
60810          "uniqueItems": true
60811        },
60812        {
60813          "description": "object name and auth scope, such as for teams and projects",
60814          "in": "path",
60815          "name": "namespace",
60816          "required": true,
60817          "type": "string",
60818          "uniqueItems": true
60819        },
60820        {
60821          "description": "If 'true', then the output is pretty printed.",
60822          "in": "query",
60823          "name": "pretty",
60824          "type": "string",
60825          "uniqueItems": true
60826        },
60827        {
60828          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
60829          "in": "query",
60830          "name": "resourceVersion",
60831          "type": "string",
60832          "uniqueItems": true
60833        },
60834        {
60835          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
60836          "in": "query",
60837          "name": "resourceVersionMatch",
60838          "type": "string",
60839          "uniqueItems": true
60840        },
60841        {
60842          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
60843          "in": "query",
60844          "name": "timeoutSeconds",
60845          "type": "integer",
60846          "uniqueItems": true
60847        },
60848        {
60849          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
60850          "in": "query",
60851          "name": "watch",
60852          "type": "boolean",
60853          "uniqueItems": true
60854        }
60855      ]
60856    },
60857    "/apis/events.k8s.io/v1/watch/namespaces/{namespace}/events/{name}": {
60858      "get": {
60859        "consumes": [
60860          "*/*"
60861        ],
60862        "description": "watch changes to an object of kind Event. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.",
60863        "operationId": "watchEventsV1NamespacedEvent",
60864        "produces": [
60865          "application/json",
60866          "application/yaml",
60867          "application/vnd.kubernetes.protobuf",
60868          "application/json;stream=watch",
60869          "application/vnd.kubernetes.protobuf;stream=watch"
60870        ],
60871        "responses": {
60872          "200": {
60873            "description": "OK",
60874            "schema": {
60875              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
60876            }
60877          },
60878          "401": {
60879            "description": "Unauthorized"
60880          }
60881        },
60882        "schemes": [
60883          "https"
60884        ],
60885        "tags": [
60886          "events_v1"
60887        ],
60888        "x-kubernetes-action": "watch",
60889        "x-kubernetes-group-version-kind": {
60890          "group": "events.k8s.io",
60891          "kind": "Event",
60892          "version": "v1"
60893        }
60894      },
60895      "parameters": [
60896        {
60897          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
60898          "in": "query",
60899          "name": "allowWatchBookmarks",
60900          "type": "boolean",
60901          "uniqueItems": true
60902        },
60903        {
60904          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
60905          "in": "query",
60906          "name": "continue",
60907          "type": "string",
60908          "uniqueItems": true
60909        },
60910        {
60911          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
60912          "in": "query",
60913          "name": "fieldSelector",
60914          "type": "string",
60915          "uniqueItems": true
60916        },
60917        {
60918          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
60919          "in": "query",
60920          "name": "labelSelector",
60921          "type": "string",
60922          "uniqueItems": true
60923        },
60924        {
60925          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
60926          "in": "query",
60927          "name": "limit",
60928          "type": "integer",
60929          "uniqueItems": true
60930        },
60931        {
60932          "description": "name of the Event",
60933          "in": "path",
60934          "name": "name",
60935          "required": true,
60936          "type": "string",
60937          "uniqueItems": true
60938        },
60939        {
60940          "description": "object name and auth scope, such as for teams and projects",
60941          "in": "path",
60942          "name": "namespace",
60943          "required": true,
60944          "type": "string",
60945          "uniqueItems": true
60946        },
60947        {
60948          "description": "If 'true', then the output is pretty printed.",
60949          "in": "query",
60950          "name": "pretty",
60951          "type": "string",
60952          "uniqueItems": true
60953        },
60954        {
60955          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
60956          "in": "query",
60957          "name": "resourceVersion",
60958          "type": "string",
60959          "uniqueItems": true
60960        },
60961        {
60962          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
60963          "in": "query",
60964          "name": "resourceVersionMatch",
60965          "type": "string",
60966          "uniqueItems": true
60967        },
60968        {
60969          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
60970          "in": "query",
60971          "name": "timeoutSeconds",
60972          "type": "integer",
60973          "uniqueItems": true
60974        },
60975        {
60976          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
60977          "in": "query",
60978          "name": "watch",
60979          "type": "boolean",
60980          "uniqueItems": true
60981        }
60982      ]
60983    },
60984    "/apis/events.k8s.io/v1beta1/": {
60985      "get": {
60986        "consumes": [
60987          "application/json",
60988          "application/yaml",
60989          "application/vnd.kubernetes.protobuf"
60990        ],
60991        "description": "get available resources",
60992        "operationId": "getEventsV1beta1APIResources",
60993        "produces": [
60994          "application/json",
60995          "application/yaml",
60996          "application/vnd.kubernetes.protobuf"
60997        ],
60998        "responses": {
60999          "200": {
61000            "description": "OK",
61001            "schema": {
61002              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
61003            }
61004          },
61005          "401": {
61006            "description": "Unauthorized"
61007          }
61008        },
61009        "schemes": [
61010          "https"
61011        ],
61012        "tags": [
61013          "events_v1beta1"
61014        ]
61015      }
61016    },
61017    "/apis/events.k8s.io/v1beta1/events": {
61018      "get": {
61019        "consumes": [
61020          "*/*"
61021        ],
61022        "description": "list or watch objects of kind Event",
61023        "operationId": "listEventsV1beta1EventForAllNamespaces",
61024        "produces": [
61025          "application/json",
61026          "application/yaml",
61027          "application/vnd.kubernetes.protobuf",
61028          "application/json;stream=watch",
61029          "application/vnd.kubernetes.protobuf;stream=watch"
61030        ],
61031        "responses": {
61032          "200": {
61033            "description": "OK",
61034            "schema": {
61035              "$ref": "#/definitions/io.k8s.api.events.v1beta1.EventList"
61036            }
61037          },
61038          "401": {
61039            "description": "Unauthorized"
61040          }
61041        },
61042        "schemes": [
61043          "https"
61044        ],
61045        "tags": [
61046          "events_v1beta1"
61047        ],
61048        "x-kubernetes-action": "list",
61049        "x-kubernetes-group-version-kind": {
61050          "group": "events.k8s.io",
61051          "kind": "Event",
61052          "version": "v1beta1"
61053        }
61054      },
61055      "parameters": [
61056        {
61057          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
61058          "in": "query",
61059          "name": "allowWatchBookmarks",
61060          "type": "boolean",
61061          "uniqueItems": true
61062        },
61063        {
61064          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
61065          "in": "query",
61066          "name": "continue",
61067          "type": "string",
61068          "uniqueItems": true
61069        },
61070        {
61071          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
61072          "in": "query",
61073          "name": "fieldSelector",
61074          "type": "string",
61075          "uniqueItems": true
61076        },
61077        {
61078          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
61079          "in": "query",
61080          "name": "labelSelector",
61081          "type": "string",
61082          "uniqueItems": true
61083        },
61084        {
61085          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
61086          "in": "query",
61087          "name": "limit",
61088          "type": "integer",
61089          "uniqueItems": true
61090        },
61091        {
61092          "description": "If 'true', then the output is pretty printed.",
61093          "in": "query",
61094          "name": "pretty",
61095          "type": "string",
61096          "uniqueItems": true
61097        },
61098        {
61099          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
61100          "in": "query",
61101          "name": "resourceVersion",
61102          "type": "string",
61103          "uniqueItems": true
61104        },
61105        {
61106          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
61107          "in": "query",
61108          "name": "resourceVersionMatch",
61109          "type": "string",
61110          "uniqueItems": true
61111        },
61112        {
61113          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
61114          "in": "query",
61115          "name": "timeoutSeconds",
61116          "type": "integer",
61117          "uniqueItems": true
61118        },
61119        {
61120          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
61121          "in": "query",
61122          "name": "watch",
61123          "type": "boolean",
61124          "uniqueItems": true
61125        }
61126      ]
61127    },
61128    "/apis/events.k8s.io/v1beta1/namespaces/{namespace}/events": {
61129      "delete": {
61130        "consumes": [
61131          "*/*"
61132        ],
61133        "description": "delete collection of Event",
61134        "operationId": "deleteEventsV1beta1CollectionNamespacedEvent",
61135        "parameters": [
61136          {
61137            "in": "body",
61138            "name": "body",
61139            "schema": {
61140              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
61141            }
61142          },
61143          {
61144            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
61145            "in": "query",
61146            "name": "continue",
61147            "type": "string",
61148            "uniqueItems": true
61149          },
61150          {
61151            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
61152            "in": "query",
61153            "name": "dryRun",
61154            "type": "string",
61155            "uniqueItems": true
61156          },
61157          {
61158            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
61159            "in": "query",
61160            "name": "fieldSelector",
61161            "type": "string",
61162            "uniqueItems": true
61163          },
61164          {
61165            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
61166            "in": "query",
61167            "name": "gracePeriodSeconds",
61168            "type": "integer",
61169            "uniqueItems": true
61170          },
61171          {
61172            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
61173            "in": "query",
61174            "name": "labelSelector",
61175            "type": "string",
61176            "uniqueItems": true
61177          },
61178          {
61179            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
61180            "in": "query",
61181            "name": "limit",
61182            "type": "integer",
61183            "uniqueItems": true
61184          },
61185          {
61186            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
61187            "in": "query",
61188            "name": "orphanDependents",
61189            "type": "boolean",
61190            "uniqueItems": true
61191          },
61192          {
61193            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
61194            "in": "query",
61195            "name": "propagationPolicy",
61196            "type": "string",
61197            "uniqueItems": true
61198          },
61199          {
61200            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
61201            "in": "query",
61202            "name": "resourceVersion",
61203            "type": "string",
61204            "uniqueItems": true
61205          },
61206          {
61207            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
61208            "in": "query",
61209            "name": "resourceVersionMatch",
61210            "type": "string",
61211            "uniqueItems": true
61212          },
61213          {
61214            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
61215            "in": "query",
61216            "name": "timeoutSeconds",
61217            "type": "integer",
61218            "uniqueItems": true
61219          }
61220        ],
61221        "produces": [
61222          "application/json",
61223          "application/yaml",
61224          "application/vnd.kubernetes.protobuf"
61225        ],
61226        "responses": {
61227          "200": {
61228            "description": "OK",
61229            "schema": {
61230              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
61231            }
61232          },
61233          "401": {
61234            "description": "Unauthorized"
61235          }
61236        },
61237        "schemes": [
61238          "https"
61239        ],
61240        "tags": [
61241          "events_v1beta1"
61242        ],
61243        "x-kubernetes-action": "deletecollection",
61244        "x-kubernetes-group-version-kind": {
61245          "group": "events.k8s.io",
61246          "kind": "Event",
61247          "version": "v1beta1"
61248        }
61249      },
61250      "get": {
61251        "consumes": [
61252          "*/*"
61253        ],
61254        "description": "list or watch objects of kind Event",
61255        "operationId": "listEventsV1beta1NamespacedEvent",
61256        "parameters": [
61257          {
61258            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
61259            "in": "query",
61260            "name": "allowWatchBookmarks",
61261            "type": "boolean",
61262            "uniqueItems": true
61263          },
61264          {
61265            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
61266            "in": "query",
61267            "name": "continue",
61268            "type": "string",
61269            "uniqueItems": true
61270          },
61271          {
61272            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
61273            "in": "query",
61274            "name": "fieldSelector",
61275            "type": "string",
61276            "uniqueItems": true
61277          },
61278          {
61279            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
61280            "in": "query",
61281            "name": "labelSelector",
61282            "type": "string",
61283            "uniqueItems": true
61284          },
61285          {
61286            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
61287            "in": "query",
61288            "name": "limit",
61289            "type": "integer",
61290            "uniqueItems": true
61291          },
61292          {
61293            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
61294            "in": "query",
61295            "name": "resourceVersion",
61296            "type": "string",
61297            "uniqueItems": true
61298          },
61299          {
61300            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
61301            "in": "query",
61302            "name": "resourceVersionMatch",
61303            "type": "string",
61304            "uniqueItems": true
61305          },
61306          {
61307            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
61308            "in": "query",
61309            "name": "timeoutSeconds",
61310            "type": "integer",
61311            "uniqueItems": true
61312          },
61313          {
61314            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
61315            "in": "query",
61316            "name": "watch",
61317            "type": "boolean",
61318            "uniqueItems": true
61319          }
61320        ],
61321        "produces": [
61322          "application/json",
61323          "application/yaml",
61324          "application/vnd.kubernetes.protobuf",
61325          "application/json;stream=watch",
61326          "application/vnd.kubernetes.protobuf;stream=watch"
61327        ],
61328        "responses": {
61329          "200": {
61330            "description": "OK",
61331            "schema": {
61332              "$ref": "#/definitions/io.k8s.api.events.v1beta1.EventList"
61333            }
61334          },
61335          "401": {
61336            "description": "Unauthorized"
61337          }
61338        },
61339        "schemes": [
61340          "https"
61341        ],
61342        "tags": [
61343          "events_v1beta1"
61344        ],
61345        "x-kubernetes-action": "list",
61346        "x-kubernetes-group-version-kind": {
61347          "group": "events.k8s.io",
61348          "kind": "Event",
61349          "version": "v1beta1"
61350        }
61351      },
61352      "parameters": [
61353        {
61354          "description": "object name and auth scope, such as for teams and projects",
61355          "in": "path",
61356          "name": "namespace",
61357          "required": true,
61358          "type": "string",
61359          "uniqueItems": true
61360        },
61361        {
61362          "description": "If 'true', then the output is pretty printed.",
61363          "in": "query",
61364          "name": "pretty",
61365          "type": "string",
61366          "uniqueItems": true
61367        }
61368      ],
61369      "post": {
61370        "consumes": [
61371          "*/*"
61372        ],
61373        "description": "create an Event",
61374        "operationId": "createEventsV1beta1NamespacedEvent",
61375        "parameters": [
61376          {
61377            "in": "body",
61378            "name": "body",
61379            "required": true,
61380            "schema": {
61381              "$ref": "#/definitions/io.k8s.api.events.v1beta1.Event"
61382            }
61383          },
61384          {
61385            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
61386            "in": "query",
61387            "name": "dryRun",
61388            "type": "string",
61389            "uniqueItems": true
61390          },
61391          {
61392            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
61393            "in": "query",
61394            "name": "fieldManager",
61395            "type": "string",
61396            "uniqueItems": true
61397          }
61398        ],
61399        "produces": [
61400          "application/json",
61401          "application/yaml",
61402          "application/vnd.kubernetes.protobuf"
61403        ],
61404        "responses": {
61405          "200": {
61406            "description": "OK",
61407            "schema": {
61408              "$ref": "#/definitions/io.k8s.api.events.v1beta1.Event"
61409            }
61410          },
61411          "201": {
61412            "description": "Created",
61413            "schema": {
61414              "$ref": "#/definitions/io.k8s.api.events.v1beta1.Event"
61415            }
61416          },
61417          "202": {
61418            "description": "Accepted",
61419            "schema": {
61420              "$ref": "#/definitions/io.k8s.api.events.v1beta1.Event"
61421            }
61422          },
61423          "401": {
61424            "description": "Unauthorized"
61425          }
61426        },
61427        "schemes": [
61428          "https"
61429        ],
61430        "tags": [
61431          "events_v1beta1"
61432        ],
61433        "x-kubernetes-action": "post",
61434        "x-kubernetes-group-version-kind": {
61435          "group": "events.k8s.io",
61436          "kind": "Event",
61437          "version": "v1beta1"
61438        }
61439      }
61440    },
61441    "/apis/events.k8s.io/v1beta1/namespaces/{namespace}/events/{name}": {
61442      "delete": {
61443        "consumes": [
61444          "*/*"
61445        ],
61446        "description": "delete an Event",
61447        "operationId": "deleteEventsV1beta1NamespacedEvent",
61448        "parameters": [
61449          {
61450            "in": "body",
61451            "name": "body",
61452            "schema": {
61453              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
61454            }
61455          },
61456          {
61457            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
61458            "in": "query",
61459            "name": "dryRun",
61460            "type": "string",
61461            "uniqueItems": true
61462          },
61463          {
61464            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
61465            "in": "query",
61466            "name": "gracePeriodSeconds",
61467            "type": "integer",
61468            "uniqueItems": true
61469          },
61470          {
61471            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
61472            "in": "query",
61473            "name": "orphanDependents",
61474            "type": "boolean",
61475            "uniqueItems": true
61476          },
61477          {
61478            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
61479            "in": "query",
61480            "name": "propagationPolicy",
61481            "type": "string",
61482            "uniqueItems": true
61483          }
61484        ],
61485        "produces": [
61486          "application/json",
61487          "application/yaml",
61488          "application/vnd.kubernetes.protobuf"
61489        ],
61490        "responses": {
61491          "200": {
61492            "description": "OK",
61493            "schema": {
61494              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
61495            }
61496          },
61497          "202": {
61498            "description": "Accepted",
61499            "schema": {
61500              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
61501            }
61502          },
61503          "401": {
61504            "description": "Unauthorized"
61505          }
61506        },
61507        "schemes": [
61508          "https"
61509        ],
61510        "tags": [
61511          "events_v1beta1"
61512        ],
61513        "x-kubernetes-action": "delete",
61514        "x-kubernetes-group-version-kind": {
61515          "group": "events.k8s.io",
61516          "kind": "Event",
61517          "version": "v1beta1"
61518        }
61519      },
61520      "get": {
61521        "consumes": [
61522          "*/*"
61523        ],
61524        "description": "read the specified Event",
61525        "operationId": "readEventsV1beta1NamespacedEvent",
61526        "produces": [
61527          "application/json",
61528          "application/yaml",
61529          "application/vnd.kubernetes.protobuf"
61530        ],
61531        "responses": {
61532          "200": {
61533            "description": "OK",
61534            "schema": {
61535              "$ref": "#/definitions/io.k8s.api.events.v1beta1.Event"
61536            }
61537          },
61538          "401": {
61539            "description": "Unauthorized"
61540          }
61541        },
61542        "schemes": [
61543          "https"
61544        ],
61545        "tags": [
61546          "events_v1beta1"
61547        ],
61548        "x-kubernetes-action": "get",
61549        "x-kubernetes-group-version-kind": {
61550          "group": "events.k8s.io",
61551          "kind": "Event",
61552          "version": "v1beta1"
61553        }
61554      },
61555      "parameters": [
61556        {
61557          "description": "name of the Event",
61558          "in": "path",
61559          "name": "name",
61560          "required": true,
61561          "type": "string",
61562          "uniqueItems": true
61563        },
61564        {
61565          "description": "object name and auth scope, such as for teams and projects",
61566          "in": "path",
61567          "name": "namespace",
61568          "required": true,
61569          "type": "string",
61570          "uniqueItems": true
61571        },
61572        {
61573          "description": "If 'true', then the output is pretty printed.",
61574          "in": "query",
61575          "name": "pretty",
61576          "type": "string",
61577          "uniqueItems": true
61578        }
61579      ],
61580      "patch": {
61581        "consumes": [
61582          "application/json-patch+json",
61583          "application/merge-patch+json",
61584          "application/strategic-merge-patch+json",
61585          "application/apply-patch+yaml"
61586        ],
61587        "description": "partially update the specified Event",
61588        "operationId": "patchEventsV1beta1NamespacedEvent",
61589        "parameters": [
61590          {
61591            "in": "body",
61592            "name": "body",
61593            "required": true,
61594            "schema": {
61595              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
61596            }
61597          },
61598          {
61599            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
61600            "in": "query",
61601            "name": "dryRun",
61602            "type": "string",
61603            "uniqueItems": true
61604          },
61605          {
61606            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
61607            "in": "query",
61608            "name": "fieldManager",
61609            "type": "string",
61610            "uniqueItems": true
61611          },
61612          {
61613            "description": "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.",
61614            "in": "query",
61615            "name": "force",
61616            "type": "boolean",
61617            "uniqueItems": true
61618          }
61619        ],
61620        "produces": [
61621          "application/json",
61622          "application/yaml",
61623          "application/vnd.kubernetes.protobuf"
61624        ],
61625        "responses": {
61626          "200": {
61627            "description": "OK",
61628            "schema": {
61629              "$ref": "#/definitions/io.k8s.api.events.v1beta1.Event"
61630            }
61631          },
61632          "201": {
61633            "description": "Created",
61634            "schema": {
61635              "$ref": "#/definitions/io.k8s.api.events.v1beta1.Event"
61636            }
61637          },
61638          "401": {
61639            "description": "Unauthorized"
61640          }
61641        },
61642        "schemes": [
61643          "https"
61644        ],
61645        "tags": [
61646          "events_v1beta1"
61647        ],
61648        "x-kubernetes-action": "patch",
61649        "x-kubernetes-group-version-kind": {
61650          "group": "events.k8s.io",
61651          "kind": "Event",
61652          "version": "v1beta1"
61653        }
61654      },
61655      "put": {
61656        "consumes": [
61657          "*/*"
61658        ],
61659        "description": "replace the specified Event",
61660        "operationId": "replaceEventsV1beta1NamespacedEvent",
61661        "parameters": [
61662          {
61663            "in": "body",
61664            "name": "body",
61665            "required": true,
61666            "schema": {
61667              "$ref": "#/definitions/io.k8s.api.events.v1beta1.Event"
61668            }
61669          },
61670          {
61671            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
61672            "in": "query",
61673            "name": "dryRun",
61674            "type": "string",
61675            "uniqueItems": true
61676          },
61677          {
61678            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
61679            "in": "query",
61680            "name": "fieldManager",
61681            "type": "string",
61682            "uniqueItems": true
61683          }
61684        ],
61685        "produces": [
61686          "application/json",
61687          "application/yaml",
61688          "application/vnd.kubernetes.protobuf"
61689        ],
61690        "responses": {
61691          "200": {
61692            "description": "OK",
61693            "schema": {
61694              "$ref": "#/definitions/io.k8s.api.events.v1beta1.Event"
61695            }
61696          },
61697          "201": {
61698            "description": "Created",
61699            "schema": {
61700              "$ref": "#/definitions/io.k8s.api.events.v1beta1.Event"
61701            }
61702          },
61703          "401": {
61704            "description": "Unauthorized"
61705          }
61706        },
61707        "schemes": [
61708          "https"
61709        ],
61710        "tags": [
61711          "events_v1beta1"
61712        ],
61713        "x-kubernetes-action": "put",
61714        "x-kubernetes-group-version-kind": {
61715          "group": "events.k8s.io",
61716          "kind": "Event",
61717          "version": "v1beta1"
61718        }
61719      }
61720    },
61721    "/apis/events.k8s.io/v1beta1/watch/events": {
61722      "get": {
61723        "consumes": [
61724          "*/*"
61725        ],
61726        "description": "watch individual changes to a list of Event. deprecated: use the 'watch' parameter with a list operation instead.",
61727        "operationId": "watchEventsV1beta1EventListForAllNamespaces",
61728        "produces": [
61729          "application/json",
61730          "application/yaml",
61731          "application/vnd.kubernetes.protobuf",
61732          "application/json;stream=watch",
61733          "application/vnd.kubernetes.protobuf;stream=watch"
61734        ],
61735        "responses": {
61736          "200": {
61737            "description": "OK",
61738            "schema": {
61739              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
61740            }
61741          },
61742          "401": {
61743            "description": "Unauthorized"
61744          }
61745        },
61746        "schemes": [
61747          "https"
61748        ],
61749        "tags": [
61750          "events_v1beta1"
61751        ],
61752        "x-kubernetes-action": "watchlist",
61753        "x-kubernetes-group-version-kind": {
61754          "group": "events.k8s.io",
61755          "kind": "Event",
61756          "version": "v1beta1"
61757        }
61758      },
61759      "parameters": [
61760        {
61761          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
61762          "in": "query",
61763          "name": "allowWatchBookmarks",
61764          "type": "boolean",
61765          "uniqueItems": true
61766        },
61767        {
61768          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
61769          "in": "query",
61770          "name": "continue",
61771          "type": "string",
61772          "uniqueItems": true
61773        },
61774        {
61775          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
61776          "in": "query",
61777          "name": "fieldSelector",
61778          "type": "string",
61779          "uniqueItems": true
61780        },
61781        {
61782          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
61783          "in": "query",
61784          "name": "labelSelector",
61785          "type": "string",
61786          "uniqueItems": true
61787        },
61788        {
61789          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
61790          "in": "query",
61791          "name": "limit",
61792          "type": "integer",
61793          "uniqueItems": true
61794        },
61795        {
61796          "description": "If 'true', then the output is pretty printed.",
61797          "in": "query",
61798          "name": "pretty",
61799          "type": "string",
61800          "uniqueItems": true
61801        },
61802        {
61803          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
61804          "in": "query",
61805          "name": "resourceVersion",
61806          "type": "string",
61807          "uniqueItems": true
61808        },
61809        {
61810          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
61811          "in": "query",
61812          "name": "resourceVersionMatch",
61813          "type": "string",
61814          "uniqueItems": true
61815        },
61816        {
61817          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
61818          "in": "query",
61819          "name": "timeoutSeconds",
61820          "type": "integer",
61821          "uniqueItems": true
61822        },
61823        {
61824          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
61825          "in": "query",
61826          "name": "watch",
61827          "type": "boolean",
61828          "uniqueItems": true
61829        }
61830      ]
61831    },
61832    "/apis/events.k8s.io/v1beta1/watch/namespaces/{namespace}/events": {
61833      "get": {
61834        "consumes": [
61835          "*/*"
61836        ],
61837        "description": "watch individual changes to a list of Event. deprecated: use the 'watch' parameter with a list operation instead.",
61838        "operationId": "watchEventsV1beta1NamespacedEventList",
61839        "produces": [
61840          "application/json",
61841          "application/yaml",
61842          "application/vnd.kubernetes.protobuf",
61843          "application/json;stream=watch",
61844          "application/vnd.kubernetes.protobuf;stream=watch"
61845        ],
61846        "responses": {
61847          "200": {
61848            "description": "OK",
61849            "schema": {
61850              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
61851            }
61852          },
61853          "401": {
61854            "description": "Unauthorized"
61855          }
61856        },
61857        "schemes": [
61858          "https"
61859        ],
61860        "tags": [
61861          "events_v1beta1"
61862        ],
61863        "x-kubernetes-action": "watchlist",
61864        "x-kubernetes-group-version-kind": {
61865          "group": "events.k8s.io",
61866          "kind": "Event",
61867          "version": "v1beta1"
61868        }
61869      },
61870      "parameters": [
61871        {
61872          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
61873          "in": "query",
61874          "name": "allowWatchBookmarks",
61875          "type": "boolean",
61876          "uniqueItems": true
61877        },
61878        {
61879          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
61880          "in": "query",
61881          "name": "continue",
61882          "type": "string",
61883          "uniqueItems": true
61884        },
61885        {
61886          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
61887          "in": "query",
61888          "name": "fieldSelector",
61889          "type": "string",
61890          "uniqueItems": true
61891        },
61892        {
61893          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
61894          "in": "query",
61895          "name": "labelSelector",
61896          "type": "string",
61897          "uniqueItems": true
61898        },
61899        {
61900          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
61901          "in": "query",
61902          "name": "limit",
61903          "type": "integer",
61904          "uniqueItems": true
61905        },
61906        {
61907          "description": "object name and auth scope, such as for teams and projects",
61908          "in": "path",
61909          "name": "namespace",
61910          "required": true,
61911          "type": "string",
61912          "uniqueItems": true
61913        },
61914        {
61915          "description": "If 'true', then the output is pretty printed.",
61916          "in": "query",
61917          "name": "pretty",
61918          "type": "string",
61919          "uniqueItems": true
61920        },
61921        {
61922          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
61923          "in": "query",
61924          "name": "resourceVersion",
61925          "type": "string",
61926          "uniqueItems": true
61927        },
61928        {
61929          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
61930          "in": "query",
61931          "name": "resourceVersionMatch",
61932          "type": "string",
61933          "uniqueItems": true
61934        },
61935        {
61936          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
61937          "in": "query",
61938          "name": "timeoutSeconds",
61939          "type": "integer",
61940          "uniqueItems": true
61941        },
61942        {
61943          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
61944          "in": "query",
61945          "name": "watch",
61946          "type": "boolean",
61947          "uniqueItems": true
61948        }
61949      ]
61950    },
61951    "/apis/events.k8s.io/v1beta1/watch/namespaces/{namespace}/events/{name}": {
61952      "get": {
61953        "consumes": [
61954          "*/*"
61955        ],
61956        "description": "watch changes to an object of kind Event. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.",
61957        "operationId": "watchEventsV1beta1NamespacedEvent",
61958        "produces": [
61959          "application/json",
61960          "application/yaml",
61961          "application/vnd.kubernetes.protobuf",
61962          "application/json;stream=watch",
61963          "application/vnd.kubernetes.protobuf;stream=watch"
61964        ],
61965        "responses": {
61966          "200": {
61967            "description": "OK",
61968            "schema": {
61969              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
61970            }
61971          },
61972          "401": {
61973            "description": "Unauthorized"
61974          }
61975        },
61976        "schemes": [
61977          "https"
61978        ],
61979        "tags": [
61980          "events_v1beta1"
61981        ],
61982        "x-kubernetes-action": "watch",
61983        "x-kubernetes-group-version-kind": {
61984          "group": "events.k8s.io",
61985          "kind": "Event",
61986          "version": "v1beta1"
61987        }
61988      },
61989      "parameters": [
61990        {
61991          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
61992          "in": "query",
61993          "name": "allowWatchBookmarks",
61994          "type": "boolean",
61995          "uniqueItems": true
61996        },
61997        {
61998          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
61999          "in": "query",
62000          "name": "continue",
62001          "type": "string",
62002          "uniqueItems": true
62003        },
62004        {
62005          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
62006          "in": "query",
62007          "name": "fieldSelector",
62008          "type": "string",
62009          "uniqueItems": true
62010        },
62011        {
62012          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
62013          "in": "query",
62014          "name": "labelSelector",
62015          "type": "string",
62016          "uniqueItems": true
62017        },
62018        {
62019          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
62020          "in": "query",
62021          "name": "limit",
62022          "type": "integer",
62023          "uniqueItems": true
62024        },
62025        {
62026          "description": "name of the Event",
62027          "in": "path",
62028          "name": "name",
62029          "required": true,
62030          "type": "string",
62031          "uniqueItems": true
62032        },
62033        {
62034          "description": "object name and auth scope, such as for teams and projects",
62035          "in": "path",
62036          "name": "namespace",
62037          "required": true,
62038          "type": "string",
62039          "uniqueItems": true
62040        },
62041        {
62042          "description": "If 'true', then the output is pretty printed.",
62043          "in": "query",
62044          "name": "pretty",
62045          "type": "string",
62046          "uniqueItems": true
62047        },
62048        {
62049          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
62050          "in": "query",
62051          "name": "resourceVersion",
62052          "type": "string",
62053          "uniqueItems": true
62054        },
62055        {
62056          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
62057          "in": "query",
62058          "name": "resourceVersionMatch",
62059          "type": "string",
62060          "uniqueItems": true
62061        },
62062        {
62063          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
62064          "in": "query",
62065          "name": "timeoutSeconds",
62066          "type": "integer",
62067          "uniqueItems": true
62068        },
62069        {
62070          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
62071          "in": "query",
62072          "name": "watch",
62073          "type": "boolean",
62074          "uniqueItems": true
62075        }
62076      ]
62077    },
62078    "/apis/flowcontrol.apiserver.k8s.io/": {
62079      "get": {
62080        "consumes": [
62081          "application/json",
62082          "application/yaml",
62083          "application/vnd.kubernetes.protobuf"
62084        ],
62085        "description": "get information of a group",
62086        "operationId": "getFlowcontrolApiserverAPIGroup",
62087        "produces": [
62088          "application/json",
62089          "application/yaml",
62090          "application/vnd.kubernetes.protobuf"
62091        ],
62092        "responses": {
62093          "200": {
62094            "description": "OK",
62095            "schema": {
62096              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup"
62097            }
62098          },
62099          "401": {
62100            "description": "Unauthorized"
62101          }
62102        },
62103        "schemes": [
62104          "https"
62105        ],
62106        "tags": [
62107          "flowcontrolApiserver"
62108        ]
62109      }
62110    },
62111    "/apis/flowcontrol.apiserver.k8s.io/v1beta1/": {
62112      "get": {
62113        "consumes": [
62114          "application/json",
62115          "application/yaml",
62116          "application/vnd.kubernetes.protobuf"
62117        ],
62118        "description": "get available resources",
62119        "operationId": "getFlowcontrolApiserverV1beta1APIResources",
62120        "produces": [
62121          "application/json",
62122          "application/yaml",
62123          "application/vnd.kubernetes.protobuf"
62124        ],
62125        "responses": {
62126          "200": {
62127            "description": "OK",
62128            "schema": {
62129              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
62130            }
62131          },
62132          "401": {
62133            "description": "Unauthorized"
62134          }
62135        },
62136        "schemes": [
62137          "https"
62138        ],
62139        "tags": [
62140          "flowcontrolApiserver_v1beta1"
62141        ]
62142      }
62143    },
62144    "/apis/flowcontrol.apiserver.k8s.io/v1beta1/flowschemas": {
62145      "delete": {
62146        "consumes": [
62147          "*/*"
62148        ],
62149        "description": "delete collection of FlowSchema",
62150        "operationId": "deleteFlowcontrolApiserverV1beta1CollectionFlowSchema",
62151        "parameters": [
62152          {
62153            "in": "body",
62154            "name": "body",
62155            "schema": {
62156              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
62157            }
62158          },
62159          {
62160            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
62161            "in": "query",
62162            "name": "continue",
62163            "type": "string",
62164            "uniqueItems": true
62165          },
62166          {
62167            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
62168            "in": "query",
62169            "name": "dryRun",
62170            "type": "string",
62171            "uniqueItems": true
62172          },
62173          {
62174            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
62175            "in": "query",
62176            "name": "fieldSelector",
62177            "type": "string",
62178            "uniqueItems": true
62179          },
62180          {
62181            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
62182            "in": "query",
62183            "name": "gracePeriodSeconds",
62184            "type": "integer",
62185            "uniqueItems": true
62186          },
62187          {
62188            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
62189            "in": "query",
62190            "name": "labelSelector",
62191            "type": "string",
62192            "uniqueItems": true
62193          },
62194          {
62195            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
62196            "in": "query",
62197            "name": "limit",
62198            "type": "integer",
62199            "uniqueItems": true
62200          },
62201          {
62202            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
62203            "in": "query",
62204            "name": "orphanDependents",
62205            "type": "boolean",
62206            "uniqueItems": true
62207          },
62208          {
62209            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
62210            "in": "query",
62211            "name": "propagationPolicy",
62212            "type": "string",
62213            "uniqueItems": true
62214          },
62215          {
62216            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
62217            "in": "query",
62218            "name": "resourceVersion",
62219            "type": "string",
62220            "uniqueItems": true
62221          },
62222          {
62223            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
62224            "in": "query",
62225            "name": "resourceVersionMatch",
62226            "type": "string",
62227            "uniqueItems": true
62228          },
62229          {
62230            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
62231            "in": "query",
62232            "name": "timeoutSeconds",
62233            "type": "integer",
62234            "uniqueItems": true
62235          }
62236        ],
62237        "produces": [
62238          "application/json",
62239          "application/yaml",
62240          "application/vnd.kubernetes.protobuf"
62241        ],
62242        "responses": {
62243          "200": {
62244            "description": "OK",
62245            "schema": {
62246              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
62247            }
62248          },
62249          "401": {
62250            "description": "Unauthorized"
62251          }
62252        },
62253        "schemes": [
62254          "https"
62255        ],
62256        "tags": [
62257          "flowcontrolApiserver_v1beta1"
62258        ],
62259        "x-kubernetes-action": "deletecollection",
62260        "x-kubernetes-group-version-kind": {
62261          "group": "flowcontrol.apiserver.k8s.io",
62262          "kind": "FlowSchema",
62263          "version": "v1beta1"
62264        }
62265      },
62266      "get": {
62267        "consumes": [
62268          "*/*"
62269        ],
62270        "description": "list or watch objects of kind FlowSchema",
62271        "operationId": "listFlowcontrolApiserverV1beta1FlowSchema",
62272        "parameters": [
62273          {
62274            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
62275            "in": "query",
62276            "name": "allowWatchBookmarks",
62277            "type": "boolean",
62278            "uniqueItems": true
62279          },
62280          {
62281            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
62282            "in": "query",
62283            "name": "continue",
62284            "type": "string",
62285            "uniqueItems": true
62286          },
62287          {
62288            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
62289            "in": "query",
62290            "name": "fieldSelector",
62291            "type": "string",
62292            "uniqueItems": true
62293          },
62294          {
62295            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
62296            "in": "query",
62297            "name": "labelSelector",
62298            "type": "string",
62299            "uniqueItems": true
62300          },
62301          {
62302            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
62303            "in": "query",
62304            "name": "limit",
62305            "type": "integer",
62306            "uniqueItems": true
62307          },
62308          {
62309            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
62310            "in": "query",
62311            "name": "resourceVersion",
62312            "type": "string",
62313            "uniqueItems": true
62314          },
62315          {
62316            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
62317            "in": "query",
62318            "name": "resourceVersionMatch",
62319            "type": "string",
62320            "uniqueItems": true
62321          },
62322          {
62323            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
62324            "in": "query",
62325            "name": "timeoutSeconds",
62326            "type": "integer",
62327            "uniqueItems": true
62328          },
62329          {
62330            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
62331            "in": "query",
62332            "name": "watch",
62333            "type": "boolean",
62334            "uniqueItems": true
62335          }
62336        ],
62337        "produces": [
62338          "application/json",
62339          "application/yaml",
62340          "application/vnd.kubernetes.protobuf",
62341          "application/json;stream=watch",
62342          "application/vnd.kubernetes.protobuf;stream=watch"
62343        ],
62344        "responses": {
62345          "200": {
62346            "description": "OK",
62347            "schema": {
62348              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.FlowSchemaList"
62349            }
62350          },
62351          "401": {
62352            "description": "Unauthorized"
62353          }
62354        },
62355        "schemes": [
62356          "https"
62357        ],
62358        "tags": [
62359          "flowcontrolApiserver_v1beta1"
62360        ],
62361        "x-kubernetes-action": "list",
62362        "x-kubernetes-group-version-kind": {
62363          "group": "flowcontrol.apiserver.k8s.io",
62364          "kind": "FlowSchema",
62365          "version": "v1beta1"
62366        }
62367      },
62368      "parameters": [
62369        {
62370          "description": "If 'true', then the output is pretty printed.",
62371          "in": "query",
62372          "name": "pretty",
62373          "type": "string",
62374          "uniqueItems": true
62375        }
62376      ],
62377      "post": {
62378        "consumes": [
62379          "*/*"
62380        ],
62381        "description": "create a FlowSchema",
62382        "operationId": "createFlowcontrolApiserverV1beta1FlowSchema",
62383        "parameters": [
62384          {
62385            "in": "body",
62386            "name": "body",
62387            "required": true,
62388            "schema": {
62389              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.FlowSchema"
62390            }
62391          },
62392          {
62393            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
62394            "in": "query",
62395            "name": "dryRun",
62396            "type": "string",
62397            "uniqueItems": true
62398          },
62399          {
62400            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
62401            "in": "query",
62402            "name": "fieldManager",
62403            "type": "string",
62404            "uniqueItems": true
62405          }
62406        ],
62407        "produces": [
62408          "application/json",
62409          "application/yaml",
62410          "application/vnd.kubernetes.protobuf"
62411        ],
62412        "responses": {
62413          "200": {
62414            "description": "OK",
62415            "schema": {
62416              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.FlowSchema"
62417            }
62418          },
62419          "201": {
62420            "description": "Created",
62421            "schema": {
62422              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.FlowSchema"
62423            }
62424          },
62425          "202": {
62426            "description": "Accepted",
62427            "schema": {
62428              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.FlowSchema"
62429            }
62430          },
62431          "401": {
62432            "description": "Unauthorized"
62433          }
62434        },
62435        "schemes": [
62436          "https"
62437        ],
62438        "tags": [
62439          "flowcontrolApiserver_v1beta1"
62440        ],
62441        "x-kubernetes-action": "post",
62442        "x-kubernetes-group-version-kind": {
62443          "group": "flowcontrol.apiserver.k8s.io",
62444          "kind": "FlowSchema",
62445          "version": "v1beta1"
62446        }
62447      }
62448    },
62449    "/apis/flowcontrol.apiserver.k8s.io/v1beta1/flowschemas/{name}": {
62450      "delete": {
62451        "consumes": [
62452          "*/*"
62453        ],
62454        "description": "delete a FlowSchema",
62455        "operationId": "deleteFlowcontrolApiserverV1beta1FlowSchema",
62456        "parameters": [
62457          {
62458            "in": "body",
62459            "name": "body",
62460            "schema": {
62461              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
62462            }
62463          },
62464          {
62465            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
62466            "in": "query",
62467            "name": "dryRun",
62468            "type": "string",
62469            "uniqueItems": true
62470          },
62471          {
62472            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
62473            "in": "query",
62474            "name": "gracePeriodSeconds",
62475            "type": "integer",
62476            "uniqueItems": true
62477          },
62478          {
62479            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
62480            "in": "query",
62481            "name": "orphanDependents",
62482            "type": "boolean",
62483            "uniqueItems": true
62484          },
62485          {
62486            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
62487            "in": "query",
62488            "name": "propagationPolicy",
62489            "type": "string",
62490            "uniqueItems": true
62491          }
62492        ],
62493        "produces": [
62494          "application/json",
62495          "application/yaml",
62496          "application/vnd.kubernetes.protobuf"
62497        ],
62498        "responses": {
62499          "200": {
62500            "description": "OK",
62501            "schema": {
62502              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
62503            }
62504          },
62505          "202": {
62506            "description": "Accepted",
62507            "schema": {
62508              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
62509            }
62510          },
62511          "401": {
62512            "description": "Unauthorized"
62513          }
62514        },
62515        "schemes": [
62516          "https"
62517        ],
62518        "tags": [
62519          "flowcontrolApiserver_v1beta1"
62520        ],
62521        "x-kubernetes-action": "delete",
62522        "x-kubernetes-group-version-kind": {
62523          "group": "flowcontrol.apiserver.k8s.io",
62524          "kind": "FlowSchema",
62525          "version": "v1beta1"
62526        }
62527      },
62528      "get": {
62529        "consumes": [
62530          "*/*"
62531        ],
62532        "description": "read the specified FlowSchema",
62533        "operationId": "readFlowcontrolApiserverV1beta1FlowSchema",
62534        "produces": [
62535          "application/json",
62536          "application/yaml",
62537          "application/vnd.kubernetes.protobuf"
62538        ],
62539        "responses": {
62540          "200": {
62541            "description": "OK",
62542            "schema": {
62543              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.FlowSchema"
62544            }
62545          },
62546          "401": {
62547            "description": "Unauthorized"
62548          }
62549        },
62550        "schemes": [
62551          "https"
62552        ],
62553        "tags": [
62554          "flowcontrolApiserver_v1beta1"
62555        ],
62556        "x-kubernetes-action": "get",
62557        "x-kubernetes-group-version-kind": {
62558          "group": "flowcontrol.apiserver.k8s.io",
62559          "kind": "FlowSchema",
62560          "version": "v1beta1"
62561        }
62562      },
62563      "parameters": [
62564        {
62565          "description": "name of the FlowSchema",
62566          "in": "path",
62567          "name": "name",
62568          "required": true,
62569          "type": "string",
62570          "uniqueItems": true
62571        },
62572        {
62573          "description": "If 'true', then the output is pretty printed.",
62574          "in": "query",
62575          "name": "pretty",
62576          "type": "string",
62577          "uniqueItems": true
62578        }
62579      ],
62580      "patch": {
62581        "consumes": [
62582          "application/json-patch+json",
62583          "application/merge-patch+json",
62584          "application/strategic-merge-patch+json",
62585          "application/apply-patch+yaml"
62586        ],
62587        "description": "partially update the specified FlowSchema",
62588        "operationId": "patchFlowcontrolApiserverV1beta1FlowSchema",
62589        "parameters": [
62590          {
62591            "in": "body",
62592            "name": "body",
62593            "required": true,
62594            "schema": {
62595              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
62596            }
62597          },
62598          {
62599            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
62600            "in": "query",
62601            "name": "dryRun",
62602            "type": "string",
62603            "uniqueItems": true
62604          },
62605          {
62606            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
62607            "in": "query",
62608            "name": "fieldManager",
62609            "type": "string",
62610            "uniqueItems": true
62611          },
62612          {
62613            "description": "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.",
62614            "in": "query",
62615            "name": "force",
62616            "type": "boolean",
62617            "uniqueItems": true
62618          }
62619        ],
62620        "produces": [
62621          "application/json",
62622          "application/yaml",
62623          "application/vnd.kubernetes.protobuf"
62624        ],
62625        "responses": {
62626          "200": {
62627            "description": "OK",
62628            "schema": {
62629              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.FlowSchema"
62630            }
62631          },
62632          "201": {
62633            "description": "Created",
62634            "schema": {
62635              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.FlowSchema"
62636            }
62637          },
62638          "401": {
62639            "description": "Unauthorized"
62640          }
62641        },
62642        "schemes": [
62643          "https"
62644        ],
62645        "tags": [
62646          "flowcontrolApiserver_v1beta1"
62647        ],
62648        "x-kubernetes-action": "patch",
62649        "x-kubernetes-group-version-kind": {
62650          "group": "flowcontrol.apiserver.k8s.io",
62651          "kind": "FlowSchema",
62652          "version": "v1beta1"
62653        }
62654      },
62655      "put": {
62656        "consumes": [
62657          "*/*"
62658        ],
62659        "description": "replace the specified FlowSchema",
62660        "operationId": "replaceFlowcontrolApiserverV1beta1FlowSchema",
62661        "parameters": [
62662          {
62663            "in": "body",
62664            "name": "body",
62665            "required": true,
62666            "schema": {
62667              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.FlowSchema"
62668            }
62669          },
62670          {
62671            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
62672            "in": "query",
62673            "name": "dryRun",
62674            "type": "string",
62675            "uniqueItems": true
62676          },
62677          {
62678            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
62679            "in": "query",
62680            "name": "fieldManager",
62681            "type": "string",
62682            "uniqueItems": true
62683          }
62684        ],
62685        "produces": [
62686          "application/json",
62687          "application/yaml",
62688          "application/vnd.kubernetes.protobuf"
62689        ],
62690        "responses": {
62691          "200": {
62692            "description": "OK",
62693            "schema": {
62694              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.FlowSchema"
62695            }
62696          },
62697          "201": {
62698            "description": "Created",
62699            "schema": {
62700              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.FlowSchema"
62701            }
62702          },
62703          "401": {
62704            "description": "Unauthorized"
62705          }
62706        },
62707        "schemes": [
62708          "https"
62709        ],
62710        "tags": [
62711          "flowcontrolApiserver_v1beta1"
62712        ],
62713        "x-kubernetes-action": "put",
62714        "x-kubernetes-group-version-kind": {
62715          "group": "flowcontrol.apiserver.k8s.io",
62716          "kind": "FlowSchema",
62717          "version": "v1beta1"
62718        }
62719      }
62720    },
62721    "/apis/flowcontrol.apiserver.k8s.io/v1beta1/flowschemas/{name}/status": {
62722      "get": {
62723        "consumes": [
62724          "*/*"
62725        ],
62726        "description": "read status of the specified FlowSchema",
62727        "operationId": "readFlowcontrolApiserverV1beta1FlowSchemaStatus",
62728        "produces": [
62729          "application/json",
62730          "application/yaml",
62731          "application/vnd.kubernetes.protobuf"
62732        ],
62733        "responses": {
62734          "200": {
62735            "description": "OK",
62736            "schema": {
62737              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.FlowSchema"
62738            }
62739          },
62740          "401": {
62741            "description": "Unauthorized"
62742          }
62743        },
62744        "schemes": [
62745          "https"
62746        ],
62747        "tags": [
62748          "flowcontrolApiserver_v1beta1"
62749        ],
62750        "x-kubernetes-action": "get",
62751        "x-kubernetes-group-version-kind": {
62752          "group": "flowcontrol.apiserver.k8s.io",
62753          "kind": "FlowSchema",
62754          "version": "v1beta1"
62755        }
62756      },
62757      "parameters": [
62758        {
62759          "description": "name of the FlowSchema",
62760          "in": "path",
62761          "name": "name",
62762          "required": true,
62763          "type": "string",
62764          "uniqueItems": true
62765        },
62766        {
62767          "description": "If 'true', then the output is pretty printed.",
62768          "in": "query",
62769          "name": "pretty",
62770          "type": "string",
62771          "uniqueItems": true
62772        }
62773      ],
62774      "patch": {
62775        "consumes": [
62776          "application/json-patch+json",
62777          "application/merge-patch+json",
62778          "application/strategic-merge-patch+json",
62779          "application/apply-patch+yaml"
62780        ],
62781        "description": "partially update status of the specified FlowSchema",
62782        "operationId": "patchFlowcontrolApiserverV1beta1FlowSchemaStatus",
62783        "parameters": [
62784          {
62785            "in": "body",
62786            "name": "body",
62787            "required": true,
62788            "schema": {
62789              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
62790            }
62791          },
62792          {
62793            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
62794            "in": "query",
62795            "name": "dryRun",
62796            "type": "string",
62797            "uniqueItems": true
62798          },
62799          {
62800            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
62801            "in": "query",
62802            "name": "fieldManager",
62803            "type": "string",
62804            "uniqueItems": true
62805          },
62806          {
62807            "description": "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.",
62808            "in": "query",
62809            "name": "force",
62810            "type": "boolean",
62811            "uniqueItems": true
62812          }
62813        ],
62814        "produces": [
62815          "application/json",
62816          "application/yaml",
62817          "application/vnd.kubernetes.protobuf"
62818        ],
62819        "responses": {
62820          "200": {
62821            "description": "OK",
62822            "schema": {
62823              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.FlowSchema"
62824            }
62825          },
62826          "201": {
62827            "description": "Created",
62828            "schema": {
62829              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.FlowSchema"
62830            }
62831          },
62832          "401": {
62833            "description": "Unauthorized"
62834          }
62835        },
62836        "schemes": [
62837          "https"
62838        ],
62839        "tags": [
62840          "flowcontrolApiserver_v1beta1"
62841        ],
62842        "x-kubernetes-action": "patch",
62843        "x-kubernetes-group-version-kind": {
62844          "group": "flowcontrol.apiserver.k8s.io",
62845          "kind": "FlowSchema",
62846          "version": "v1beta1"
62847        }
62848      },
62849      "put": {
62850        "consumes": [
62851          "*/*"
62852        ],
62853        "description": "replace status of the specified FlowSchema",
62854        "operationId": "replaceFlowcontrolApiserverV1beta1FlowSchemaStatus",
62855        "parameters": [
62856          {
62857            "in": "body",
62858            "name": "body",
62859            "required": true,
62860            "schema": {
62861              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.FlowSchema"
62862            }
62863          },
62864          {
62865            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
62866            "in": "query",
62867            "name": "dryRun",
62868            "type": "string",
62869            "uniqueItems": true
62870          },
62871          {
62872            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
62873            "in": "query",
62874            "name": "fieldManager",
62875            "type": "string",
62876            "uniqueItems": true
62877          }
62878        ],
62879        "produces": [
62880          "application/json",
62881          "application/yaml",
62882          "application/vnd.kubernetes.protobuf"
62883        ],
62884        "responses": {
62885          "200": {
62886            "description": "OK",
62887            "schema": {
62888              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.FlowSchema"
62889            }
62890          },
62891          "201": {
62892            "description": "Created",
62893            "schema": {
62894              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.FlowSchema"
62895            }
62896          },
62897          "401": {
62898            "description": "Unauthorized"
62899          }
62900        },
62901        "schemes": [
62902          "https"
62903        ],
62904        "tags": [
62905          "flowcontrolApiserver_v1beta1"
62906        ],
62907        "x-kubernetes-action": "put",
62908        "x-kubernetes-group-version-kind": {
62909          "group": "flowcontrol.apiserver.k8s.io",
62910          "kind": "FlowSchema",
62911          "version": "v1beta1"
62912        }
62913      }
62914    },
62915    "/apis/flowcontrol.apiserver.k8s.io/v1beta1/prioritylevelconfigurations": {
62916      "delete": {
62917        "consumes": [
62918          "*/*"
62919        ],
62920        "description": "delete collection of PriorityLevelConfiguration",
62921        "operationId": "deleteFlowcontrolApiserverV1beta1CollectionPriorityLevelConfiguration",
62922        "parameters": [
62923          {
62924            "in": "body",
62925            "name": "body",
62926            "schema": {
62927              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
62928            }
62929          },
62930          {
62931            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
62932            "in": "query",
62933            "name": "continue",
62934            "type": "string",
62935            "uniqueItems": true
62936          },
62937          {
62938            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
62939            "in": "query",
62940            "name": "dryRun",
62941            "type": "string",
62942            "uniqueItems": true
62943          },
62944          {
62945            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
62946            "in": "query",
62947            "name": "fieldSelector",
62948            "type": "string",
62949            "uniqueItems": true
62950          },
62951          {
62952            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
62953            "in": "query",
62954            "name": "gracePeriodSeconds",
62955            "type": "integer",
62956            "uniqueItems": true
62957          },
62958          {
62959            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
62960            "in": "query",
62961            "name": "labelSelector",
62962            "type": "string",
62963            "uniqueItems": true
62964          },
62965          {
62966            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
62967            "in": "query",
62968            "name": "limit",
62969            "type": "integer",
62970            "uniqueItems": true
62971          },
62972          {
62973            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
62974            "in": "query",
62975            "name": "orphanDependents",
62976            "type": "boolean",
62977            "uniqueItems": true
62978          },
62979          {
62980            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
62981            "in": "query",
62982            "name": "propagationPolicy",
62983            "type": "string",
62984            "uniqueItems": true
62985          },
62986          {
62987            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
62988            "in": "query",
62989            "name": "resourceVersion",
62990            "type": "string",
62991            "uniqueItems": true
62992          },
62993          {
62994            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
62995            "in": "query",
62996            "name": "resourceVersionMatch",
62997            "type": "string",
62998            "uniqueItems": true
62999          },
63000          {
63001            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
63002            "in": "query",
63003            "name": "timeoutSeconds",
63004            "type": "integer",
63005            "uniqueItems": true
63006          }
63007        ],
63008        "produces": [
63009          "application/json",
63010          "application/yaml",
63011          "application/vnd.kubernetes.protobuf"
63012        ],
63013        "responses": {
63014          "200": {
63015            "description": "OK",
63016            "schema": {
63017              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
63018            }
63019          },
63020          "401": {
63021            "description": "Unauthorized"
63022          }
63023        },
63024        "schemes": [
63025          "https"
63026        ],
63027        "tags": [
63028          "flowcontrolApiserver_v1beta1"
63029        ],
63030        "x-kubernetes-action": "deletecollection",
63031        "x-kubernetes-group-version-kind": {
63032          "group": "flowcontrol.apiserver.k8s.io",
63033          "kind": "PriorityLevelConfiguration",
63034          "version": "v1beta1"
63035        }
63036      },
63037      "get": {
63038        "consumes": [
63039          "*/*"
63040        ],
63041        "description": "list or watch objects of kind PriorityLevelConfiguration",
63042        "operationId": "listFlowcontrolApiserverV1beta1PriorityLevelConfiguration",
63043        "parameters": [
63044          {
63045            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
63046            "in": "query",
63047            "name": "allowWatchBookmarks",
63048            "type": "boolean",
63049            "uniqueItems": true
63050          },
63051          {
63052            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
63053            "in": "query",
63054            "name": "continue",
63055            "type": "string",
63056            "uniqueItems": true
63057          },
63058          {
63059            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
63060            "in": "query",
63061            "name": "fieldSelector",
63062            "type": "string",
63063            "uniqueItems": true
63064          },
63065          {
63066            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
63067            "in": "query",
63068            "name": "labelSelector",
63069            "type": "string",
63070            "uniqueItems": true
63071          },
63072          {
63073            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
63074            "in": "query",
63075            "name": "limit",
63076            "type": "integer",
63077            "uniqueItems": true
63078          },
63079          {
63080            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
63081            "in": "query",
63082            "name": "resourceVersion",
63083            "type": "string",
63084            "uniqueItems": true
63085          },
63086          {
63087            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
63088            "in": "query",
63089            "name": "resourceVersionMatch",
63090            "type": "string",
63091            "uniqueItems": true
63092          },
63093          {
63094            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
63095            "in": "query",
63096            "name": "timeoutSeconds",
63097            "type": "integer",
63098            "uniqueItems": true
63099          },
63100          {
63101            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
63102            "in": "query",
63103            "name": "watch",
63104            "type": "boolean",
63105            "uniqueItems": true
63106          }
63107        ],
63108        "produces": [
63109          "application/json",
63110          "application/yaml",
63111          "application/vnd.kubernetes.protobuf",
63112          "application/json;stream=watch",
63113          "application/vnd.kubernetes.protobuf;stream=watch"
63114        ],
63115        "responses": {
63116          "200": {
63117            "description": "OK",
63118            "schema": {
63119              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.PriorityLevelConfigurationList"
63120            }
63121          },
63122          "401": {
63123            "description": "Unauthorized"
63124          }
63125        },
63126        "schemes": [
63127          "https"
63128        ],
63129        "tags": [
63130          "flowcontrolApiserver_v1beta1"
63131        ],
63132        "x-kubernetes-action": "list",
63133        "x-kubernetes-group-version-kind": {
63134          "group": "flowcontrol.apiserver.k8s.io",
63135          "kind": "PriorityLevelConfiguration",
63136          "version": "v1beta1"
63137        }
63138      },
63139      "parameters": [
63140        {
63141          "description": "If 'true', then the output is pretty printed.",
63142          "in": "query",
63143          "name": "pretty",
63144          "type": "string",
63145          "uniqueItems": true
63146        }
63147      ],
63148      "post": {
63149        "consumes": [
63150          "*/*"
63151        ],
63152        "description": "create a PriorityLevelConfiguration",
63153        "operationId": "createFlowcontrolApiserverV1beta1PriorityLevelConfiguration",
63154        "parameters": [
63155          {
63156            "in": "body",
63157            "name": "body",
63158            "required": true,
63159            "schema": {
63160              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.PriorityLevelConfiguration"
63161            }
63162          },
63163          {
63164            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
63165            "in": "query",
63166            "name": "dryRun",
63167            "type": "string",
63168            "uniqueItems": true
63169          },
63170          {
63171            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
63172            "in": "query",
63173            "name": "fieldManager",
63174            "type": "string",
63175            "uniqueItems": true
63176          }
63177        ],
63178        "produces": [
63179          "application/json",
63180          "application/yaml",
63181          "application/vnd.kubernetes.protobuf"
63182        ],
63183        "responses": {
63184          "200": {
63185            "description": "OK",
63186            "schema": {
63187              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.PriorityLevelConfiguration"
63188            }
63189          },
63190          "201": {
63191            "description": "Created",
63192            "schema": {
63193              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.PriorityLevelConfiguration"
63194            }
63195          },
63196          "202": {
63197            "description": "Accepted",
63198            "schema": {
63199              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.PriorityLevelConfiguration"
63200            }
63201          },
63202          "401": {
63203            "description": "Unauthorized"
63204          }
63205        },
63206        "schemes": [
63207          "https"
63208        ],
63209        "tags": [
63210          "flowcontrolApiserver_v1beta1"
63211        ],
63212        "x-kubernetes-action": "post",
63213        "x-kubernetes-group-version-kind": {
63214          "group": "flowcontrol.apiserver.k8s.io",
63215          "kind": "PriorityLevelConfiguration",
63216          "version": "v1beta1"
63217        }
63218      }
63219    },
63220    "/apis/flowcontrol.apiserver.k8s.io/v1beta1/prioritylevelconfigurations/{name}": {
63221      "delete": {
63222        "consumes": [
63223          "*/*"
63224        ],
63225        "description": "delete a PriorityLevelConfiguration",
63226        "operationId": "deleteFlowcontrolApiserverV1beta1PriorityLevelConfiguration",
63227        "parameters": [
63228          {
63229            "in": "body",
63230            "name": "body",
63231            "schema": {
63232              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
63233            }
63234          },
63235          {
63236            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
63237            "in": "query",
63238            "name": "dryRun",
63239            "type": "string",
63240            "uniqueItems": true
63241          },
63242          {
63243            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
63244            "in": "query",
63245            "name": "gracePeriodSeconds",
63246            "type": "integer",
63247            "uniqueItems": true
63248          },
63249          {
63250            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
63251            "in": "query",
63252            "name": "orphanDependents",
63253            "type": "boolean",
63254            "uniqueItems": true
63255          },
63256          {
63257            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
63258            "in": "query",
63259            "name": "propagationPolicy",
63260            "type": "string",
63261            "uniqueItems": true
63262          }
63263        ],
63264        "produces": [
63265          "application/json",
63266          "application/yaml",
63267          "application/vnd.kubernetes.protobuf"
63268        ],
63269        "responses": {
63270          "200": {
63271            "description": "OK",
63272            "schema": {
63273              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
63274            }
63275          },
63276          "202": {
63277            "description": "Accepted",
63278            "schema": {
63279              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
63280            }
63281          },
63282          "401": {
63283            "description": "Unauthorized"
63284          }
63285        },
63286        "schemes": [
63287          "https"
63288        ],
63289        "tags": [
63290          "flowcontrolApiserver_v1beta1"
63291        ],
63292        "x-kubernetes-action": "delete",
63293        "x-kubernetes-group-version-kind": {
63294          "group": "flowcontrol.apiserver.k8s.io",
63295          "kind": "PriorityLevelConfiguration",
63296          "version": "v1beta1"
63297        }
63298      },
63299      "get": {
63300        "consumes": [
63301          "*/*"
63302        ],
63303        "description": "read the specified PriorityLevelConfiguration",
63304        "operationId": "readFlowcontrolApiserverV1beta1PriorityLevelConfiguration",
63305        "produces": [
63306          "application/json",
63307          "application/yaml",
63308          "application/vnd.kubernetes.protobuf"
63309        ],
63310        "responses": {
63311          "200": {
63312            "description": "OK",
63313            "schema": {
63314              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.PriorityLevelConfiguration"
63315            }
63316          },
63317          "401": {
63318            "description": "Unauthorized"
63319          }
63320        },
63321        "schemes": [
63322          "https"
63323        ],
63324        "tags": [
63325          "flowcontrolApiserver_v1beta1"
63326        ],
63327        "x-kubernetes-action": "get",
63328        "x-kubernetes-group-version-kind": {
63329          "group": "flowcontrol.apiserver.k8s.io",
63330          "kind": "PriorityLevelConfiguration",
63331          "version": "v1beta1"
63332        }
63333      },
63334      "parameters": [
63335        {
63336          "description": "name of the PriorityLevelConfiguration",
63337          "in": "path",
63338          "name": "name",
63339          "required": true,
63340          "type": "string",
63341          "uniqueItems": true
63342        },
63343        {
63344          "description": "If 'true', then the output is pretty printed.",
63345          "in": "query",
63346          "name": "pretty",
63347          "type": "string",
63348          "uniqueItems": true
63349        }
63350      ],
63351      "patch": {
63352        "consumes": [
63353          "application/json-patch+json",
63354          "application/merge-patch+json",
63355          "application/strategic-merge-patch+json",
63356          "application/apply-patch+yaml"
63357        ],
63358        "description": "partially update the specified PriorityLevelConfiguration",
63359        "operationId": "patchFlowcontrolApiserverV1beta1PriorityLevelConfiguration",
63360        "parameters": [
63361          {
63362            "in": "body",
63363            "name": "body",
63364            "required": true,
63365            "schema": {
63366              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
63367            }
63368          },
63369          {
63370            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
63371            "in": "query",
63372            "name": "dryRun",
63373            "type": "string",
63374            "uniqueItems": true
63375          },
63376          {
63377            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
63378            "in": "query",
63379            "name": "fieldManager",
63380            "type": "string",
63381            "uniqueItems": true
63382          },
63383          {
63384            "description": "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.",
63385            "in": "query",
63386            "name": "force",
63387            "type": "boolean",
63388            "uniqueItems": true
63389          }
63390        ],
63391        "produces": [
63392          "application/json",
63393          "application/yaml",
63394          "application/vnd.kubernetes.protobuf"
63395        ],
63396        "responses": {
63397          "200": {
63398            "description": "OK",
63399            "schema": {
63400              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.PriorityLevelConfiguration"
63401            }
63402          },
63403          "201": {
63404            "description": "Created",
63405            "schema": {
63406              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.PriorityLevelConfiguration"
63407            }
63408          },
63409          "401": {
63410            "description": "Unauthorized"
63411          }
63412        },
63413        "schemes": [
63414          "https"
63415        ],
63416        "tags": [
63417          "flowcontrolApiserver_v1beta1"
63418        ],
63419        "x-kubernetes-action": "patch",
63420        "x-kubernetes-group-version-kind": {
63421          "group": "flowcontrol.apiserver.k8s.io",
63422          "kind": "PriorityLevelConfiguration",
63423          "version": "v1beta1"
63424        }
63425      },
63426      "put": {
63427        "consumes": [
63428          "*/*"
63429        ],
63430        "description": "replace the specified PriorityLevelConfiguration",
63431        "operationId": "replaceFlowcontrolApiserverV1beta1PriorityLevelConfiguration",
63432        "parameters": [
63433          {
63434            "in": "body",
63435            "name": "body",
63436            "required": true,
63437            "schema": {
63438              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.PriorityLevelConfiguration"
63439            }
63440          },
63441          {
63442            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
63443            "in": "query",
63444            "name": "dryRun",
63445            "type": "string",
63446            "uniqueItems": true
63447          },
63448          {
63449            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
63450            "in": "query",
63451            "name": "fieldManager",
63452            "type": "string",
63453            "uniqueItems": true
63454          }
63455        ],
63456        "produces": [
63457          "application/json",
63458          "application/yaml",
63459          "application/vnd.kubernetes.protobuf"
63460        ],
63461        "responses": {
63462          "200": {
63463            "description": "OK",
63464            "schema": {
63465              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.PriorityLevelConfiguration"
63466            }
63467          },
63468          "201": {
63469            "description": "Created",
63470            "schema": {
63471              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.PriorityLevelConfiguration"
63472            }
63473          },
63474          "401": {
63475            "description": "Unauthorized"
63476          }
63477        },
63478        "schemes": [
63479          "https"
63480        ],
63481        "tags": [
63482          "flowcontrolApiserver_v1beta1"
63483        ],
63484        "x-kubernetes-action": "put",
63485        "x-kubernetes-group-version-kind": {
63486          "group": "flowcontrol.apiserver.k8s.io",
63487          "kind": "PriorityLevelConfiguration",
63488          "version": "v1beta1"
63489        }
63490      }
63491    },
63492    "/apis/flowcontrol.apiserver.k8s.io/v1beta1/prioritylevelconfigurations/{name}/status": {
63493      "get": {
63494        "consumes": [
63495          "*/*"
63496        ],
63497        "description": "read status of the specified PriorityLevelConfiguration",
63498        "operationId": "readFlowcontrolApiserverV1beta1PriorityLevelConfigurationStatus",
63499        "produces": [
63500          "application/json",
63501          "application/yaml",
63502          "application/vnd.kubernetes.protobuf"
63503        ],
63504        "responses": {
63505          "200": {
63506            "description": "OK",
63507            "schema": {
63508              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.PriorityLevelConfiguration"
63509            }
63510          },
63511          "401": {
63512            "description": "Unauthorized"
63513          }
63514        },
63515        "schemes": [
63516          "https"
63517        ],
63518        "tags": [
63519          "flowcontrolApiserver_v1beta1"
63520        ],
63521        "x-kubernetes-action": "get",
63522        "x-kubernetes-group-version-kind": {
63523          "group": "flowcontrol.apiserver.k8s.io",
63524          "kind": "PriorityLevelConfiguration",
63525          "version": "v1beta1"
63526        }
63527      },
63528      "parameters": [
63529        {
63530          "description": "name of the PriorityLevelConfiguration",
63531          "in": "path",
63532          "name": "name",
63533          "required": true,
63534          "type": "string",
63535          "uniqueItems": true
63536        },
63537        {
63538          "description": "If 'true', then the output is pretty printed.",
63539          "in": "query",
63540          "name": "pretty",
63541          "type": "string",
63542          "uniqueItems": true
63543        }
63544      ],
63545      "patch": {
63546        "consumes": [
63547          "application/json-patch+json",
63548          "application/merge-patch+json",
63549          "application/strategic-merge-patch+json",
63550          "application/apply-patch+yaml"
63551        ],
63552        "description": "partially update status of the specified PriorityLevelConfiguration",
63553        "operationId": "patchFlowcontrolApiserverV1beta1PriorityLevelConfigurationStatus",
63554        "parameters": [
63555          {
63556            "in": "body",
63557            "name": "body",
63558            "required": true,
63559            "schema": {
63560              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
63561            }
63562          },
63563          {
63564            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
63565            "in": "query",
63566            "name": "dryRun",
63567            "type": "string",
63568            "uniqueItems": true
63569          },
63570          {
63571            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
63572            "in": "query",
63573            "name": "fieldManager",
63574            "type": "string",
63575            "uniqueItems": true
63576          },
63577          {
63578            "description": "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.",
63579            "in": "query",
63580            "name": "force",
63581            "type": "boolean",
63582            "uniqueItems": true
63583          }
63584        ],
63585        "produces": [
63586          "application/json",
63587          "application/yaml",
63588          "application/vnd.kubernetes.protobuf"
63589        ],
63590        "responses": {
63591          "200": {
63592            "description": "OK",
63593            "schema": {
63594              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.PriorityLevelConfiguration"
63595            }
63596          },
63597          "201": {
63598            "description": "Created",
63599            "schema": {
63600              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.PriorityLevelConfiguration"
63601            }
63602          },
63603          "401": {
63604            "description": "Unauthorized"
63605          }
63606        },
63607        "schemes": [
63608          "https"
63609        ],
63610        "tags": [
63611          "flowcontrolApiserver_v1beta1"
63612        ],
63613        "x-kubernetes-action": "patch",
63614        "x-kubernetes-group-version-kind": {
63615          "group": "flowcontrol.apiserver.k8s.io",
63616          "kind": "PriorityLevelConfiguration",
63617          "version": "v1beta1"
63618        }
63619      },
63620      "put": {
63621        "consumes": [
63622          "*/*"
63623        ],
63624        "description": "replace status of the specified PriorityLevelConfiguration",
63625        "operationId": "replaceFlowcontrolApiserverV1beta1PriorityLevelConfigurationStatus",
63626        "parameters": [
63627          {
63628            "in": "body",
63629            "name": "body",
63630            "required": true,
63631            "schema": {
63632              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.PriorityLevelConfiguration"
63633            }
63634          },
63635          {
63636            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
63637            "in": "query",
63638            "name": "dryRun",
63639            "type": "string",
63640            "uniqueItems": true
63641          },
63642          {
63643            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
63644            "in": "query",
63645            "name": "fieldManager",
63646            "type": "string",
63647            "uniqueItems": true
63648          }
63649        ],
63650        "produces": [
63651          "application/json",
63652          "application/yaml",
63653          "application/vnd.kubernetes.protobuf"
63654        ],
63655        "responses": {
63656          "200": {
63657            "description": "OK",
63658            "schema": {
63659              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.PriorityLevelConfiguration"
63660            }
63661          },
63662          "201": {
63663            "description": "Created",
63664            "schema": {
63665              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta1.PriorityLevelConfiguration"
63666            }
63667          },
63668          "401": {
63669            "description": "Unauthorized"
63670          }
63671        },
63672        "schemes": [
63673          "https"
63674        ],
63675        "tags": [
63676          "flowcontrolApiserver_v1beta1"
63677        ],
63678        "x-kubernetes-action": "put",
63679        "x-kubernetes-group-version-kind": {
63680          "group": "flowcontrol.apiserver.k8s.io",
63681          "kind": "PriorityLevelConfiguration",
63682          "version": "v1beta1"
63683        }
63684      }
63685    },
63686    "/apis/flowcontrol.apiserver.k8s.io/v1beta1/watch/flowschemas": {
63687      "get": {
63688        "consumes": [
63689          "*/*"
63690        ],
63691        "description": "watch individual changes to a list of FlowSchema. deprecated: use the 'watch' parameter with a list operation instead.",
63692        "operationId": "watchFlowcontrolApiserverV1beta1FlowSchemaList",
63693        "produces": [
63694          "application/json",
63695          "application/yaml",
63696          "application/vnd.kubernetes.protobuf",
63697          "application/json;stream=watch",
63698          "application/vnd.kubernetes.protobuf;stream=watch"
63699        ],
63700        "responses": {
63701          "200": {
63702            "description": "OK",
63703            "schema": {
63704              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
63705            }
63706          },
63707          "401": {
63708            "description": "Unauthorized"
63709          }
63710        },
63711        "schemes": [
63712          "https"
63713        ],
63714        "tags": [
63715          "flowcontrolApiserver_v1beta1"
63716        ],
63717        "x-kubernetes-action": "watchlist",
63718        "x-kubernetes-group-version-kind": {
63719          "group": "flowcontrol.apiserver.k8s.io",
63720          "kind": "FlowSchema",
63721          "version": "v1beta1"
63722        }
63723      },
63724      "parameters": [
63725        {
63726          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
63727          "in": "query",
63728          "name": "allowWatchBookmarks",
63729          "type": "boolean",
63730          "uniqueItems": true
63731        },
63732        {
63733          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
63734          "in": "query",
63735          "name": "continue",
63736          "type": "string",
63737          "uniqueItems": true
63738        },
63739        {
63740          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
63741          "in": "query",
63742          "name": "fieldSelector",
63743          "type": "string",
63744          "uniqueItems": true
63745        },
63746        {
63747          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
63748          "in": "query",
63749          "name": "labelSelector",
63750          "type": "string",
63751          "uniqueItems": true
63752        },
63753        {
63754          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
63755          "in": "query",
63756          "name": "limit",
63757          "type": "integer",
63758          "uniqueItems": true
63759        },
63760        {
63761          "description": "If 'true', then the output is pretty printed.",
63762          "in": "query",
63763          "name": "pretty",
63764          "type": "string",
63765          "uniqueItems": true
63766        },
63767        {
63768          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
63769          "in": "query",
63770          "name": "resourceVersion",
63771          "type": "string",
63772          "uniqueItems": true
63773        },
63774        {
63775          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
63776          "in": "query",
63777          "name": "resourceVersionMatch",
63778          "type": "string",
63779          "uniqueItems": true
63780        },
63781        {
63782          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
63783          "in": "query",
63784          "name": "timeoutSeconds",
63785          "type": "integer",
63786          "uniqueItems": true
63787        },
63788        {
63789          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
63790          "in": "query",
63791          "name": "watch",
63792          "type": "boolean",
63793          "uniqueItems": true
63794        }
63795      ]
63796    },
63797    "/apis/flowcontrol.apiserver.k8s.io/v1beta1/watch/flowschemas/{name}": {
63798      "get": {
63799        "consumes": [
63800          "*/*"
63801        ],
63802        "description": "watch changes to an object of kind FlowSchema. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.",
63803        "operationId": "watchFlowcontrolApiserverV1beta1FlowSchema",
63804        "produces": [
63805          "application/json",
63806          "application/yaml",
63807          "application/vnd.kubernetes.protobuf",
63808          "application/json;stream=watch",
63809          "application/vnd.kubernetes.protobuf;stream=watch"
63810        ],
63811        "responses": {
63812          "200": {
63813            "description": "OK",
63814            "schema": {
63815              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
63816            }
63817          },
63818          "401": {
63819            "description": "Unauthorized"
63820          }
63821        },
63822        "schemes": [
63823          "https"
63824        ],
63825        "tags": [
63826          "flowcontrolApiserver_v1beta1"
63827        ],
63828        "x-kubernetes-action": "watch",
63829        "x-kubernetes-group-version-kind": {
63830          "group": "flowcontrol.apiserver.k8s.io",
63831          "kind": "FlowSchema",
63832          "version": "v1beta1"
63833        }
63834      },
63835      "parameters": [
63836        {
63837          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
63838          "in": "query",
63839          "name": "allowWatchBookmarks",
63840          "type": "boolean",
63841          "uniqueItems": true
63842        },
63843        {
63844          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
63845          "in": "query",
63846          "name": "continue",
63847          "type": "string",
63848          "uniqueItems": true
63849        },
63850        {
63851          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
63852          "in": "query",
63853          "name": "fieldSelector",
63854          "type": "string",
63855          "uniqueItems": true
63856        },
63857        {
63858          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
63859          "in": "query",
63860          "name": "labelSelector",
63861          "type": "string",
63862          "uniqueItems": true
63863        },
63864        {
63865          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
63866          "in": "query",
63867          "name": "limit",
63868          "type": "integer",
63869          "uniqueItems": true
63870        },
63871        {
63872          "description": "name of the FlowSchema",
63873          "in": "path",
63874          "name": "name",
63875          "required": true,
63876          "type": "string",
63877          "uniqueItems": true
63878        },
63879        {
63880          "description": "If 'true', then the output is pretty printed.",
63881          "in": "query",
63882          "name": "pretty",
63883          "type": "string",
63884          "uniqueItems": true
63885        },
63886        {
63887          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
63888          "in": "query",
63889          "name": "resourceVersion",
63890          "type": "string",
63891          "uniqueItems": true
63892        },
63893        {
63894          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
63895          "in": "query",
63896          "name": "resourceVersionMatch",
63897          "type": "string",
63898          "uniqueItems": true
63899        },
63900        {
63901          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
63902          "in": "query",
63903          "name": "timeoutSeconds",
63904          "type": "integer",
63905          "uniqueItems": true
63906        },
63907        {
63908          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
63909          "in": "query",
63910          "name": "watch",
63911          "type": "boolean",
63912          "uniqueItems": true
63913        }
63914      ]
63915    },
63916    "/apis/flowcontrol.apiserver.k8s.io/v1beta1/watch/prioritylevelconfigurations": {
63917      "get": {
63918        "consumes": [
63919          "*/*"
63920        ],
63921        "description": "watch individual changes to a list of PriorityLevelConfiguration. deprecated: use the 'watch' parameter with a list operation instead.",
63922        "operationId": "watchFlowcontrolApiserverV1beta1PriorityLevelConfigurationList",
63923        "produces": [
63924          "application/json",
63925          "application/yaml",
63926          "application/vnd.kubernetes.protobuf",
63927          "application/json;stream=watch",
63928          "application/vnd.kubernetes.protobuf;stream=watch"
63929        ],
63930        "responses": {
63931          "200": {
63932            "description": "OK",
63933            "schema": {
63934              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
63935            }
63936          },
63937          "401": {
63938            "description": "Unauthorized"
63939          }
63940        },
63941        "schemes": [
63942          "https"
63943        ],
63944        "tags": [
63945          "flowcontrolApiserver_v1beta1"
63946        ],
63947        "x-kubernetes-action": "watchlist",
63948        "x-kubernetes-group-version-kind": {
63949          "group": "flowcontrol.apiserver.k8s.io",
63950          "kind": "PriorityLevelConfiguration",
63951          "version": "v1beta1"
63952        }
63953      },
63954      "parameters": [
63955        {
63956          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
63957          "in": "query",
63958          "name": "allowWatchBookmarks",
63959          "type": "boolean",
63960          "uniqueItems": true
63961        },
63962        {
63963          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
63964          "in": "query",
63965          "name": "continue",
63966          "type": "string",
63967          "uniqueItems": true
63968        },
63969        {
63970          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
63971          "in": "query",
63972          "name": "fieldSelector",
63973          "type": "string",
63974          "uniqueItems": true
63975        },
63976        {
63977          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
63978          "in": "query",
63979          "name": "labelSelector",
63980          "type": "string",
63981          "uniqueItems": true
63982        },
63983        {
63984          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
63985          "in": "query",
63986          "name": "limit",
63987          "type": "integer",
63988          "uniqueItems": true
63989        },
63990        {
63991          "description": "If 'true', then the output is pretty printed.",
63992          "in": "query",
63993          "name": "pretty",
63994          "type": "string",
63995          "uniqueItems": true
63996        },
63997        {
63998          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
63999          "in": "query",
64000          "name": "resourceVersion",
64001          "type": "string",
64002          "uniqueItems": true
64003        },
64004        {
64005          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
64006          "in": "query",
64007          "name": "resourceVersionMatch",
64008          "type": "string",
64009          "uniqueItems": true
64010        },
64011        {
64012          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
64013          "in": "query",
64014          "name": "timeoutSeconds",
64015          "type": "integer",
64016          "uniqueItems": true
64017        },
64018        {
64019          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
64020          "in": "query",
64021          "name": "watch",
64022          "type": "boolean",
64023          "uniqueItems": true
64024        }
64025      ]
64026    },
64027    "/apis/flowcontrol.apiserver.k8s.io/v1beta1/watch/prioritylevelconfigurations/{name}": {
64028      "get": {
64029        "consumes": [
64030          "*/*"
64031        ],
64032        "description": "watch changes to an object of kind PriorityLevelConfiguration. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.",
64033        "operationId": "watchFlowcontrolApiserverV1beta1PriorityLevelConfiguration",
64034        "produces": [
64035          "application/json",
64036          "application/yaml",
64037          "application/vnd.kubernetes.protobuf",
64038          "application/json;stream=watch",
64039          "application/vnd.kubernetes.protobuf;stream=watch"
64040        ],
64041        "responses": {
64042          "200": {
64043            "description": "OK",
64044            "schema": {
64045              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
64046            }
64047          },
64048          "401": {
64049            "description": "Unauthorized"
64050          }
64051        },
64052        "schemes": [
64053          "https"
64054        ],
64055        "tags": [
64056          "flowcontrolApiserver_v1beta1"
64057        ],
64058        "x-kubernetes-action": "watch",
64059        "x-kubernetes-group-version-kind": {
64060          "group": "flowcontrol.apiserver.k8s.io",
64061          "kind": "PriorityLevelConfiguration",
64062          "version": "v1beta1"
64063        }
64064      },
64065      "parameters": [
64066        {
64067          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
64068          "in": "query",
64069          "name": "allowWatchBookmarks",
64070          "type": "boolean",
64071          "uniqueItems": true
64072        },
64073        {
64074          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
64075          "in": "query",
64076          "name": "continue",
64077          "type": "string",
64078          "uniqueItems": true
64079        },
64080        {
64081          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
64082          "in": "query",
64083          "name": "fieldSelector",
64084          "type": "string",
64085          "uniqueItems": true
64086        },
64087        {
64088          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
64089          "in": "query",
64090          "name": "labelSelector",
64091          "type": "string",
64092          "uniqueItems": true
64093        },
64094        {
64095          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
64096          "in": "query",
64097          "name": "limit",
64098          "type": "integer",
64099          "uniqueItems": true
64100        },
64101        {
64102          "description": "name of the PriorityLevelConfiguration",
64103          "in": "path",
64104          "name": "name",
64105          "required": true,
64106          "type": "string",
64107          "uniqueItems": true
64108        },
64109        {
64110          "description": "If 'true', then the output is pretty printed.",
64111          "in": "query",
64112          "name": "pretty",
64113          "type": "string",
64114          "uniqueItems": true
64115        },
64116        {
64117          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
64118          "in": "query",
64119          "name": "resourceVersion",
64120          "type": "string",
64121          "uniqueItems": true
64122        },
64123        {
64124          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
64125          "in": "query",
64126          "name": "resourceVersionMatch",
64127          "type": "string",
64128          "uniqueItems": true
64129        },
64130        {
64131          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
64132          "in": "query",
64133          "name": "timeoutSeconds",
64134          "type": "integer",
64135          "uniqueItems": true
64136        },
64137        {
64138          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
64139          "in": "query",
64140          "name": "watch",
64141          "type": "boolean",
64142          "uniqueItems": true
64143        }
64144      ]
64145    },
64146    "/apis/internal.apiserver.k8s.io/": {
64147      "get": {
64148        "consumes": [
64149          "application/json",
64150          "application/yaml",
64151          "application/vnd.kubernetes.protobuf"
64152        ],
64153        "description": "get information of a group",
64154        "operationId": "getInternalApiserverAPIGroup",
64155        "produces": [
64156          "application/json",
64157          "application/yaml",
64158          "application/vnd.kubernetes.protobuf"
64159        ],
64160        "responses": {
64161          "200": {
64162            "description": "OK",
64163            "schema": {
64164              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup"
64165            }
64166          },
64167          "401": {
64168            "description": "Unauthorized"
64169          }
64170        },
64171        "schemes": [
64172          "https"
64173        ],
64174        "tags": [
64175          "internalApiserver"
64176        ]
64177      }
64178    },
64179    "/apis/internal.apiserver.k8s.io/v1alpha1/": {
64180      "get": {
64181        "consumes": [
64182          "application/json",
64183          "application/yaml",
64184          "application/vnd.kubernetes.protobuf"
64185        ],
64186        "description": "get available resources",
64187        "operationId": "getInternalApiserverV1alpha1APIResources",
64188        "produces": [
64189          "application/json",
64190          "application/yaml",
64191          "application/vnd.kubernetes.protobuf"
64192        ],
64193        "responses": {
64194          "200": {
64195            "description": "OK",
64196            "schema": {
64197              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
64198            }
64199          },
64200          "401": {
64201            "description": "Unauthorized"
64202          }
64203        },
64204        "schemes": [
64205          "https"
64206        ],
64207        "tags": [
64208          "internalApiserver_v1alpha1"
64209        ]
64210      }
64211    },
64212    "/apis/internal.apiserver.k8s.io/v1alpha1/storageversions": {
64213      "delete": {
64214        "consumes": [
64215          "*/*"
64216        ],
64217        "description": "delete collection of StorageVersion",
64218        "operationId": "deleteInternalApiserverV1alpha1CollectionStorageVersion",
64219        "parameters": [
64220          {
64221            "in": "body",
64222            "name": "body",
64223            "schema": {
64224              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
64225            }
64226          },
64227          {
64228            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
64229            "in": "query",
64230            "name": "continue",
64231            "type": "string",
64232            "uniqueItems": true
64233          },
64234          {
64235            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
64236            "in": "query",
64237            "name": "dryRun",
64238            "type": "string",
64239            "uniqueItems": true
64240          },
64241          {
64242            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
64243            "in": "query",
64244            "name": "fieldSelector",
64245            "type": "string",
64246            "uniqueItems": true
64247          },
64248          {
64249            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
64250            "in": "query",
64251            "name": "gracePeriodSeconds",
64252            "type": "integer",
64253            "uniqueItems": true
64254          },
64255          {
64256            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
64257            "in": "query",
64258            "name": "labelSelector",
64259            "type": "string",
64260            "uniqueItems": true
64261          },
64262          {
64263            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
64264            "in": "query",
64265            "name": "limit",
64266            "type": "integer",
64267            "uniqueItems": true
64268          },
64269          {
64270            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
64271            "in": "query",
64272            "name": "orphanDependents",
64273            "type": "boolean",
64274            "uniqueItems": true
64275          },
64276          {
64277            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
64278            "in": "query",
64279            "name": "propagationPolicy",
64280            "type": "string",
64281            "uniqueItems": true
64282          },
64283          {
64284            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
64285            "in": "query",
64286            "name": "resourceVersion",
64287            "type": "string",
64288            "uniqueItems": true
64289          },
64290          {
64291            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
64292            "in": "query",
64293            "name": "resourceVersionMatch",
64294            "type": "string",
64295            "uniqueItems": true
64296          },
64297          {
64298            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
64299            "in": "query",
64300            "name": "timeoutSeconds",
64301            "type": "integer",
64302            "uniqueItems": true
64303          }
64304        ],
64305        "produces": [
64306          "application/json",
64307          "application/yaml",
64308          "application/vnd.kubernetes.protobuf"
64309        ],
64310        "responses": {
64311          "200": {
64312            "description": "OK",
64313            "schema": {
64314              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
64315            }
64316          },
64317          "401": {
64318            "description": "Unauthorized"
64319          }
64320        },
64321        "schemes": [
64322          "https"
64323        ],
64324        "tags": [
64325          "internalApiserver_v1alpha1"
64326        ],
64327        "x-kubernetes-action": "deletecollection",
64328        "x-kubernetes-group-version-kind": {
64329          "group": "internal.apiserver.k8s.io",
64330          "kind": "StorageVersion",
64331          "version": "v1alpha1"
64332        }
64333      },
64334      "get": {
64335        "consumes": [
64336          "*/*"
64337        ],
64338        "description": "list or watch objects of kind StorageVersion",
64339        "operationId": "listInternalApiserverV1alpha1StorageVersion",
64340        "parameters": [
64341          {
64342            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
64343            "in": "query",
64344            "name": "allowWatchBookmarks",
64345            "type": "boolean",
64346            "uniqueItems": true
64347          },
64348          {
64349            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
64350            "in": "query",
64351            "name": "continue",
64352            "type": "string",
64353            "uniqueItems": true
64354          },
64355          {
64356            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
64357            "in": "query",
64358            "name": "fieldSelector",
64359            "type": "string",
64360            "uniqueItems": true
64361          },
64362          {
64363            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
64364            "in": "query",
64365            "name": "labelSelector",
64366            "type": "string",
64367            "uniqueItems": true
64368          },
64369          {
64370            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
64371            "in": "query",
64372            "name": "limit",
64373            "type": "integer",
64374            "uniqueItems": true
64375          },
64376          {
64377            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
64378            "in": "query",
64379            "name": "resourceVersion",
64380            "type": "string",
64381            "uniqueItems": true
64382          },
64383          {
64384            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
64385            "in": "query",
64386            "name": "resourceVersionMatch",
64387            "type": "string",
64388            "uniqueItems": true
64389          },
64390          {
64391            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
64392            "in": "query",
64393            "name": "timeoutSeconds",
64394            "type": "integer",
64395            "uniqueItems": true
64396          },
64397          {
64398            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
64399            "in": "query",
64400            "name": "watch",
64401            "type": "boolean",
64402            "uniqueItems": true
64403          }
64404        ],
64405        "produces": [
64406          "application/json",
64407          "application/yaml",
64408          "application/vnd.kubernetes.protobuf",
64409          "application/json;stream=watch",
64410          "application/vnd.kubernetes.protobuf;stream=watch"
64411        ],
64412        "responses": {
64413          "200": {
64414            "description": "OK",
64415            "schema": {
64416              "$ref": "#/definitions/io.k8s.api.apiserverinternal.v1alpha1.StorageVersionList"
64417            }
64418          },
64419          "401": {
64420            "description": "Unauthorized"
64421          }
64422        },
64423        "schemes": [
64424          "https"
64425        ],
64426        "tags": [
64427          "internalApiserver_v1alpha1"
64428        ],
64429        "x-kubernetes-action": "list",
64430        "x-kubernetes-group-version-kind": {
64431          "group": "internal.apiserver.k8s.io",
64432          "kind": "StorageVersion",
64433          "version": "v1alpha1"
64434        }
64435      },
64436      "parameters": [
64437        {
64438          "description": "If 'true', then the output is pretty printed.",
64439          "in": "query",
64440          "name": "pretty",
64441          "type": "string",
64442          "uniqueItems": true
64443        }
64444      ],
64445      "post": {
64446        "consumes": [
64447          "*/*"
64448        ],
64449        "description": "create a StorageVersion",
64450        "operationId": "createInternalApiserverV1alpha1StorageVersion",
64451        "parameters": [
64452          {
64453            "in": "body",
64454            "name": "body",
64455            "required": true,
64456            "schema": {
64457              "$ref": "#/definitions/io.k8s.api.apiserverinternal.v1alpha1.StorageVersion"
64458            }
64459          },
64460          {
64461            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
64462            "in": "query",
64463            "name": "dryRun",
64464            "type": "string",
64465            "uniqueItems": true
64466          },
64467          {
64468            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
64469            "in": "query",
64470            "name": "fieldManager",
64471            "type": "string",
64472            "uniqueItems": true
64473          }
64474        ],
64475        "produces": [
64476          "application/json",
64477          "application/yaml",
64478          "application/vnd.kubernetes.protobuf"
64479        ],
64480        "responses": {
64481          "200": {
64482            "description": "OK",
64483            "schema": {
64484              "$ref": "#/definitions/io.k8s.api.apiserverinternal.v1alpha1.StorageVersion"
64485            }
64486          },
64487          "201": {
64488            "description": "Created",
64489            "schema": {
64490              "$ref": "#/definitions/io.k8s.api.apiserverinternal.v1alpha1.StorageVersion"
64491            }
64492          },
64493          "202": {
64494            "description": "Accepted",
64495            "schema": {
64496              "$ref": "#/definitions/io.k8s.api.apiserverinternal.v1alpha1.StorageVersion"
64497            }
64498          },
64499          "401": {
64500            "description": "Unauthorized"
64501          }
64502        },
64503        "schemes": [
64504          "https"
64505        ],
64506        "tags": [
64507          "internalApiserver_v1alpha1"
64508        ],
64509        "x-kubernetes-action": "post",
64510        "x-kubernetes-group-version-kind": {
64511          "group": "internal.apiserver.k8s.io",
64512          "kind": "StorageVersion",
64513          "version": "v1alpha1"
64514        }
64515      }
64516    },
64517    "/apis/internal.apiserver.k8s.io/v1alpha1/storageversions/{name}": {
64518      "delete": {
64519        "consumes": [
64520          "*/*"
64521        ],
64522        "description": "delete a StorageVersion",
64523        "operationId": "deleteInternalApiserverV1alpha1StorageVersion",
64524        "parameters": [
64525          {
64526            "in": "body",
64527            "name": "body",
64528            "schema": {
64529              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
64530            }
64531          },
64532          {
64533            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
64534            "in": "query",
64535            "name": "dryRun",
64536            "type": "string",
64537            "uniqueItems": true
64538          },
64539          {
64540            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
64541            "in": "query",
64542            "name": "gracePeriodSeconds",
64543            "type": "integer",
64544            "uniqueItems": true
64545          },
64546          {
64547            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
64548            "in": "query",
64549            "name": "orphanDependents",
64550            "type": "boolean",
64551            "uniqueItems": true
64552          },
64553          {
64554            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
64555            "in": "query",
64556            "name": "propagationPolicy",
64557            "type": "string",
64558            "uniqueItems": true
64559          }
64560        ],
64561        "produces": [
64562          "application/json",
64563          "application/yaml",
64564          "application/vnd.kubernetes.protobuf"
64565        ],
64566        "responses": {
64567          "200": {
64568            "description": "OK",
64569            "schema": {
64570              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
64571            }
64572          },
64573          "202": {
64574            "description": "Accepted",
64575            "schema": {
64576              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
64577            }
64578          },
64579          "401": {
64580            "description": "Unauthorized"
64581          }
64582        },
64583        "schemes": [
64584          "https"
64585        ],
64586        "tags": [
64587          "internalApiserver_v1alpha1"
64588        ],
64589        "x-kubernetes-action": "delete",
64590        "x-kubernetes-group-version-kind": {
64591          "group": "internal.apiserver.k8s.io",
64592          "kind": "StorageVersion",
64593          "version": "v1alpha1"
64594        }
64595      },
64596      "get": {
64597        "consumes": [
64598          "*/*"
64599        ],
64600        "description": "read the specified StorageVersion",
64601        "operationId": "readInternalApiserverV1alpha1StorageVersion",
64602        "produces": [
64603          "application/json",
64604          "application/yaml",
64605          "application/vnd.kubernetes.protobuf"
64606        ],
64607        "responses": {
64608          "200": {
64609            "description": "OK",
64610            "schema": {
64611              "$ref": "#/definitions/io.k8s.api.apiserverinternal.v1alpha1.StorageVersion"
64612            }
64613          },
64614          "401": {
64615            "description": "Unauthorized"
64616          }
64617        },
64618        "schemes": [
64619          "https"
64620        ],
64621        "tags": [
64622          "internalApiserver_v1alpha1"
64623        ],
64624        "x-kubernetes-action": "get",
64625        "x-kubernetes-group-version-kind": {
64626          "group": "internal.apiserver.k8s.io",
64627          "kind": "StorageVersion",
64628          "version": "v1alpha1"
64629        }
64630      },
64631      "parameters": [
64632        {
64633          "description": "name of the StorageVersion",
64634          "in": "path",
64635          "name": "name",
64636          "required": true,
64637          "type": "string",
64638          "uniqueItems": true
64639        },
64640        {
64641          "description": "If 'true', then the output is pretty printed.",
64642          "in": "query",
64643          "name": "pretty",
64644          "type": "string",
64645          "uniqueItems": true
64646        }
64647      ],
64648      "patch": {
64649        "consumes": [
64650          "application/json-patch+json",
64651          "application/merge-patch+json",
64652          "application/strategic-merge-patch+json",
64653          "application/apply-patch+yaml"
64654        ],
64655        "description": "partially update the specified StorageVersion",
64656        "operationId": "patchInternalApiserverV1alpha1StorageVersion",
64657        "parameters": [
64658          {
64659            "in": "body",
64660            "name": "body",
64661            "required": true,
64662            "schema": {
64663              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
64664            }
64665          },
64666          {
64667            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
64668            "in": "query",
64669            "name": "dryRun",
64670            "type": "string",
64671            "uniqueItems": true
64672          },
64673          {
64674            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
64675            "in": "query",
64676            "name": "fieldManager",
64677            "type": "string",
64678            "uniqueItems": true
64679          },
64680          {
64681            "description": "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.",
64682            "in": "query",
64683            "name": "force",
64684            "type": "boolean",
64685            "uniqueItems": true
64686          }
64687        ],
64688        "produces": [
64689          "application/json",
64690          "application/yaml",
64691          "application/vnd.kubernetes.protobuf"
64692        ],
64693        "responses": {
64694          "200": {
64695            "description": "OK",
64696            "schema": {
64697              "$ref": "#/definitions/io.k8s.api.apiserverinternal.v1alpha1.StorageVersion"
64698            }
64699          },
64700          "201": {
64701            "description": "Created",
64702            "schema": {
64703              "$ref": "#/definitions/io.k8s.api.apiserverinternal.v1alpha1.StorageVersion"
64704            }
64705          },
64706          "401": {
64707            "description": "Unauthorized"
64708          }
64709        },
64710        "schemes": [
64711          "https"
64712        ],
64713        "tags": [
64714          "internalApiserver_v1alpha1"
64715        ],
64716        "x-kubernetes-action": "patch",
64717        "x-kubernetes-group-version-kind": {
64718          "group": "internal.apiserver.k8s.io",
64719          "kind": "StorageVersion",
64720          "version": "v1alpha1"
64721        }
64722      },
64723      "put": {
64724        "consumes": [
64725          "*/*"
64726        ],
64727        "description": "replace the specified StorageVersion",
64728        "operationId": "replaceInternalApiserverV1alpha1StorageVersion",
64729        "parameters": [
64730          {
64731            "in": "body",
64732            "name": "body",
64733            "required": true,
64734            "schema": {
64735              "$ref": "#/definitions/io.k8s.api.apiserverinternal.v1alpha1.StorageVersion"
64736            }
64737          },
64738          {
64739            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
64740            "in": "query",
64741            "name": "dryRun",
64742            "type": "string",
64743            "uniqueItems": true
64744          },
64745          {
64746            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
64747            "in": "query",
64748            "name": "fieldManager",
64749            "type": "string",
64750            "uniqueItems": true
64751          }
64752        ],
64753        "produces": [
64754          "application/json",
64755          "application/yaml",
64756          "application/vnd.kubernetes.protobuf"
64757        ],
64758        "responses": {
64759          "200": {
64760            "description": "OK",
64761            "schema": {
64762              "$ref": "#/definitions/io.k8s.api.apiserverinternal.v1alpha1.StorageVersion"
64763            }
64764          },
64765          "201": {
64766            "description": "Created",
64767            "schema": {
64768              "$ref": "#/definitions/io.k8s.api.apiserverinternal.v1alpha1.StorageVersion"
64769            }
64770          },
64771          "401": {
64772            "description": "Unauthorized"
64773          }
64774        },
64775        "schemes": [
64776          "https"
64777        ],
64778        "tags": [
64779          "internalApiserver_v1alpha1"
64780        ],
64781        "x-kubernetes-action": "put",
64782        "x-kubernetes-group-version-kind": {
64783          "group": "internal.apiserver.k8s.io",
64784          "kind": "StorageVersion",
64785          "version": "v1alpha1"
64786        }
64787      }
64788    },
64789    "/apis/internal.apiserver.k8s.io/v1alpha1/storageversions/{name}/status": {
64790      "get": {
64791        "consumes": [
64792          "*/*"
64793        ],
64794        "description": "read status of the specified StorageVersion",
64795        "operationId": "readInternalApiserverV1alpha1StorageVersionStatus",
64796        "produces": [
64797          "application/json",
64798          "application/yaml",
64799          "application/vnd.kubernetes.protobuf"
64800        ],
64801        "responses": {
64802          "200": {
64803            "description": "OK",
64804            "schema": {
64805              "$ref": "#/definitions/io.k8s.api.apiserverinternal.v1alpha1.StorageVersion"
64806            }
64807          },
64808          "401": {
64809            "description": "Unauthorized"
64810          }
64811        },
64812        "schemes": [
64813          "https"
64814        ],
64815        "tags": [
64816          "internalApiserver_v1alpha1"
64817        ],
64818        "x-kubernetes-action": "get",
64819        "x-kubernetes-group-version-kind": {
64820          "group": "internal.apiserver.k8s.io",
64821          "kind": "StorageVersion",
64822          "version": "v1alpha1"
64823        }
64824      },
64825      "parameters": [
64826        {
64827          "description": "name of the StorageVersion",
64828          "in": "path",
64829          "name": "name",
64830          "required": true,
64831          "type": "string",
64832          "uniqueItems": true
64833        },
64834        {
64835          "description": "If 'true', then the output is pretty printed.",
64836          "in": "query",
64837          "name": "pretty",
64838          "type": "string",
64839          "uniqueItems": true
64840        }
64841      ],
64842      "patch": {
64843        "consumes": [
64844          "application/json-patch+json",
64845          "application/merge-patch+json",
64846          "application/strategic-merge-patch+json",
64847          "application/apply-patch+yaml"
64848        ],
64849        "description": "partially update status of the specified StorageVersion",
64850        "operationId": "patchInternalApiserverV1alpha1StorageVersionStatus",
64851        "parameters": [
64852          {
64853            "in": "body",
64854            "name": "body",
64855            "required": true,
64856            "schema": {
64857              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
64858            }
64859          },
64860          {
64861            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
64862            "in": "query",
64863            "name": "dryRun",
64864            "type": "string",
64865            "uniqueItems": true
64866          },
64867          {
64868            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
64869            "in": "query",
64870            "name": "fieldManager",
64871            "type": "string",
64872            "uniqueItems": true
64873          },
64874          {
64875            "description": "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.",
64876            "in": "query",
64877            "name": "force",
64878            "type": "boolean",
64879            "uniqueItems": true
64880          }
64881        ],
64882        "produces": [
64883          "application/json",
64884          "application/yaml",
64885          "application/vnd.kubernetes.protobuf"
64886        ],
64887        "responses": {
64888          "200": {
64889            "description": "OK",
64890            "schema": {
64891              "$ref": "#/definitions/io.k8s.api.apiserverinternal.v1alpha1.StorageVersion"
64892            }
64893          },
64894          "201": {
64895            "description": "Created",
64896            "schema": {
64897              "$ref": "#/definitions/io.k8s.api.apiserverinternal.v1alpha1.StorageVersion"
64898            }
64899          },
64900          "401": {
64901            "description": "Unauthorized"
64902          }
64903        },
64904        "schemes": [
64905          "https"
64906        ],
64907        "tags": [
64908          "internalApiserver_v1alpha1"
64909        ],
64910        "x-kubernetes-action": "patch",
64911        "x-kubernetes-group-version-kind": {
64912          "group": "internal.apiserver.k8s.io",
64913          "kind": "StorageVersion",
64914          "version": "v1alpha1"
64915        }
64916      },
64917      "put": {
64918        "consumes": [
64919          "*/*"
64920        ],
64921        "description": "replace status of the specified StorageVersion",
64922        "operationId": "replaceInternalApiserverV1alpha1StorageVersionStatus",
64923        "parameters": [
64924          {
64925            "in": "body",
64926            "name": "body",
64927            "required": true,
64928            "schema": {
64929              "$ref": "#/definitions/io.k8s.api.apiserverinternal.v1alpha1.StorageVersion"
64930            }
64931          },
64932          {
64933            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
64934            "in": "query",
64935            "name": "dryRun",
64936            "type": "string",
64937            "uniqueItems": true
64938          },
64939          {
64940            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
64941            "in": "query",
64942            "name": "fieldManager",
64943            "type": "string",
64944            "uniqueItems": true
64945          }
64946        ],
64947        "produces": [
64948          "application/json",
64949          "application/yaml",
64950          "application/vnd.kubernetes.protobuf"
64951        ],
64952        "responses": {
64953          "200": {
64954            "description": "OK",
64955            "schema": {
64956              "$ref": "#/definitions/io.k8s.api.apiserverinternal.v1alpha1.StorageVersion"
64957            }
64958          },
64959          "201": {
64960            "description": "Created",
64961            "schema": {
64962              "$ref": "#/definitions/io.k8s.api.apiserverinternal.v1alpha1.StorageVersion"
64963            }
64964          },
64965          "401": {
64966            "description": "Unauthorized"
64967          }
64968        },
64969        "schemes": [
64970          "https"
64971        ],
64972        "tags": [
64973          "internalApiserver_v1alpha1"
64974        ],
64975        "x-kubernetes-action": "put",
64976        "x-kubernetes-group-version-kind": {
64977          "group": "internal.apiserver.k8s.io",
64978          "kind": "StorageVersion",
64979          "version": "v1alpha1"
64980        }
64981      }
64982    },
64983    "/apis/internal.apiserver.k8s.io/v1alpha1/watch/storageversions": {
64984      "get": {
64985        "consumes": [
64986          "*/*"
64987        ],
64988        "description": "watch individual changes to a list of StorageVersion. deprecated: use the 'watch' parameter with a list operation instead.",
64989        "operationId": "watchInternalApiserverV1alpha1StorageVersionList",
64990        "produces": [
64991          "application/json",
64992          "application/yaml",
64993          "application/vnd.kubernetes.protobuf",
64994          "application/json;stream=watch",
64995          "application/vnd.kubernetes.protobuf;stream=watch"
64996        ],
64997        "responses": {
64998          "200": {
64999            "description": "OK",
65000            "schema": {
65001              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
65002            }
65003          },
65004          "401": {
65005            "description": "Unauthorized"
65006          }
65007        },
65008        "schemes": [
65009          "https"
65010        ],
65011        "tags": [
65012          "internalApiserver_v1alpha1"
65013        ],
65014        "x-kubernetes-action": "watchlist",
65015        "x-kubernetes-group-version-kind": {
65016          "group": "internal.apiserver.k8s.io",
65017          "kind": "StorageVersion",
65018          "version": "v1alpha1"
65019        }
65020      },
65021      "parameters": [
65022        {
65023          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
65024          "in": "query",
65025          "name": "allowWatchBookmarks",
65026          "type": "boolean",
65027          "uniqueItems": true
65028        },
65029        {
65030          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
65031          "in": "query",
65032          "name": "continue",
65033          "type": "string",
65034          "uniqueItems": true
65035        },
65036        {
65037          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
65038          "in": "query",
65039          "name": "fieldSelector",
65040          "type": "string",
65041          "uniqueItems": true
65042        },
65043        {
65044          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
65045          "in": "query",
65046          "name": "labelSelector",
65047          "type": "string",
65048          "uniqueItems": true
65049        },
65050        {
65051          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
65052          "in": "query",
65053          "name": "limit",
65054          "type": "integer",
65055          "uniqueItems": true
65056        },
65057        {
65058          "description": "If 'true', then the output is pretty printed.",
65059          "in": "query",
65060          "name": "pretty",
65061          "type": "string",
65062          "uniqueItems": true
65063        },
65064        {
65065          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
65066          "in": "query",
65067          "name": "resourceVersion",
65068          "type": "string",
65069          "uniqueItems": true
65070        },
65071        {
65072          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
65073          "in": "query",
65074          "name": "resourceVersionMatch",
65075          "type": "string",
65076          "uniqueItems": true
65077        },
65078        {
65079          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
65080          "in": "query",
65081          "name": "timeoutSeconds",
65082          "type": "integer",
65083          "uniqueItems": true
65084        },
65085        {
65086          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
65087          "in": "query",
65088          "name": "watch",
65089          "type": "boolean",
65090          "uniqueItems": true
65091        }
65092      ]
65093    },
65094    "/apis/internal.apiserver.k8s.io/v1alpha1/watch/storageversions/{name}": {
65095      "get": {
65096        "consumes": [
65097          "*/*"
65098        ],
65099        "description": "watch changes to an object of kind StorageVersion. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.",
65100        "operationId": "watchInternalApiserverV1alpha1StorageVersion",
65101        "produces": [
65102          "application/json",
65103          "application/yaml",
65104          "application/vnd.kubernetes.protobuf",
65105          "application/json;stream=watch",
65106          "application/vnd.kubernetes.protobuf;stream=watch"
65107        ],
65108        "responses": {
65109          "200": {
65110            "description": "OK",
65111            "schema": {
65112              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
65113            }
65114          },
65115          "401": {
65116            "description": "Unauthorized"
65117          }
65118        },
65119        "schemes": [
65120          "https"
65121        ],
65122        "tags": [
65123          "internalApiserver_v1alpha1"
65124        ],
65125        "x-kubernetes-action": "watch",
65126        "x-kubernetes-group-version-kind": {
65127          "group": "internal.apiserver.k8s.io",
65128          "kind": "StorageVersion",
65129          "version": "v1alpha1"
65130        }
65131      },
65132      "parameters": [
65133        {
65134          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
65135          "in": "query",
65136          "name": "allowWatchBookmarks",
65137          "type": "boolean",
65138          "uniqueItems": true
65139        },
65140        {
65141          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
65142          "in": "query",
65143          "name": "continue",
65144          "type": "string",
65145          "uniqueItems": true
65146        },
65147        {
65148          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
65149          "in": "query",
65150          "name": "fieldSelector",
65151          "type": "string",
65152          "uniqueItems": true
65153        },
65154        {
65155          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
65156          "in": "query",
65157          "name": "labelSelector",
65158          "type": "string",
65159          "uniqueItems": true
65160        },
65161        {
65162          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
65163          "in": "query",
65164          "name": "limit",
65165          "type": "integer",
65166          "uniqueItems": true
65167        },
65168        {
65169          "description": "name of the StorageVersion",
65170          "in": "path",
65171          "name": "name",
65172          "required": true,
65173          "type": "string",
65174          "uniqueItems": true
65175        },
65176        {
65177          "description": "If 'true', then the output is pretty printed.",
65178          "in": "query",
65179          "name": "pretty",
65180          "type": "string",
65181          "uniqueItems": true
65182        },
65183        {
65184          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
65185          "in": "query",
65186          "name": "resourceVersion",
65187          "type": "string",
65188          "uniqueItems": true
65189        },
65190        {
65191          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
65192          "in": "query",
65193          "name": "resourceVersionMatch",
65194          "type": "string",
65195          "uniqueItems": true
65196        },
65197        {
65198          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
65199          "in": "query",
65200          "name": "timeoutSeconds",
65201          "type": "integer",
65202          "uniqueItems": true
65203        },
65204        {
65205          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
65206          "in": "query",
65207          "name": "watch",
65208          "type": "boolean",
65209          "uniqueItems": true
65210        }
65211      ]
65212    },
65213    "/apis/networking.k8s.io/": {
65214      "get": {
65215        "consumes": [
65216          "application/json",
65217          "application/yaml",
65218          "application/vnd.kubernetes.protobuf"
65219        ],
65220        "description": "get information of a group",
65221        "operationId": "getNetworkingAPIGroup",
65222        "produces": [
65223          "application/json",
65224          "application/yaml",
65225          "application/vnd.kubernetes.protobuf"
65226        ],
65227        "responses": {
65228          "200": {
65229            "description": "OK",
65230            "schema": {
65231              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup"
65232            }
65233          },
65234          "401": {
65235            "description": "Unauthorized"
65236          }
65237        },
65238        "schemes": [
65239          "https"
65240        ],
65241        "tags": [
65242          "networking"
65243        ]
65244      }
65245    },
65246    "/apis/networking.k8s.io/v1/": {
65247      "get": {
65248        "consumes": [
65249          "application/json",
65250          "application/yaml",
65251          "application/vnd.kubernetes.protobuf"
65252        ],
65253        "description": "get available resources",
65254        "operationId": "getNetworkingV1APIResources",
65255        "produces": [
65256          "application/json",
65257          "application/yaml",
65258          "application/vnd.kubernetes.protobuf"
65259        ],
65260        "responses": {
65261          "200": {
65262            "description": "OK",
65263            "schema": {
65264              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
65265            }
65266          },
65267          "401": {
65268            "description": "Unauthorized"
65269          }
65270        },
65271        "schemes": [
65272          "https"
65273        ],
65274        "tags": [
65275          "networking_v1"
65276        ]
65277      }
65278    },
65279    "/apis/networking.k8s.io/v1/ingressclasses": {
65280      "delete": {
65281        "consumes": [
65282          "*/*"
65283        ],
65284        "description": "delete collection of IngressClass",
65285        "operationId": "deleteNetworkingV1CollectionIngressClass",
65286        "parameters": [
65287          {
65288            "in": "body",
65289            "name": "body",
65290            "schema": {
65291              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
65292            }
65293          },
65294          {
65295            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
65296            "in": "query",
65297            "name": "continue",
65298            "type": "string",
65299            "uniqueItems": true
65300          },
65301          {
65302            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
65303            "in": "query",
65304            "name": "dryRun",
65305            "type": "string",
65306            "uniqueItems": true
65307          },
65308          {
65309            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
65310            "in": "query",
65311            "name": "fieldSelector",
65312            "type": "string",
65313            "uniqueItems": true
65314          },
65315          {
65316            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
65317            "in": "query",
65318            "name": "gracePeriodSeconds",
65319            "type": "integer",
65320            "uniqueItems": true
65321          },
65322          {
65323            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
65324            "in": "query",
65325            "name": "labelSelector",
65326            "type": "string",
65327            "uniqueItems": true
65328          },
65329          {
65330            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
65331            "in": "query",
65332            "name": "limit",
65333            "type": "integer",
65334            "uniqueItems": true
65335          },
65336          {
65337            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
65338            "in": "query",
65339            "name": "orphanDependents",
65340            "type": "boolean",
65341            "uniqueItems": true
65342          },
65343          {
65344            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
65345            "in": "query",
65346            "name": "propagationPolicy",
65347            "type": "string",
65348            "uniqueItems": true
65349          },
65350          {
65351            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
65352            "in": "query",
65353            "name": "resourceVersion",
65354            "type": "string",
65355            "uniqueItems": true
65356          },
65357          {
65358            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
65359            "in": "query",
65360            "name": "resourceVersionMatch",
65361            "type": "string",
65362            "uniqueItems": true
65363          },
65364          {
65365            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
65366            "in": "query",
65367            "name": "timeoutSeconds",
65368            "type": "integer",
65369            "uniqueItems": true
65370          }
65371        ],
65372        "produces": [
65373          "application/json",
65374          "application/yaml",
65375          "application/vnd.kubernetes.protobuf"
65376        ],
65377        "responses": {
65378          "200": {
65379            "description": "OK",
65380            "schema": {
65381              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
65382            }
65383          },
65384          "401": {
65385            "description": "Unauthorized"
65386          }
65387        },
65388        "schemes": [
65389          "https"
65390        ],
65391        "tags": [
65392          "networking_v1"
65393        ],
65394        "x-kubernetes-action": "deletecollection",
65395        "x-kubernetes-group-version-kind": {
65396          "group": "networking.k8s.io",
65397          "kind": "IngressClass",
65398          "version": "v1"
65399        }
65400      },
65401      "get": {
65402        "consumes": [
65403          "*/*"
65404        ],
65405        "description": "list or watch objects of kind IngressClass",
65406        "operationId": "listNetworkingV1IngressClass",
65407        "parameters": [
65408          {
65409            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
65410            "in": "query",
65411            "name": "allowWatchBookmarks",
65412            "type": "boolean",
65413            "uniqueItems": true
65414          },
65415          {
65416            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
65417            "in": "query",
65418            "name": "continue",
65419            "type": "string",
65420            "uniqueItems": true
65421          },
65422          {
65423            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
65424            "in": "query",
65425            "name": "fieldSelector",
65426            "type": "string",
65427            "uniqueItems": true
65428          },
65429          {
65430            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
65431            "in": "query",
65432            "name": "labelSelector",
65433            "type": "string",
65434            "uniqueItems": true
65435          },
65436          {
65437            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
65438            "in": "query",
65439            "name": "limit",
65440            "type": "integer",
65441            "uniqueItems": true
65442          },
65443          {
65444            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
65445            "in": "query",
65446            "name": "resourceVersion",
65447            "type": "string",
65448            "uniqueItems": true
65449          },
65450          {
65451            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
65452            "in": "query",
65453            "name": "resourceVersionMatch",
65454            "type": "string",
65455            "uniqueItems": true
65456          },
65457          {
65458            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
65459            "in": "query",
65460            "name": "timeoutSeconds",
65461            "type": "integer",
65462            "uniqueItems": true
65463          },
65464          {
65465            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
65466            "in": "query",
65467            "name": "watch",
65468            "type": "boolean",
65469            "uniqueItems": true
65470          }
65471        ],
65472        "produces": [
65473          "application/json",
65474          "application/yaml",
65475          "application/vnd.kubernetes.protobuf",
65476          "application/json;stream=watch",
65477          "application/vnd.kubernetes.protobuf;stream=watch"
65478        ],
65479        "responses": {
65480          "200": {
65481            "description": "OK",
65482            "schema": {
65483              "$ref": "#/definitions/io.k8s.api.networking.v1.IngressClassList"
65484            }
65485          },
65486          "401": {
65487            "description": "Unauthorized"
65488          }
65489        },
65490        "schemes": [
65491          "https"
65492        ],
65493        "tags": [
65494          "networking_v1"
65495        ],
65496        "x-kubernetes-action": "list",
65497        "x-kubernetes-group-version-kind": {
65498          "group": "networking.k8s.io",
65499          "kind": "IngressClass",
65500          "version": "v1"
65501        }
65502      },
65503      "parameters": [
65504        {
65505          "description": "If 'true', then the output is pretty printed.",
65506          "in": "query",
65507          "name": "pretty",
65508          "type": "string",
65509          "uniqueItems": true
65510        }
65511      ],
65512      "post": {
65513        "consumes": [
65514          "*/*"
65515        ],
65516        "description": "create an IngressClass",
65517        "operationId": "createNetworkingV1IngressClass",
65518        "parameters": [
65519          {
65520            "in": "body",
65521            "name": "body",
65522            "required": true,
65523            "schema": {
65524              "$ref": "#/definitions/io.k8s.api.networking.v1.IngressClass"
65525            }
65526          },
65527          {
65528            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
65529            "in": "query",
65530            "name": "dryRun",
65531            "type": "string",
65532            "uniqueItems": true
65533          },
65534          {
65535            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
65536            "in": "query",
65537            "name": "fieldManager",
65538            "type": "string",
65539            "uniqueItems": true
65540          }
65541        ],
65542        "produces": [
65543          "application/json",
65544          "application/yaml",
65545          "application/vnd.kubernetes.protobuf"
65546        ],
65547        "responses": {
65548          "200": {
65549            "description": "OK",
65550            "schema": {
65551              "$ref": "#/definitions/io.k8s.api.networking.v1.IngressClass"
65552            }
65553          },
65554          "201": {
65555            "description": "Created",
65556            "schema": {
65557              "$ref": "#/definitions/io.k8s.api.networking.v1.IngressClass"
65558            }
65559          },
65560          "202": {
65561            "description": "Accepted",
65562            "schema": {
65563              "$ref": "#/definitions/io.k8s.api.networking.v1.IngressClass"
65564            }
65565          },
65566          "401": {
65567            "description": "Unauthorized"
65568          }
65569        },
65570        "schemes": [
65571          "https"
65572        ],
65573        "tags": [
65574          "networking_v1"
65575        ],
65576        "x-kubernetes-action": "post",
65577        "x-kubernetes-group-version-kind": {
65578          "group": "networking.k8s.io",
65579          "kind": "IngressClass",
65580          "version": "v1"
65581        }
65582      }
65583    },
65584    "/apis/networking.k8s.io/v1/ingressclasses/{name}": {
65585      "delete": {
65586        "consumes": [
65587          "*/*"
65588        ],
65589        "description": "delete an IngressClass",
65590        "operationId": "deleteNetworkingV1IngressClass",
65591        "parameters": [
65592          {
65593            "in": "body",
65594            "name": "body",
65595            "schema": {
65596              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
65597            }
65598          },
65599          {
65600            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
65601            "in": "query",
65602            "name": "dryRun",
65603            "type": "string",
65604            "uniqueItems": true
65605          },
65606          {
65607            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
65608            "in": "query",
65609            "name": "gracePeriodSeconds",
65610            "type": "integer",
65611            "uniqueItems": true
65612          },
65613          {
65614            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
65615            "in": "query",
65616            "name": "orphanDependents",
65617            "type": "boolean",
65618            "uniqueItems": true
65619          },
65620          {
65621            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
65622            "in": "query",
65623            "name": "propagationPolicy",
65624            "type": "string",
65625            "uniqueItems": true
65626          }
65627        ],
65628        "produces": [
65629          "application/json",
65630          "application/yaml",
65631          "application/vnd.kubernetes.protobuf"
65632        ],
65633        "responses": {
65634          "200": {
65635            "description": "OK",
65636            "schema": {
65637              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
65638            }
65639          },
65640          "202": {
65641            "description": "Accepted",
65642            "schema": {
65643              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
65644            }
65645          },
65646          "401": {
65647            "description": "Unauthorized"
65648          }
65649        },
65650        "schemes": [
65651          "https"
65652        ],
65653        "tags": [
65654          "networking_v1"
65655        ],
65656        "x-kubernetes-action": "delete",
65657        "x-kubernetes-group-version-kind": {
65658          "group": "networking.k8s.io",
65659          "kind": "IngressClass",
65660          "version": "v1"
65661        }
65662      },
65663      "get": {
65664        "consumes": [
65665          "*/*"
65666        ],
65667        "description": "read the specified IngressClass",
65668        "operationId": "readNetworkingV1IngressClass",
65669        "produces": [
65670          "application/json",
65671          "application/yaml",
65672          "application/vnd.kubernetes.protobuf"
65673        ],
65674        "responses": {
65675          "200": {
65676            "description": "OK",
65677            "schema": {
65678              "$ref": "#/definitions/io.k8s.api.networking.v1.IngressClass"
65679            }
65680          },
65681          "401": {
65682            "description": "Unauthorized"
65683          }
65684        },
65685        "schemes": [
65686          "https"
65687        ],
65688        "tags": [
65689          "networking_v1"
65690        ],
65691        "x-kubernetes-action": "get",
65692        "x-kubernetes-group-version-kind": {
65693          "group": "networking.k8s.io",
65694          "kind": "IngressClass",
65695          "version": "v1"
65696        }
65697      },
65698      "parameters": [
65699        {
65700          "description": "name of the IngressClass",
65701          "in": "path",
65702          "name": "name",
65703          "required": true,
65704          "type": "string",
65705          "uniqueItems": true
65706        },
65707        {
65708          "description": "If 'true', then the output is pretty printed.",
65709          "in": "query",
65710          "name": "pretty",
65711          "type": "string",
65712          "uniqueItems": true
65713        }
65714      ],
65715      "patch": {
65716        "consumes": [
65717          "application/json-patch+json",
65718          "application/merge-patch+json",
65719          "application/strategic-merge-patch+json",
65720          "application/apply-patch+yaml"
65721        ],
65722        "description": "partially update the specified IngressClass",
65723        "operationId": "patchNetworkingV1IngressClass",
65724        "parameters": [
65725          {
65726            "in": "body",
65727            "name": "body",
65728            "required": true,
65729            "schema": {
65730              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
65731            }
65732          },
65733          {
65734            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
65735            "in": "query",
65736            "name": "dryRun",
65737            "type": "string",
65738            "uniqueItems": true
65739          },
65740          {
65741            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
65742            "in": "query",
65743            "name": "fieldManager",
65744            "type": "string",
65745            "uniqueItems": true
65746          },
65747          {
65748            "description": "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.",
65749            "in": "query",
65750            "name": "force",
65751            "type": "boolean",
65752            "uniqueItems": true
65753          }
65754        ],
65755        "produces": [
65756          "application/json",
65757          "application/yaml",
65758          "application/vnd.kubernetes.protobuf"
65759        ],
65760        "responses": {
65761          "200": {
65762            "description": "OK",
65763            "schema": {
65764              "$ref": "#/definitions/io.k8s.api.networking.v1.IngressClass"
65765            }
65766          },
65767          "201": {
65768            "description": "Created",
65769            "schema": {
65770              "$ref": "#/definitions/io.k8s.api.networking.v1.IngressClass"
65771            }
65772          },
65773          "401": {
65774            "description": "Unauthorized"
65775          }
65776        },
65777        "schemes": [
65778          "https"
65779        ],
65780        "tags": [
65781          "networking_v1"
65782        ],
65783        "x-kubernetes-action": "patch",
65784        "x-kubernetes-group-version-kind": {
65785          "group": "networking.k8s.io",
65786          "kind": "IngressClass",
65787          "version": "v1"
65788        }
65789      },
65790      "put": {
65791        "consumes": [
65792          "*/*"
65793        ],
65794        "description": "replace the specified IngressClass",
65795        "operationId": "replaceNetworkingV1IngressClass",
65796        "parameters": [
65797          {
65798            "in": "body",
65799            "name": "body",
65800            "required": true,
65801            "schema": {
65802              "$ref": "#/definitions/io.k8s.api.networking.v1.IngressClass"
65803            }
65804          },
65805          {
65806            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
65807            "in": "query",
65808            "name": "dryRun",
65809            "type": "string",
65810            "uniqueItems": true
65811          },
65812          {
65813            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
65814            "in": "query",
65815            "name": "fieldManager",
65816            "type": "string",
65817            "uniqueItems": true
65818          }
65819        ],
65820        "produces": [
65821          "application/json",
65822          "application/yaml",
65823          "application/vnd.kubernetes.protobuf"
65824        ],
65825        "responses": {
65826          "200": {
65827            "description": "OK",
65828            "schema": {
65829              "$ref": "#/definitions/io.k8s.api.networking.v1.IngressClass"
65830            }
65831          },
65832          "201": {
65833            "description": "Created",
65834            "schema": {
65835              "$ref": "#/definitions/io.k8s.api.networking.v1.IngressClass"
65836            }
65837          },
65838          "401": {
65839            "description": "Unauthorized"
65840          }
65841        },
65842        "schemes": [
65843          "https"
65844        ],
65845        "tags": [
65846          "networking_v1"
65847        ],
65848        "x-kubernetes-action": "put",
65849        "x-kubernetes-group-version-kind": {
65850          "group": "networking.k8s.io",
65851          "kind": "IngressClass",
65852          "version": "v1"
65853        }
65854      }
65855    },
65856    "/apis/networking.k8s.io/v1/ingresses": {
65857      "get": {
65858        "consumes": [
65859          "*/*"
65860        ],
65861        "description": "list or watch objects of kind Ingress",
65862        "operationId": "listNetworkingV1IngressForAllNamespaces",
65863        "produces": [
65864          "application/json",
65865          "application/yaml",
65866          "application/vnd.kubernetes.protobuf",
65867          "application/json;stream=watch",
65868          "application/vnd.kubernetes.protobuf;stream=watch"
65869        ],
65870        "responses": {
65871          "200": {
65872            "description": "OK",
65873            "schema": {
65874              "$ref": "#/definitions/io.k8s.api.networking.v1.IngressList"
65875            }
65876          },
65877          "401": {
65878            "description": "Unauthorized"
65879          }
65880        },
65881        "schemes": [
65882          "https"
65883        ],
65884        "tags": [
65885          "networking_v1"
65886        ],
65887        "x-kubernetes-action": "list",
65888        "x-kubernetes-group-version-kind": {
65889          "group": "networking.k8s.io",
65890          "kind": "Ingress",
65891          "version": "v1"
65892        }
65893      },
65894      "parameters": [
65895        {
65896          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
65897          "in": "query",
65898          "name": "allowWatchBookmarks",
65899          "type": "boolean",
65900          "uniqueItems": true
65901        },
65902        {
65903          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
65904          "in": "query",
65905          "name": "continue",
65906          "type": "string",
65907          "uniqueItems": true
65908        },
65909        {
65910          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
65911          "in": "query",
65912          "name": "fieldSelector",
65913          "type": "string",
65914          "uniqueItems": true
65915        },
65916        {
65917          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
65918          "in": "query",
65919          "name": "labelSelector",
65920          "type": "string",
65921          "uniqueItems": true
65922        },
65923        {
65924          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
65925          "in": "query",
65926          "name": "limit",
65927          "type": "integer",
65928          "uniqueItems": true
65929        },
65930        {
65931          "description": "If 'true', then the output is pretty printed.",
65932          "in": "query",
65933          "name": "pretty",
65934          "type": "string",
65935          "uniqueItems": true
65936        },
65937        {
65938          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
65939          "in": "query",
65940          "name": "resourceVersion",
65941          "type": "string",
65942          "uniqueItems": true
65943        },
65944        {
65945          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
65946          "in": "query",
65947          "name": "resourceVersionMatch",
65948          "type": "string",
65949          "uniqueItems": true
65950        },
65951        {
65952          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
65953          "in": "query",
65954          "name": "timeoutSeconds",
65955          "type": "integer",
65956          "uniqueItems": true
65957        },
65958        {
65959          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
65960          "in": "query",
65961          "name": "watch",
65962          "type": "boolean",
65963          "uniqueItems": true
65964        }
65965      ]
65966    },
65967    "/apis/networking.k8s.io/v1/namespaces/{namespace}/ingresses": {
65968      "delete": {
65969        "consumes": [
65970          "*/*"
65971        ],
65972        "description": "delete collection of Ingress",
65973        "operationId": "deleteNetworkingV1CollectionNamespacedIngress",
65974        "parameters": [
65975          {
65976            "in": "body",
65977            "name": "body",
65978            "schema": {
65979              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
65980            }
65981          },
65982          {
65983            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
65984            "in": "query",
65985            "name": "continue",
65986            "type": "string",
65987            "uniqueItems": true
65988          },
65989          {
65990            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
65991            "in": "query",
65992            "name": "dryRun",
65993            "type": "string",
65994            "uniqueItems": true
65995          },
65996          {
65997            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
65998            "in": "query",
65999            "name": "fieldSelector",
66000            "type": "string",
66001            "uniqueItems": true
66002          },
66003          {
66004            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
66005            "in": "query",
66006            "name": "gracePeriodSeconds",
66007            "type": "integer",
66008            "uniqueItems": true
66009          },
66010          {
66011            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
66012            "in": "query",
66013            "name": "labelSelector",
66014            "type": "string",
66015            "uniqueItems": true
66016          },
66017          {
66018            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
66019            "in": "query",
66020            "name": "limit",
66021            "type": "integer",
66022            "uniqueItems": true
66023          },
66024          {
66025            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
66026            "in": "query",
66027            "name": "orphanDependents",
66028            "type": "boolean",
66029            "uniqueItems": true
66030          },
66031          {
66032            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
66033            "in": "query",
66034            "name": "propagationPolicy",
66035            "type": "string",
66036            "uniqueItems": true
66037          },
66038          {
66039            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
66040            "in": "query",
66041            "name": "resourceVersion",
66042            "type": "string",
66043            "uniqueItems": true
66044          },
66045          {
66046            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
66047            "in": "query",
66048            "name": "resourceVersionMatch",
66049            "type": "string",
66050            "uniqueItems": true
66051          },
66052          {
66053            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
66054            "in": "query",
66055            "name": "timeoutSeconds",
66056            "type": "integer",
66057            "uniqueItems": true
66058          }
66059        ],
66060        "produces": [
66061          "application/json",
66062          "application/yaml",
66063          "application/vnd.kubernetes.protobuf"
66064        ],
66065        "responses": {
66066          "200": {
66067            "description": "OK",
66068            "schema": {
66069              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
66070            }
66071          },
66072          "401": {
66073            "description": "Unauthorized"
66074          }
66075        },
66076        "schemes": [
66077          "https"
66078        ],
66079        "tags": [
66080          "networking_v1"
66081        ],
66082        "x-kubernetes-action": "deletecollection",
66083        "x-kubernetes-group-version-kind": {
66084          "group": "networking.k8s.io",
66085          "kind": "Ingress",
66086          "version": "v1"
66087        }
66088      },
66089      "get": {
66090        "consumes": [
66091          "*/*"
66092        ],
66093        "description": "list or watch objects of kind Ingress",
66094        "operationId": "listNetworkingV1NamespacedIngress",
66095        "parameters": [
66096          {
66097            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
66098            "in": "query",
66099            "name": "allowWatchBookmarks",
66100            "type": "boolean",
66101            "uniqueItems": true
66102          },
66103          {
66104            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
66105            "in": "query",
66106            "name": "continue",
66107            "type": "string",
66108            "uniqueItems": true
66109          },
66110          {
66111            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
66112            "in": "query",
66113            "name": "fieldSelector",
66114            "type": "string",
66115            "uniqueItems": true
66116          },
66117          {
66118            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
66119            "in": "query",
66120            "name": "labelSelector",
66121            "type": "string",
66122            "uniqueItems": true
66123          },
66124          {
66125            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
66126            "in": "query",
66127            "name": "limit",
66128            "type": "integer",
66129            "uniqueItems": true
66130          },
66131          {
66132            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
66133            "in": "query",
66134            "name": "resourceVersion",
66135            "type": "string",
66136            "uniqueItems": true
66137          },
66138          {
66139            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
66140            "in": "query",
66141            "name": "resourceVersionMatch",
66142            "type": "string",
66143            "uniqueItems": true
66144          },
66145          {
66146            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
66147            "in": "query",
66148            "name": "timeoutSeconds",
66149            "type": "integer",
66150            "uniqueItems": true
66151          },
66152          {
66153            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
66154            "in": "query",
66155            "name": "watch",
66156            "type": "boolean",
66157            "uniqueItems": true
66158          }
66159        ],
66160        "produces": [
66161          "application/json",
66162          "application/yaml",
66163          "application/vnd.kubernetes.protobuf",
66164          "application/json;stream=watch",
66165          "application/vnd.kubernetes.protobuf;stream=watch"
66166        ],
66167        "responses": {
66168          "200": {
66169            "description": "OK",
66170            "schema": {
66171              "$ref": "#/definitions/io.k8s.api.networking.v1.IngressList"
66172            }
66173          },
66174          "401": {
66175            "description": "Unauthorized"
66176          }
66177        },
66178        "schemes": [
66179          "https"
66180        ],
66181        "tags": [
66182          "networking_v1"
66183        ],
66184        "x-kubernetes-action": "list",
66185        "x-kubernetes-group-version-kind": {
66186          "group": "networking.k8s.io",
66187          "kind": "Ingress",
66188          "version": "v1"
66189        }
66190      },
66191      "parameters": [
66192        {
66193          "description": "object name and auth scope, such as for teams and projects",
66194          "in": "path",
66195          "name": "namespace",
66196          "required": true,
66197          "type": "string",
66198          "uniqueItems": true
66199        },
66200        {
66201          "description": "If 'true', then the output is pretty printed.",
66202          "in": "query",
66203          "name": "pretty",
66204          "type": "string",
66205          "uniqueItems": true
66206        }
66207      ],
66208      "post": {
66209        "consumes": [
66210          "*/*"
66211        ],
66212        "description": "create an Ingress",
66213        "operationId": "createNetworkingV1NamespacedIngress",
66214        "parameters": [
66215          {
66216            "in": "body",
66217            "name": "body",
66218            "required": true,
66219            "schema": {
66220              "$ref": "#/definitions/io.k8s.api.networking.v1.Ingress"
66221            }
66222          },
66223          {
66224            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
66225            "in": "query",
66226            "name": "dryRun",
66227            "type": "string",
66228            "uniqueItems": true
66229          },
66230          {
66231            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
66232            "in": "query",
66233            "name": "fieldManager",
66234            "type": "string",
66235            "uniqueItems": true
66236          }
66237        ],
66238        "produces": [
66239          "application/json",
66240          "application/yaml",
66241          "application/vnd.kubernetes.protobuf"
66242        ],
66243        "responses": {
66244          "200": {
66245            "description": "OK",
66246            "schema": {
66247              "$ref": "#/definitions/io.k8s.api.networking.v1.Ingress"
66248            }
66249          },
66250          "201": {
66251            "description": "Created",
66252            "schema": {
66253              "$ref": "#/definitions/io.k8s.api.networking.v1.Ingress"
66254            }
66255          },
66256          "202": {
66257            "description": "Accepted",
66258            "schema": {
66259              "$ref": "#/definitions/io.k8s.api.networking.v1.Ingress"
66260            }
66261          },
66262          "401": {
66263            "description": "Unauthorized"
66264          }
66265        },
66266        "schemes": [
66267          "https"
66268        ],
66269        "tags": [
66270          "networking_v1"
66271        ],
66272        "x-kubernetes-action": "post",
66273        "x-kubernetes-group-version-kind": {
66274          "group": "networking.k8s.io",
66275          "kind": "Ingress",
66276          "version": "v1"
66277        }
66278      }
66279    },
66280    "/apis/networking.k8s.io/v1/namespaces/{namespace}/ingresses/{name}": {
66281      "delete": {
66282        "consumes": [
66283          "*/*"
66284        ],
66285        "description": "delete an Ingress",
66286        "operationId": "deleteNetworkingV1NamespacedIngress",
66287        "parameters": [
66288          {
66289            "in": "body",
66290            "name": "body",
66291            "schema": {
66292              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
66293            }
66294          },
66295          {
66296            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
66297            "in": "query",
66298            "name": "dryRun",
66299            "type": "string",
66300            "uniqueItems": true
66301          },
66302          {
66303            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
66304            "in": "query",
66305            "name": "gracePeriodSeconds",
66306            "type": "integer",
66307            "uniqueItems": true
66308          },
66309          {
66310            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
66311            "in": "query",
66312            "name": "orphanDependents",
66313            "type": "boolean",
66314            "uniqueItems": true
66315          },
66316          {
66317            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
66318            "in": "query",
66319            "name": "propagationPolicy",
66320            "type": "string",
66321            "uniqueItems": true
66322          }
66323        ],
66324        "produces": [
66325          "application/json",
66326          "application/yaml",
66327          "application/vnd.kubernetes.protobuf"
66328        ],
66329        "responses": {
66330          "200": {
66331            "description": "OK",
66332            "schema": {
66333              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
66334            }
66335          },
66336          "202": {
66337            "description": "Accepted",
66338            "schema": {
66339              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
66340            }
66341          },
66342          "401": {
66343            "description": "Unauthorized"
66344          }
66345        },
66346        "schemes": [
66347          "https"
66348        ],
66349        "tags": [
66350          "networking_v1"
66351        ],
66352        "x-kubernetes-action": "delete",
66353        "x-kubernetes-group-version-kind": {
66354          "group": "networking.k8s.io",
66355          "kind": "Ingress",
66356          "version": "v1"
66357        }
66358      },
66359      "get": {
66360        "consumes": [
66361          "*/*"
66362        ],
66363        "description": "read the specified Ingress",
66364        "operationId": "readNetworkingV1NamespacedIngress",
66365        "produces": [
66366          "application/json",
66367          "application/yaml",
66368          "application/vnd.kubernetes.protobuf"
66369        ],
66370        "responses": {
66371          "200": {
66372            "description": "OK",
66373            "schema": {
66374              "$ref": "#/definitions/io.k8s.api.networking.v1.Ingress"
66375            }
66376          },
66377          "401": {
66378            "description": "Unauthorized"
66379          }
66380        },
66381        "schemes": [
66382          "https"
66383        ],
66384        "tags": [
66385          "networking_v1"
66386        ],
66387        "x-kubernetes-action": "get",
66388        "x-kubernetes-group-version-kind": {
66389          "group": "networking.k8s.io",
66390          "kind": "Ingress",
66391          "version": "v1"
66392        }
66393      },
66394      "parameters": [
66395        {
66396          "description": "name of the Ingress",
66397          "in": "path",
66398          "name": "name",
66399          "required": true,
66400          "type": "string",
66401          "uniqueItems": true
66402        },
66403        {
66404          "description": "object name and auth scope, such as for teams and projects",
66405          "in": "path",
66406          "name": "namespace",
66407          "required": true,
66408          "type": "string",
66409          "uniqueItems": true
66410        },
66411        {
66412          "description": "If 'true', then the output is pretty printed.",
66413          "in": "query",
66414          "name": "pretty",
66415          "type": "string",
66416          "uniqueItems": true
66417        }
66418      ],
66419      "patch": {
66420        "consumes": [
66421          "application/json-patch+json",
66422          "application/merge-patch+json",
66423          "application/strategic-merge-patch+json",
66424          "application/apply-patch+yaml"
66425        ],
66426        "description": "partially update the specified Ingress",
66427        "operationId": "patchNetworkingV1NamespacedIngress",
66428        "parameters": [
66429          {
66430            "in": "body",
66431            "name": "body",
66432            "required": true,
66433            "schema": {
66434              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
66435            }
66436          },
66437          {
66438            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
66439            "in": "query",
66440            "name": "dryRun",
66441            "type": "string",
66442            "uniqueItems": true
66443          },
66444          {
66445            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
66446            "in": "query",
66447            "name": "fieldManager",
66448            "type": "string",
66449            "uniqueItems": true
66450          },
66451          {
66452            "description": "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.",
66453            "in": "query",
66454            "name": "force",
66455            "type": "boolean",
66456            "uniqueItems": true
66457          }
66458        ],
66459        "produces": [
66460          "application/json",
66461          "application/yaml",
66462          "application/vnd.kubernetes.protobuf"
66463        ],
66464        "responses": {
66465          "200": {
66466            "description": "OK",
66467            "schema": {
66468              "$ref": "#/definitions/io.k8s.api.networking.v1.Ingress"
66469            }
66470          },
66471          "201": {
66472            "description": "Created",
66473            "schema": {
66474              "$ref": "#/definitions/io.k8s.api.networking.v1.Ingress"
66475            }
66476          },
66477          "401": {
66478            "description": "Unauthorized"
66479          }
66480        },
66481        "schemes": [
66482          "https"
66483        ],
66484        "tags": [
66485          "networking_v1"
66486        ],
66487        "x-kubernetes-action": "patch",
66488        "x-kubernetes-group-version-kind": {
66489          "group": "networking.k8s.io",
66490          "kind": "Ingress",
66491          "version": "v1"
66492        }
66493      },
66494      "put": {
66495        "consumes": [
66496          "*/*"
66497        ],
66498        "description": "replace the specified Ingress",
66499        "operationId": "replaceNetworkingV1NamespacedIngress",
66500        "parameters": [
66501          {
66502            "in": "body",
66503            "name": "body",
66504            "required": true,
66505            "schema": {
66506              "$ref": "#/definitions/io.k8s.api.networking.v1.Ingress"
66507            }
66508          },
66509          {
66510            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
66511            "in": "query",
66512            "name": "dryRun",
66513            "type": "string",
66514            "uniqueItems": true
66515          },
66516          {
66517            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
66518            "in": "query",
66519            "name": "fieldManager",
66520            "type": "string",
66521            "uniqueItems": true
66522          }
66523        ],
66524        "produces": [
66525          "application/json",
66526          "application/yaml",
66527          "application/vnd.kubernetes.protobuf"
66528        ],
66529        "responses": {
66530          "200": {
66531            "description": "OK",
66532            "schema": {
66533              "$ref": "#/definitions/io.k8s.api.networking.v1.Ingress"
66534            }
66535          },
66536          "201": {
66537            "description": "Created",
66538            "schema": {
66539              "$ref": "#/definitions/io.k8s.api.networking.v1.Ingress"
66540            }
66541          },
66542          "401": {
66543            "description": "Unauthorized"
66544          }
66545        },
66546        "schemes": [
66547          "https"
66548        ],
66549        "tags": [
66550          "networking_v1"
66551        ],
66552        "x-kubernetes-action": "put",
66553        "x-kubernetes-group-version-kind": {
66554          "group": "networking.k8s.io",
66555          "kind": "Ingress",
66556          "version": "v1"
66557        }
66558      }
66559    },
66560    "/apis/networking.k8s.io/v1/namespaces/{namespace}/ingresses/{name}/status": {
66561      "get": {
66562        "consumes": [
66563          "*/*"
66564        ],
66565        "description": "read status of the specified Ingress",
66566        "operationId": "readNetworkingV1NamespacedIngressStatus",
66567        "produces": [
66568          "application/json",
66569          "application/yaml",
66570          "application/vnd.kubernetes.protobuf"
66571        ],
66572        "responses": {
66573          "200": {
66574            "description": "OK",
66575            "schema": {
66576              "$ref": "#/definitions/io.k8s.api.networking.v1.Ingress"
66577            }
66578          },
66579          "401": {
66580            "description": "Unauthorized"
66581          }
66582        },
66583        "schemes": [
66584          "https"
66585        ],
66586        "tags": [
66587          "networking_v1"
66588        ],
66589        "x-kubernetes-action": "get",
66590        "x-kubernetes-group-version-kind": {
66591          "group": "networking.k8s.io",
66592          "kind": "Ingress",
66593          "version": "v1"
66594        }
66595      },
66596      "parameters": [
66597        {
66598          "description": "name of the Ingress",
66599          "in": "path",
66600          "name": "name",
66601          "required": true,
66602          "type": "string",
66603          "uniqueItems": true
66604        },
66605        {
66606          "description": "object name and auth scope, such as for teams and projects",
66607          "in": "path",
66608          "name": "namespace",
66609          "required": true,
66610          "type": "string",
66611          "uniqueItems": true
66612        },
66613        {
66614          "description": "If 'true', then the output is pretty printed.",
66615          "in": "query",
66616          "name": "pretty",
66617          "type": "string",
66618          "uniqueItems": true
66619        }
66620      ],
66621      "patch": {
66622        "consumes": [
66623          "application/json-patch+json",
66624          "application/merge-patch+json",
66625          "application/strategic-merge-patch+json",
66626          "application/apply-patch+yaml"
66627        ],
66628        "description": "partially update status of the specified Ingress",
66629        "operationId": "patchNetworkingV1NamespacedIngressStatus",
66630        "parameters": [
66631          {
66632            "in": "body",
66633            "name": "body",
66634            "required": true,
66635            "schema": {
66636              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
66637            }
66638          },
66639          {
66640            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
66641            "in": "query",
66642            "name": "dryRun",
66643            "type": "string",
66644            "uniqueItems": true
66645          },
66646          {
66647            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
66648            "in": "query",
66649            "name": "fieldManager",
66650            "type": "string",
66651            "uniqueItems": true
66652          },
66653          {
66654            "description": "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.",
66655            "in": "query",
66656            "name": "force",
66657            "type": "boolean",
66658            "uniqueItems": true
66659          }
66660        ],
66661        "produces": [
66662          "application/json",
66663          "application/yaml",
66664          "application/vnd.kubernetes.protobuf"
66665        ],
66666        "responses": {
66667          "200": {
66668            "description": "OK",
66669            "schema": {
66670              "$ref": "#/definitions/io.k8s.api.networking.v1.Ingress"
66671            }
66672          },
66673          "201": {
66674            "description": "Created",
66675            "schema": {
66676              "$ref": "#/definitions/io.k8s.api.networking.v1.Ingress"
66677            }
66678          },
66679          "401": {
66680            "description": "Unauthorized"
66681          }
66682        },
66683        "schemes": [
66684          "https"
66685        ],
66686        "tags": [
66687          "networking_v1"
66688        ],
66689        "x-kubernetes-action": "patch",
66690        "x-kubernetes-group-version-kind": {
66691          "group": "networking.k8s.io",
66692          "kind": "Ingress",
66693          "version": "v1"
66694        }
66695      },
66696      "put": {
66697        "consumes": [
66698          "*/*"
66699        ],
66700        "description": "replace status of the specified Ingress",
66701        "operationId": "replaceNetworkingV1NamespacedIngressStatus",
66702        "parameters": [
66703          {
66704            "in": "body",
66705            "name": "body",
66706            "required": true,
66707            "schema": {
66708              "$ref": "#/definitions/io.k8s.api.networking.v1.Ingress"
66709            }
66710          },
66711          {
66712            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
66713            "in": "query",
66714            "name": "dryRun",
66715            "type": "string",
66716            "uniqueItems": true
66717          },
66718          {
66719            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
66720            "in": "query",
66721            "name": "fieldManager",
66722            "type": "string",
66723            "uniqueItems": true
66724          }
66725        ],
66726        "produces": [
66727          "application/json",
66728          "application/yaml",
66729          "application/vnd.kubernetes.protobuf"
66730        ],
66731        "responses": {
66732          "200": {
66733            "description": "OK",
66734            "schema": {
66735              "$ref": "#/definitions/io.k8s.api.networking.v1.Ingress"
66736            }
66737          },
66738          "201": {
66739            "description": "Created",
66740            "schema": {
66741              "$ref": "#/definitions/io.k8s.api.networking.v1.Ingress"
66742            }
66743          },
66744          "401": {
66745            "description": "Unauthorized"
66746          }
66747        },
66748        "schemes": [
66749          "https"
66750        ],
66751        "tags": [
66752          "networking_v1"
66753        ],
66754        "x-kubernetes-action": "put",
66755        "x-kubernetes-group-version-kind": {
66756          "group": "networking.k8s.io",
66757          "kind": "Ingress",
66758          "version": "v1"
66759        }
66760      }
66761    },
66762    "/apis/networking.k8s.io/v1/namespaces/{namespace}/networkpolicies": {
66763      "delete": {
66764        "consumes": [
66765          "*/*"
66766        ],
66767        "description": "delete collection of NetworkPolicy",
66768        "operationId": "deleteNetworkingV1CollectionNamespacedNetworkPolicy",
66769        "parameters": [
66770          {
66771            "in": "body",
66772            "name": "body",
66773            "schema": {
66774              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
66775            }
66776          },
66777          {
66778            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
66779            "in": "query",
66780            "name": "continue",
66781            "type": "string",
66782            "uniqueItems": true
66783          },
66784          {
66785            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
66786            "in": "query",
66787            "name": "dryRun",
66788            "type": "string",
66789            "uniqueItems": true
66790          },
66791          {
66792            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
66793            "in": "query",
66794            "name": "fieldSelector",
66795            "type": "string",
66796            "uniqueItems": true
66797          },
66798          {
66799            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
66800            "in": "query",
66801            "name": "gracePeriodSeconds",
66802            "type": "integer",
66803            "uniqueItems": true
66804          },
66805          {
66806            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
66807            "in": "query",
66808            "name": "labelSelector",
66809            "type": "string",
66810            "uniqueItems": true
66811          },
66812          {
66813            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
66814            "in": "query",
66815            "name": "limit",
66816            "type": "integer",
66817            "uniqueItems": true
66818          },
66819          {
66820            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
66821            "in": "query",
66822            "name": "orphanDependents",
66823            "type": "boolean",
66824            "uniqueItems": true
66825          },
66826          {
66827            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
66828            "in": "query",
66829            "name": "propagationPolicy",
66830            "type": "string",
66831            "uniqueItems": true
66832          },
66833          {
66834            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
66835            "in": "query",
66836            "name": "resourceVersion",
66837            "type": "string",
66838            "uniqueItems": true
66839          },
66840          {
66841            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
66842            "in": "query",
66843            "name": "resourceVersionMatch",
66844            "type": "string",
66845            "uniqueItems": true
66846          },
66847          {
66848            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
66849            "in": "query",
66850            "name": "timeoutSeconds",
66851            "type": "integer",
66852            "uniqueItems": true
66853          }
66854        ],
66855        "produces": [
66856          "application/json",
66857          "application/yaml",
66858          "application/vnd.kubernetes.protobuf"
66859        ],
66860        "responses": {
66861          "200": {
66862            "description": "OK",
66863            "schema": {
66864              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
66865            }
66866          },
66867          "401": {
66868            "description": "Unauthorized"
66869          }
66870        },
66871        "schemes": [
66872          "https"
66873        ],
66874        "tags": [
66875          "networking_v1"
66876        ],
66877        "x-kubernetes-action": "deletecollection",
66878        "x-kubernetes-group-version-kind": {
66879          "group": "networking.k8s.io",
66880          "kind": "NetworkPolicy",
66881          "version": "v1"
66882        }
66883      },
66884      "get": {
66885        "consumes": [
66886          "*/*"
66887        ],
66888        "description": "list or watch objects of kind NetworkPolicy",
66889        "operationId": "listNetworkingV1NamespacedNetworkPolicy",
66890        "parameters": [
66891          {
66892            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
66893            "in": "query",
66894            "name": "allowWatchBookmarks",
66895            "type": "boolean",
66896            "uniqueItems": true
66897          },
66898          {
66899            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
66900            "in": "query",
66901            "name": "continue",
66902            "type": "string",
66903            "uniqueItems": true
66904          },
66905          {
66906            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
66907            "in": "query",
66908            "name": "fieldSelector",
66909            "type": "string",
66910            "uniqueItems": true
66911          },
66912          {
66913            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
66914            "in": "query",
66915            "name": "labelSelector",
66916            "type": "string",
66917            "uniqueItems": true
66918          },
66919          {
66920            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
66921            "in": "query",
66922            "name": "limit",
66923            "type": "integer",
66924            "uniqueItems": true
66925          },
66926          {
66927            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
66928            "in": "query",
66929            "name": "resourceVersion",
66930            "type": "string",
66931            "uniqueItems": true
66932          },
66933          {
66934            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
66935            "in": "query",
66936            "name": "resourceVersionMatch",
66937            "type": "string",
66938            "uniqueItems": true
66939          },
66940          {
66941            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
66942            "in": "query",
66943            "name": "timeoutSeconds",
66944            "type": "integer",
66945            "uniqueItems": true
66946          },
66947          {
66948            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
66949            "in": "query",
66950            "name": "watch",
66951            "type": "boolean",
66952            "uniqueItems": true
66953          }
66954        ],
66955        "produces": [
66956          "application/json",
66957          "application/yaml",
66958          "application/vnd.kubernetes.protobuf",
66959          "application/json;stream=watch",
66960          "application/vnd.kubernetes.protobuf;stream=watch"
66961        ],
66962        "responses": {
66963          "200": {
66964            "description": "OK",
66965            "schema": {
66966              "$ref": "#/definitions/io.k8s.api.networking.v1.NetworkPolicyList"
66967            }
66968          },
66969          "401": {
66970            "description": "Unauthorized"
66971          }
66972        },
66973        "schemes": [
66974          "https"
66975        ],
66976        "tags": [
66977          "networking_v1"
66978        ],
66979        "x-kubernetes-action": "list",
66980        "x-kubernetes-group-version-kind": {
66981          "group": "networking.k8s.io",
66982          "kind": "NetworkPolicy",
66983          "version": "v1"
66984        }
66985      },
66986      "parameters": [
66987        {
66988          "description": "object name and auth scope, such as for teams and projects",
66989          "in": "path",
66990          "name": "namespace",
66991          "required": true,
66992          "type": "string",
66993          "uniqueItems": true
66994        },
66995        {
66996          "description": "If 'true', then the output is pretty printed.",
66997          "in": "query",
66998          "name": "pretty",
66999          "type": "string",
67000          "uniqueItems": true
67001        }
67002      ],
67003      "post": {
67004        "consumes": [
67005          "*/*"
67006        ],
67007        "description": "create a NetworkPolicy",
67008        "operationId": "createNetworkingV1NamespacedNetworkPolicy",
67009        "parameters": [
67010          {
67011            "in": "body",
67012            "name": "body",
67013            "required": true,
67014            "schema": {
67015              "$ref": "#/definitions/io.k8s.api.networking.v1.NetworkPolicy"
67016            }
67017          },
67018          {
67019            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
67020            "in": "query",
67021            "name": "dryRun",
67022            "type": "string",
67023            "uniqueItems": true
67024          },
67025          {
67026            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
67027            "in": "query",
67028            "name": "fieldManager",
67029            "type": "string",
67030            "uniqueItems": true
67031          }
67032        ],
67033        "produces": [
67034          "application/json",
67035          "application/yaml",
67036          "application/vnd.kubernetes.protobuf"
67037        ],
67038        "responses": {
67039          "200": {
67040            "description": "OK",
67041            "schema": {
67042              "$ref": "#/definitions/io.k8s.api.networking.v1.NetworkPolicy"
67043            }
67044          },
67045          "201": {
67046            "description": "Created",
67047            "schema": {
67048              "$ref": "#/definitions/io.k8s.api.networking.v1.NetworkPolicy"
67049            }
67050          },
67051          "202": {
67052            "description": "Accepted",
67053            "schema": {
67054              "$ref": "#/definitions/io.k8s.api.networking.v1.NetworkPolicy"
67055            }
67056          },
67057          "401": {
67058            "description": "Unauthorized"
67059          }
67060        },
67061        "schemes": [
67062          "https"
67063        ],
67064        "tags": [
67065          "networking_v1"
67066        ],
67067        "x-kubernetes-action": "post",
67068        "x-kubernetes-group-version-kind": {
67069          "group": "networking.k8s.io",
67070          "kind": "NetworkPolicy",
67071          "version": "v1"
67072        }
67073      }
67074    },
67075    "/apis/networking.k8s.io/v1/namespaces/{namespace}/networkpolicies/{name}": {
67076      "delete": {
67077        "consumes": [
67078          "*/*"
67079        ],
67080        "description": "delete a NetworkPolicy",
67081        "operationId": "deleteNetworkingV1NamespacedNetworkPolicy",
67082        "parameters": [
67083          {
67084            "in": "body",
67085            "name": "body",
67086            "schema": {
67087              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
67088            }
67089          },
67090          {
67091            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
67092            "in": "query",
67093            "name": "dryRun",
67094            "type": "string",
67095            "uniqueItems": true
67096          },
67097          {
67098            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
67099            "in": "query",
67100            "name": "gracePeriodSeconds",
67101            "type": "integer",
67102            "uniqueItems": true
67103          },
67104          {
67105            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
67106            "in": "query",
67107            "name": "orphanDependents",
67108            "type": "boolean",
67109            "uniqueItems": true
67110          },
67111          {
67112            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
67113            "in": "query",
67114            "name": "propagationPolicy",
67115            "type": "string",
67116            "uniqueItems": true
67117          }
67118        ],
67119        "produces": [
67120          "application/json",
67121          "application/yaml",
67122          "application/vnd.kubernetes.protobuf"
67123        ],
67124        "responses": {
67125          "200": {
67126            "description": "OK",
67127            "schema": {
67128              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
67129            }
67130          },
67131          "202": {
67132            "description": "Accepted",
67133            "schema": {
67134              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
67135            }
67136          },
67137          "401": {
67138            "description": "Unauthorized"
67139          }
67140        },
67141        "schemes": [
67142          "https"
67143        ],
67144        "tags": [
67145          "networking_v1"
67146        ],
67147        "x-kubernetes-action": "delete",
67148        "x-kubernetes-group-version-kind": {
67149          "group": "networking.k8s.io",
67150          "kind": "NetworkPolicy",
67151          "version": "v1"
67152        }
67153      },
67154      "get": {
67155        "consumes": [
67156          "*/*"
67157        ],
67158        "description": "read the specified NetworkPolicy",
67159        "operationId": "readNetworkingV1NamespacedNetworkPolicy",
67160        "produces": [
67161          "application/json",
67162          "application/yaml",
67163          "application/vnd.kubernetes.protobuf"
67164        ],
67165        "responses": {
67166          "200": {
67167            "description": "OK",
67168            "schema": {
67169              "$ref": "#/definitions/io.k8s.api.networking.v1.NetworkPolicy"
67170            }
67171          },
67172          "401": {
67173            "description": "Unauthorized"
67174          }
67175        },
67176        "schemes": [
67177          "https"
67178        ],
67179        "tags": [
67180          "networking_v1"
67181        ],
67182        "x-kubernetes-action": "get",
67183        "x-kubernetes-group-version-kind": {
67184          "group": "networking.k8s.io",
67185          "kind": "NetworkPolicy",
67186          "version": "v1"
67187        }
67188      },
67189      "parameters": [
67190        {
67191          "description": "name of the NetworkPolicy",
67192          "in": "path",
67193          "name": "name",
67194          "required": true,
67195          "type": "string",
67196          "uniqueItems": true
67197        },
67198        {
67199          "description": "object name and auth scope, such as for teams and projects",
67200          "in": "path",
67201          "name": "namespace",
67202          "required": true,
67203          "type": "string",
67204          "uniqueItems": true
67205        },
67206        {
67207          "description": "If 'true', then the output is pretty printed.",
67208          "in": "query",
67209          "name": "pretty",
67210          "type": "string",
67211          "uniqueItems": true
67212        }
67213      ],
67214      "patch": {
67215        "consumes": [
67216          "application/json-patch+json",
67217          "application/merge-patch+json",
67218          "application/strategic-merge-patch+json",
67219          "application/apply-patch+yaml"
67220        ],
67221        "description": "partially update the specified NetworkPolicy",
67222        "operationId": "patchNetworkingV1NamespacedNetworkPolicy",
67223        "parameters": [
67224          {
67225            "in": "body",
67226            "name": "body",
67227            "required": true,
67228            "schema": {
67229              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
67230            }
67231          },
67232          {
67233            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
67234            "in": "query",
67235            "name": "dryRun",
67236            "type": "string",
67237            "uniqueItems": true
67238          },
67239          {
67240            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
67241            "in": "query",
67242            "name": "fieldManager",
67243            "type": "string",
67244            "uniqueItems": true
67245          },
67246          {
67247            "description": "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.",
67248            "in": "query",
67249            "name": "force",
67250            "type": "boolean",
67251            "uniqueItems": true
67252          }
67253        ],
67254        "produces": [
67255          "application/json",
67256          "application/yaml",
67257          "application/vnd.kubernetes.protobuf"
67258        ],
67259        "responses": {
67260          "200": {
67261            "description": "OK",
67262            "schema": {
67263              "$ref": "#/definitions/io.k8s.api.networking.v1.NetworkPolicy"
67264            }
67265          },
67266          "201": {
67267            "description": "Created",
67268            "schema": {
67269              "$ref": "#/definitions/io.k8s.api.networking.v1.NetworkPolicy"
67270            }
67271          },
67272          "401": {
67273            "description": "Unauthorized"
67274          }
67275        },
67276        "schemes": [
67277          "https"
67278        ],
67279        "tags": [
67280          "networking_v1"
67281        ],
67282        "x-kubernetes-action": "patch",
67283        "x-kubernetes-group-version-kind": {
67284          "group": "networking.k8s.io",
67285          "kind": "NetworkPolicy",
67286          "version": "v1"
67287        }
67288      },
67289      "put": {
67290        "consumes": [
67291          "*/*"
67292        ],
67293        "description": "replace the specified NetworkPolicy",
67294        "operationId": "replaceNetworkingV1NamespacedNetworkPolicy",
67295        "parameters": [
67296          {
67297            "in": "body",
67298            "name": "body",
67299            "required": true,
67300            "schema": {
67301              "$ref": "#/definitions/io.k8s.api.networking.v1.NetworkPolicy"
67302            }
67303          },
67304          {
67305            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
67306            "in": "query",
67307            "name": "dryRun",
67308            "type": "string",
67309            "uniqueItems": true
67310          },
67311          {
67312            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
67313            "in": "query",
67314            "name": "fieldManager",
67315            "type": "string",
67316            "uniqueItems": true
67317          }
67318        ],
67319        "produces": [
67320          "application/json",
67321          "application/yaml",
67322          "application/vnd.kubernetes.protobuf"
67323        ],
67324        "responses": {
67325          "200": {
67326            "description": "OK",
67327            "schema": {
67328              "$ref": "#/definitions/io.k8s.api.networking.v1.NetworkPolicy"
67329            }
67330          },
67331          "201": {
67332            "description": "Created",
67333            "schema": {
67334              "$ref": "#/definitions/io.k8s.api.networking.v1.NetworkPolicy"
67335            }
67336          },
67337          "401": {
67338            "description": "Unauthorized"
67339          }
67340        },
67341        "schemes": [
67342          "https"
67343        ],
67344        "tags": [
67345          "networking_v1"
67346        ],
67347        "x-kubernetes-action": "put",
67348        "x-kubernetes-group-version-kind": {
67349          "group": "networking.k8s.io",
67350          "kind": "NetworkPolicy",
67351          "version": "v1"
67352        }
67353      }
67354    },
67355    "/apis/networking.k8s.io/v1/networkpolicies": {
67356      "get": {
67357        "consumes": [
67358          "*/*"
67359        ],
67360        "description": "list or watch objects of kind NetworkPolicy",
67361        "operationId": "listNetworkingV1NetworkPolicyForAllNamespaces",
67362        "produces": [
67363          "application/json",
67364          "application/yaml",
67365          "application/vnd.kubernetes.protobuf",
67366          "application/json;stream=watch",
67367          "application/vnd.kubernetes.protobuf;stream=watch"
67368        ],
67369        "responses": {
67370          "200": {
67371            "description": "OK",
67372            "schema": {
67373              "$ref": "#/definitions/io.k8s.api.networking.v1.NetworkPolicyList"
67374            }
67375          },
67376          "401": {
67377            "description": "Unauthorized"
67378          }
67379        },
67380        "schemes": [
67381          "https"
67382        ],
67383        "tags": [
67384          "networking_v1"
67385        ],
67386        "x-kubernetes-action": "list",
67387        "x-kubernetes-group-version-kind": {
67388          "group": "networking.k8s.io",
67389          "kind": "NetworkPolicy",
67390          "version": "v1"
67391        }
67392      },
67393      "parameters": [
67394        {
67395          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
67396          "in": "query",
67397          "name": "allowWatchBookmarks",
67398          "type": "boolean",
67399          "uniqueItems": true
67400        },
67401        {
67402          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
67403          "in": "query",
67404          "name": "continue",
67405          "type": "string",
67406          "uniqueItems": true
67407        },
67408        {
67409          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
67410          "in": "query",
67411          "name": "fieldSelector",
67412          "type": "string",
67413          "uniqueItems": true
67414        },
67415        {
67416          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
67417          "in": "query",
67418          "name": "labelSelector",
67419          "type": "string",
67420          "uniqueItems": true
67421        },
67422        {
67423          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
67424          "in": "query",
67425          "name": "limit",
67426          "type": "integer",
67427          "uniqueItems": true
67428        },
67429        {
67430          "description": "If 'true', then the output is pretty printed.",
67431          "in": "query",
67432          "name": "pretty",
67433          "type": "string",
67434          "uniqueItems": true
67435        },
67436        {
67437          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
67438          "in": "query",
67439          "name": "resourceVersion",
67440          "type": "string",
67441          "uniqueItems": true
67442        },
67443        {
67444          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
67445          "in": "query",
67446          "name": "resourceVersionMatch",
67447          "type": "string",
67448          "uniqueItems": true
67449        },
67450        {
67451          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
67452          "in": "query",
67453          "name": "timeoutSeconds",
67454          "type": "integer",
67455          "uniqueItems": true
67456        },
67457        {
67458          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
67459          "in": "query",
67460          "name": "watch",
67461          "type": "boolean",
67462          "uniqueItems": true
67463        }
67464      ]
67465    },
67466    "/apis/networking.k8s.io/v1/watch/ingressclasses": {
67467      "get": {
67468        "consumes": [
67469          "*/*"
67470        ],
67471        "description": "watch individual changes to a list of IngressClass. deprecated: use the 'watch' parameter with a list operation instead.",
67472        "operationId": "watchNetworkingV1IngressClassList",
67473        "produces": [
67474          "application/json",
67475          "application/yaml",
67476          "application/vnd.kubernetes.protobuf",
67477          "application/json;stream=watch",
67478          "application/vnd.kubernetes.protobuf;stream=watch"
67479        ],
67480        "responses": {
67481          "200": {
67482            "description": "OK",
67483            "schema": {
67484              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
67485            }
67486          },
67487          "401": {
67488            "description": "Unauthorized"
67489          }
67490        },
67491        "schemes": [
67492          "https"
67493        ],
67494        "tags": [
67495          "networking_v1"
67496        ],
67497        "x-kubernetes-action": "watchlist",
67498        "x-kubernetes-group-version-kind": {
67499          "group": "networking.k8s.io",
67500          "kind": "IngressClass",
67501          "version": "v1"
67502        }
67503      },
67504      "parameters": [
67505        {
67506          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
67507          "in": "query",
67508          "name": "allowWatchBookmarks",
67509          "type": "boolean",
67510          "uniqueItems": true
67511        },
67512        {
67513          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
67514          "in": "query",
67515          "name": "continue",
67516          "type": "string",
67517          "uniqueItems": true
67518        },
67519        {
67520          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
67521          "in": "query",
67522          "name": "fieldSelector",
67523          "type": "string",
67524          "uniqueItems": true
67525        },
67526        {
67527          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
67528          "in": "query",
67529          "name": "labelSelector",
67530          "type": "string",
67531          "uniqueItems": true
67532        },
67533        {
67534          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
67535          "in": "query",
67536          "name": "limit",
67537          "type": "integer",
67538          "uniqueItems": true
67539        },
67540        {
67541          "description": "If 'true', then the output is pretty printed.",
67542          "in": "query",
67543          "name": "pretty",
67544          "type": "string",
67545          "uniqueItems": true
67546        },
67547        {
67548          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
67549          "in": "query",
67550          "name": "resourceVersion",
67551          "type": "string",
67552          "uniqueItems": true
67553        },
67554        {
67555          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
67556          "in": "query",
67557          "name": "resourceVersionMatch",
67558          "type": "string",
67559          "uniqueItems": true
67560        },
67561        {
67562          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
67563          "in": "query",
67564          "name": "timeoutSeconds",
67565          "type": "integer",
67566          "uniqueItems": true
67567        },
67568        {
67569          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
67570          "in": "query",
67571          "name": "watch",
67572          "type": "boolean",
67573          "uniqueItems": true
67574        }
67575      ]
67576    },
67577    "/apis/networking.k8s.io/v1/watch/ingressclasses/{name}": {
67578      "get": {
67579        "consumes": [
67580          "*/*"
67581        ],
67582        "description": "watch changes to an object of kind IngressClass. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.",
67583        "operationId": "watchNetworkingV1IngressClass",
67584        "produces": [
67585          "application/json",
67586          "application/yaml",
67587          "application/vnd.kubernetes.protobuf",
67588          "application/json;stream=watch",
67589          "application/vnd.kubernetes.protobuf;stream=watch"
67590        ],
67591        "responses": {
67592          "200": {
67593            "description": "OK",
67594            "schema": {
67595              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
67596            }
67597          },
67598          "401": {
67599            "description": "Unauthorized"
67600          }
67601        },
67602        "schemes": [
67603          "https"
67604        ],
67605        "tags": [
67606          "networking_v1"
67607        ],
67608        "x-kubernetes-action": "watch",
67609        "x-kubernetes-group-version-kind": {
67610          "group": "networking.k8s.io",
67611          "kind": "IngressClass",
67612          "version": "v1"
67613        }
67614      },
67615      "parameters": [
67616        {
67617          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
67618          "in": "query",
67619          "name": "allowWatchBookmarks",
67620          "type": "boolean",
67621          "uniqueItems": true
67622        },
67623        {
67624          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
67625          "in": "query",
67626          "name": "continue",
67627          "type": "string",
67628          "uniqueItems": true
67629        },
67630        {
67631          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
67632          "in": "query",
67633          "name": "fieldSelector",
67634          "type": "string",
67635          "uniqueItems": true
67636        },
67637        {
67638          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
67639          "in": "query",
67640          "name": "labelSelector",
67641          "type": "string",
67642          "uniqueItems": true
67643        },
67644        {
67645          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
67646          "in": "query",
67647          "name": "limit",
67648          "type": "integer",
67649          "uniqueItems": true
67650        },
67651        {
67652          "description": "name of the IngressClass",
67653          "in": "path",
67654          "name": "name",
67655          "required": true,
67656          "type": "string",
67657          "uniqueItems": true
67658        },
67659        {
67660          "description": "If 'true', then the output is pretty printed.",
67661          "in": "query",
67662          "name": "pretty",
67663          "type": "string",
67664          "uniqueItems": true
67665        },
67666        {
67667          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
67668          "in": "query",
67669          "name": "resourceVersion",
67670          "type": "string",
67671          "uniqueItems": true
67672        },
67673        {
67674          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
67675          "in": "query",
67676          "name": "resourceVersionMatch",
67677          "type": "string",
67678          "uniqueItems": true
67679        },
67680        {
67681          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
67682          "in": "query",
67683          "name": "timeoutSeconds",
67684          "type": "integer",
67685          "uniqueItems": true
67686        },
67687        {
67688          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
67689          "in": "query",
67690          "name": "watch",
67691          "type": "boolean",
67692          "uniqueItems": true
67693        }
67694      ]
67695    },
67696    "/apis/networking.k8s.io/v1/watch/ingresses": {
67697      "get": {
67698        "consumes": [
67699          "*/*"
67700        ],
67701        "description": "watch individual changes to a list of Ingress. deprecated: use the 'watch' parameter with a list operation instead.",
67702        "operationId": "watchNetworkingV1IngressListForAllNamespaces",
67703        "produces": [
67704          "application/json",
67705          "application/yaml",
67706          "application/vnd.kubernetes.protobuf",
67707          "application/json;stream=watch",
67708          "application/vnd.kubernetes.protobuf;stream=watch"
67709        ],
67710        "responses": {
67711          "200": {
67712            "description": "OK",
67713            "schema": {
67714              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
67715            }
67716          },
67717          "401": {
67718            "description": "Unauthorized"
67719          }
67720        },
67721        "schemes": [
67722          "https"
67723        ],
67724        "tags": [
67725          "networking_v1"
67726        ],
67727        "x-kubernetes-action": "watchlist",
67728        "x-kubernetes-group-version-kind": {
67729          "group": "networking.k8s.io",
67730          "kind": "Ingress",
67731          "version": "v1"
67732        }
67733      },
67734      "parameters": [
67735        {
67736          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
67737          "in": "query",
67738          "name": "allowWatchBookmarks",
67739          "type": "boolean",
67740          "uniqueItems": true
67741        },
67742        {
67743          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
67744          "in": "query",
67745          "name": "continue",
67746          "type": "string",
67747          "uniqueItems": true
67748        },
67749        {
67750          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
67751          "in": "query",
67752          "name": "fieldSelector",
67753          "type": "string",
67754          "uniqueItems": true
67755        },
67756        {
67757          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
67758          "in": "query",
67759          "name": "labelSelector",
67760          "type": "string",
67761          "uniqueItems": true
67762        },
67763        {
67764          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
67765          "in": "query",
67766          "name": "limit",
67767          "type": "integer",
67768          "uniqueItems": true
67769        },
67770        {
67771          "description": "If 'true', then the output is pretty printed.",
67772          "in": "query",
67773          "name": "pretty",
67774          "type": "string",
67775          "uniqueItems": true
67776        },
67777        {
67778          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
67779          "in": "query",
67780          "name": "resourceVersion",
67781          "type": "string",
67782          "uniqueItems": true
67783        },
67784        {
67785          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
67786          "in": "query",
67787          "name": "resourceVersionMatch",
67788          "type": "string",
67789          "uniqueItems": true
67790        },
67791        {
67792          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
67793          "in": "query",
67794          "name": "timeoutSeconds",
67795          "type": "integer",
67796          "uniqueItems": true
67797        },
67798        {
67799          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
67800          "in": "query",
67801          "name": "watch",
67802          "type": "boolean",
67803          "uniqueItems": true
67804        }
67805      ]
67806    },
67807    "/apis/networking.k8s.io/v1/watch/namespaces/{namespace}/ingresses": {
67808      "get": {
67809        "consumes": [
67810          "*/*"
67811        ],
67812        "description": "watch individual changes to a list of Ingress. deprecated: use the 'watch' parameter with a list operation instead.",
67813        "operationId": "watchNetworkingV1NamespacedIngressList",
67814        "produces": [
67815          "application/json",
67816          "application/yaml",
67817          "application/vnd.kubernetes.protobuf",
67818          "application/json;stream=watch",
67819          "application/vnd.kubernetes.protobuf;stream=watch"
67820        ],
67821        "responses": {
67822          "200": {
67823            "description": "OK",
67824            "schema": {
67825              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
67826            }
67827          },
67828          "401": {
67829            "description": "Unauthorized"
67830          }
67831        },
67832        "schemes": [
67833          "https"
67834        ],
67835        "tags": [
67836          "networking_v1"
67837        ],
67838        "x-kubernetes-action": "watchlist",
67839        "x-kubernetes-group-version-kind": {
67840          "group": "networking.k8s.io",
67841          "kind": "Ingress",
67842          "version": "v1"
67843        }
67844      },
67845      "parameters": [
67846        {
67847          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
67848          "in": "query",
67849          "name": "allowWatchBookmarks",
67850          "type": "boolean",
67851          "uniqueItems": true
67852        },
67853        {
67854          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
67855          "in": "query",
67856          "name": "continue",
67857          "type": "string",
67858          "uniqueItems": true
67859        },
67860        {
67861          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
67862          "in": "query",
67863          "name": "fieldSelector",
67864          "type": "string",
67865          "uniqueItems": true
67866        },
67867        {
67868          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
67869          "in": "query",
67870          "name": "labelSelector",
67871          "type": "string",
67872          "uniqueItems": true
67873        },
67874        {
67875          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
67876          "in": "query",
67877          "name": "limit",
67878          "type": "integer",
67879          "uniqueItems": true
67880        },
67881        {
67882          "description": "object name and auth scope, such as for teams and projects",
67883          "in": "path",
67884          "name": "namespace",
67885          "required": true,
67886          "type": "string",
67887          "uniqueItems": true
67888        },
67889        {
67890          "description": "If 'true', then the output is pretty printed.",
67891          "in": "query",
67892          "name": "pretty",
67893          "type": "string",
67894          "uniqueItems": true
67895        },
67896        {
67897          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
67898          "in": "query",
67899          "name": "resourceVersion",
67900          "type": "string",
67901          "uniqueItems": true
67902        },
67903        {
67904          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
67905          "in": "query",
67906          "name": "resourceVersionMatch",
67907          "type": "string",
67908          "uniqueItems": true
67909        },
67910        {
67911          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
67912          "in": "query",
67913          "name": "timeoutSeconds",
67914          "type": "integer",
67915          "uniqueItems": true
67916        },
67917        {
67918          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
67919          "in": "query",
67920          "name": "watch",
67921          "type": "boolean",
67922          "uniqueItems": true
67923        }
67924      ]
67925    },
67926    "/apis/networking.k8s.io/v1/watch/namespaces/{namespace}/ingresses/{name}": {
67927      "get": {
67928        "consumes": [
67929          "*/*"
67930        ],
67931        "description": "watch changes to an object of kind Ingress. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.",
67932        "operationId": "watchNetworkingV1NamespacedIngress",
67933        "produces": [
67934          "application/json",
67935          "application/yaml",
67936          "application/vnd.kubernetes.protobuf",
67937          "application/json;stream=watch",
67938          "application/vnd.kubernetes.protobuf;stream=watch"
67939        ],
67940        "responses": {
67941          "200": {
67942            "description": "OK",
67943            "schema": {
67944              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
67945            }
67946          },
67947          "401": {
67948            "description": "Unauthorized"
67949          }
67950        },
67951        "schemes": [
67952          "https"
67953        ],
67954        "tags": [
67955          "networking_v1"
67956        ],
67957        "x-kubernetes-action": "watch",
67958        "x-kubernetes-group-version-kind": {
67959          "group": "networking.k8s.io",
67960          "kind": "Ingress",
67961          "version": "v1"
67962        }
67963      },
67964      "parameters": [
67965        {
67966          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
67967          "in": "query",
67968          "name": "allowWatchBookmarks",
67969          "type": "boolean",
67970          "uniqueItems": true
67971        },
67972        {
67973          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
67974          "in": "query",
67975          "name": "continue",
67976          "type": "string",
67977          "uniqueItems": true
67978        },
67979        {
67980          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
67981          "in": "query",
67982          "name": "fieldSelector",
67983          "type": "string",
67984          "uniqueItems": true
67985        },
67986        {
67987          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
67988          "in": "query",
67989          "name": "labelSelector",
67990          "type": "string",
67991          "uniqueItems": true
67992        },
67993        {
67994          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
67995          "in": "query",
67996          "name": "limit",
67997          "type": "integer",
67998          "uniqueItems": true
67999        },
68000        {
68001          "description": "name of the Ingress",
68002          "in": "path",
68003          "name": "name",
68004          "required": true,
68005          "type": "string",
68006          "uniqueItems": true
68007        },
68008        {
68009          "description": "object name and auth scope, such as for teams and projects",
68010          "in": "path",
68011          "name": "namespace",
68012          "required": true,
68013          "type": "string",
68014          "uniqueItems": true
68015        },
68016        {
68017          "description": "If 'true', then the output is pretty printed.",
68018          "in": "query",
68019          "name": "pretty",
68020          "type": "string",
68021          "uniqueItems": true
68022        },
68023        {
68024          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
68025          "in": "query",
68026          "name": "resourceVersion",
68027          "type": "string",
68028          "uniqueItems": true
68029        },
68030        {
68031          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
68032          "in": "query",
68033          "name": "resourceVersionMatch",
68034          "type": "string",
68035          "uniqueItems": true
68036        },
68037        {
68038          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
68039          "in": "query",
68040          "name": "timeoutSeconds",
68041          "type": "integer",
68042          "uniqueItems": true
68043        },
68044        {
68045          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
68046          "in": "query",
68047          "name": "watch",
68048          "type": "boolean",
68049          "uniqueItems": true
68050        }
68051      ]
68052    },
68053    "/apis/networking.k8s.io/v1/watch/namespaces/{namespace}/networkpolicies": {
68054      "get": {
68055        "consumes": [
68056          "*/*"
68057        ],
68058        "description": "watch individual changes to a list of NetworkPolicy. deprecated: use the 'watch' parameter with a list operation instead.",
68059        "operationId": "watchNetworkingV1NamespacedNetworkPolicyList",
68060        "produces": [
68061          "application/json",
68062          "application/yaml",
68063          "application/vnd.kubernetes.protobuf",
68064          "application/json;stream=watch",
68065          "application/vnd.kubernetes.protobuf;stream=watch"
68066        ],
68067        "responses": {
68068          "200": {
68069            "description": "OK",
68070            "schema": {
68071              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
68072            }
68073          },
68074          "401": {
68075            "description": "Unauthorized"
68076          }
68077        },
68078        "schemes": [
68079          "https"
68080        ],
68081        "tags": [
68082          "networking_v1"
68083        ],
68084        "x-kubernetes-action": "watchlist",
68085        "x-kubernetes-group-version-kind": {
68086          "group": "networking.k8s.io",
68087          "kind": "NetworkPolicy",
68088          "version": "v1"
68089        }
68090      },
68091      "parameters": [
68092        {
68093          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
68094          "in": "query",
68095          "name": "allowWatchBookmarks",
68096          "type": "boolean",
68097          "uniqueItems": true
68098        },
68099        {
68100          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
68101          "in": "query",
68102          "name": "continue",
68103          "type": "string",
68104          "uniqueItems": true
68105        },
68106        {
68107          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
68108          "in": "query",
68109          "name": "fieldSelector",
68110          "type": "string",
68111          "uniqueItems": true
68112        },
68113        {
68114          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
68115          "in": "query",
68116          "name": "labelSelector",
68117          "type": "string",
68118          "uniqueItems": true
68119        },
68120        {
68121          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
68122          "in": "query",
68123          "name": "limit",
68124          "type": "integer",
68125          "uniqueItems": true
68126        },
68127        {
68128          "description": "object name and auth scope, such as for teams and projects",
68129          "in": "path",
68130          "name": "namespace",
68131          "required": true,
68132          "type": "string",
68133          "uniqueItems": true
68134        },
68135        {
68136          "description": "If 'true', then the output is pretty printed.",
68137          "in": "query",
68138          "name": "pretty",
68139          "type": "string",
68140          "uniqueItems": true
68141        },
68142        {
68143          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
68144          "in": "query",
68145          "name": "resourceVersion",
68146          "type": "string",
68147          "uniqueItems": true
68148        },
68149        {
68150          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
68151          "in": "query",
68152          "name": "resourceVersionMatch",
68153          "type": "string",
68154          "uniqueItems": true
68155        },
68156        {
68157          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
68158          "in": "query",
68159          "name": "timeoutSeconds",
68160          "type": "integer",
68161          "uniqueItems": true
68162        },
68163        {
68164          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
68165          "in": "query",
68166          "name": "watch",
68167          "type": "boolean",
68168          "uniqueItems": true
68169        }
68170      ]
68171    },
68172    "/apis/networking.k8s.io/v1/watch/namespaces/{namespace}/networkpolicies/{name}": {
68173      "get": {
68174        "consumes": [
68175          "*/*"
68176        ],
68177        "description": "watch changes to an object of kind NetworkPolicy. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.",
68178        "operationId": "watchNetworkingV1NamespacedNetworkPolicy",
68179        "produces": [
68180          "application/json",
68181          "application/yaml",
68182          "application/vnd.kubernetes.protobuf",
68183          "application/json;stream=watch",
68184          "application/vnd.kubernetes.protobuf;stream=watch"
68185        ],
68186        "responses": {
68187          "200": {
68188            "description": "OK",
68189            "schema": {
68190              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
68191            }
68192          },
68193          "401": {
68194            "description": "Unauthorized"
68195          }
68196        },
68197        "schemes": [
68198          "https"
68199        ],
68200        "tags": [
68201          "networking_v1"
68202        ],
68203        "x-kubernetes-action": "watch",
68204        "x-kubernetes-group-version-kind": {
68205          "group": "networking.k8s.io",
68206          "kind": "NetworkPolicy",
68207          "version": "v1"
68208        }
68209      },
68210      "parameters": [
68211        {
68212          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
68213          "in": "query",
68214          "name": "allowWatchBookmarks",
68215          "type": "boolean",
68216          "uniqueItems": true
68217        },
68218        {
68219          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
68220          "in": "query",
68221          "name": "continue",
68222          "type": "string",
68223          "uniqueItems": true
68224        },
68225        {
68226          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
68227          "in": "query",
68228          "name": "fieldSelector",
68229          "type": "string",
68230          "uniqueItems": true
68231        },
68232        {
68233          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
68234          "in": "query",
68235          "name": "labelSelector",
68236          "type": "string",
68237          "uniqueItems": true
68238        },
68239        {
68240          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
68241          "in": "query",
68242          "name": "limit",
68243          "type": "integer",
68244          "uniqueItems": true
68245        },
68246        {
68247          "description": "name of the NetworkPolicy",
68248          "in": "path",
68249          "name": "name",
68250          "required": true,
68251          "type": "string",
68252          "uniqueItems": true
68253        },
68254        {
68255          "description": "object name and auth scope, such as for teams and projects",
68256          "in": "path",
68257          "name": "namespace",
68258          "required": true,
68259          "type": "string",
68260          "uniqueItems": true
68261        },
68262        {
68263          "description": "If 'true', then the output is pretty printed.",
68264          "in": "query",
68265          "name": "pretty",
68266          "type": "string",
68267          "uniqueItems": true
68268        },
68269        {
68270          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
68271          "in": "query",
68272          "name": "resourceVersion",
68273          "type": "string",
68274          "uniqueItems": true
68275        },
68276        {
68277          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
68278          "in": "query",
68279          "name": "resourceVersionMatch",
68280          "type": "string",
68281          "uniqueItems": true
68282        },
68283        {
68284          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
68285          "in": "query",
68286          "name": "timeoutSeconds",
68287          "type": "integer",
68288          "uniqueItems": true
68289        },
68290        {
68291          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
68292          "in": "query",
68293          "name": "watch",
68294          "type": "boolean",
68295          "uniqueItems": true
68296        }
68297      ]
68298    },
68299    "/apis/networking.k8s.io/v1/watch/networkpolicies": {
68300      "get": {
68301        "consumes": [
68302          "*/*"
68303        ],
68304        "description": "watch individual changes to a list of NetworkPolicy. deprecated: use the 'watch' parameter with a list operation instead.",
68305        "operationId": "watchNetworkingV1NetworkPolicyListForAllNamespaces",
68306        "produces": [
68307          "application/json",
68308          "application/yaml",
68309          "application/vnd.kubernetes.protobuf",
68310          "application/json;stream=watch",
68311          "application/vnd.kubernetes.protobuf;stream=watch"
68312        ],
68313        "responses": {
68314          "200": {
68315            "description": "OK",
68316            "schema": {
68317              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
68318            }
68319          },
68320          "401": {
68321            "description": "Unauthorized"
68322          }
68323        },
68324        "schemes": [
68325          "https"
68326        ],
68327        "tags": [
68328          "networking_v1"
68329        ],
68330        "x-kubernetes-action": "watchlist",
68331        "x-kubernetes-group-version-kind": {
68332          "group": "networking.k8s.io",
68333          "kind": "NetworkPolicy",
68334          "version": "v1"
68335        }
68336      },
68337      "parameters": [
68338        {
68339          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
68340          "in": "query",
68341          "name": "allowWatchBookmarks",
68342          "type": "boolean",
68343          "uniqueItems": true
68344        },
68345        {
68346          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
68347          "in": "query",
68348          "name": "continue",
68349          "type": "string",
68350          "uniqueItems": true
68351        },
68352        {
68353          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
68354          "in": "query",
68355          "name": "fieldSelector",
68356          "type": "string",
68357          "uniqueItems": true
68358        },
68359        {
68360          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
68361          "in": "query",
68362          "name": "labelSelector",
68363          "type": "string",
68364          "uniqueItems": true
68365        },
68366        {
68367          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
68368          "in": "query",
68369          "name": "limit",
68370          "type": "integer",
68371          "uniqueItems": true
68372        },
68373        {
68374          "description": "If 'true', then the output is pretty printed.",
68375          "in": "query",
68376          "name": "pretty",
68377          "type": "string",
68378          "uniqueItems": true
68379        },
68380        {
68381          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
68382          "in": "query",
68383          "name": "resourceVersion",
68384          "type": "string",
68385          "uniqueItems": true
68386        },
68387        {
68388          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
68389          "in": "query",
68390          "name": "resourceVersionMatch",
68391          "type": "string",
68392          "uniqueItems": true
68393        },
68394        {
68395          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
68396          "in": "query",
68397          "name": "timeoutSeconds",
68398          "type": "integer",
68399          "uniqueItems": true
68400        },
68401        {
68402          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
68403          "in": "query",
68404          "name": "watch",
68405          "type": "boolean",
68406          "uniqueItems": true
68407        }
68408      ]
68409    },
68410    "/apis/node.k8s.io/": {
68411      "get": {
68412        "consumes": [
68413          "application/json",
68414          "application/yaml",
68415          "application/vnd.kubernetes.protobuf"
68416        ],
68417        "description": "get information of a group",
68418        "operationId": "getNodeAPIGroup",
68419        "produces": [
68420          "application/json",
68421          "application/yaml",
68422          "application/vnd.kubernetes.protobuf"
68423        ],
68424        "responses": {
68425          "200": {
68426            "description": "OK",
68427            "schema": {
68428              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup"
68429            }
68430          },
68431          "401": {
68432            "description": "Unauthorized"
68433          }
68434        },
68435        "schemes": [
68436          "https"
68437        ],
68438        "tags": [
68439          "node"
68440        ]
68441      }
68442    },
68443    "/apis/node.k8s.io/v1/": {
68444      "get": {
68445        "consumes": [
68446          "application/json",
68447          "application/yaml",
68448          "application/vnd.kubernetes.protobuf"
68449        ],
68450        "description": "get available resources",
68451        "operationId": "getNodeV1APIResources",
68452        "produces": [
68453          "application/json",
68454          "application/yaml",
68455          "application/vnd.kubernetes.protobuf"
68456        ],
68457        "responses": {
68458          "200": {
68459            "description": "OK",
68460            "schema": {
68461              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
68462            }
68463          },
68464          "401": {
68465            "description": "Unauthorized"
68466          }
68467        },
68468        "schemes": [
68469          "https"
68470        ],
68471        "tags": [
68472          "node_v1"
68473        ]
68474      }
68475    },
68476    "/apis/node.k8s.io/v1/runtimeclasses": {
68477      "delete": {
68478        "consumes": [
68479          "*/*"
68480        ],
68481        "description": "delete collection of RuntimeClass",
68482        "operationId": "deleteNodeV1CollectionRuntimeClass",
68483        "parameters": [
68484          {
68485            "in": "body",
68486            "name": "body",
68487            "schema": {
68488              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
68489            }
68490          },
68491          {
68492            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
68493            "in": "query",
68494            "name": "continue",
68495            "type": "string",
68496            "uniqueItems": true
68497          },
68498          {
68499            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
68500            "in": "query",
68501            "name": "dryRun",
68502            "type": "string",
68503            "uniqueItems": true
68504          },
68505          {
68506            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
68507            "in": "query",
68508            "name": "fieldSelector",
68509            "type": "string",
68510            "uniqueItems": true
68511          },
68512          {
68513            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
68514            "in": "query",
68515            "name": "gracePeriodSeconds",
68516            "type": "integer",
68517            "uniqueItems": true
68518          },
68519          {
68520            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
68521            "in": "query",
68522            "name": "labelSelector",
68523            "type": "string",
68524            "uniqueItems": true
68525          },
68526          {
68527            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
68528            "in": "query",
68529            "name": "limit",
68530            "type": "integer",
68531            "uniqueItems": true
68532          },
68533          {
68534            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
68535            "in": "query",
68536            "name": "orphanDependents",
68537            "type": "boolean",
68538            "uniqueItems": true
68539          },
68540          {
68541            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
68542            "in": "query",
68543            "name": "propagationPolicy",
68544            "type": "string",
68545            "uniqueItems": true
68546          },
68547          {
68548            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
68549            "in": "query",
68550            "name": "resourceVersion",
68551            "type": "string",
68552            "uniqueItems": true
68553          },
68554          {
68555            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
68556            "in": "query",
68557            "name": "resourceVersionMatch",
68558            "type": "string",
68559            "uniqueItems": true
68560          },
68561          {
68562            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
68563            "in": "query",
68564            "name": "timeoutSeconds",
68565            "type": "integer",
68566            "uniqueItems": true
68567          }
68568        ],
68569        "produces": [
68570          "application/json",
68571          "application/yaml",
68572          "application/vnd.kubernetes.protobuf"
68573        ],
68574        "responses": {
68575          "200": {
68576            "description": "OK",
68577            "schema": {
68578              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
68579            }
68580          },
68581          "401": {
68582            "description": "Unauthorized"
68583          }
68584        },
68585        "schemes": [
68586          "https"
68587        ],
68588        "tags": [
68589          "node_v1"
68590        ],
68591        "x-kubernetes-action": "deletecollection",
68592        "x-kubernetes-group-version-kind": {
68593          "group": "node.k8s.io",
68594          "kind": "RuntimeClass",
68595          "version": "v1"
68596        }
68597      },
68598      "get": {
68599        "consumes": [
68600          "*/*"
68601        ],
68602        "description": "list or watch objects of kind RuntimeClass",
68603        "operationId": "listNodeV1RuntimeClass",
68604        "parameters": [
68605          {
68606            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
68607            "in": "query",
68608            "name": "allowWatchBookmarks",
68609            "type": "boolean",
68610            "uniqueItems": true
68611          },
68612          {
68613            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
68614            "in": "query",
68615            "name": "continue",
68616            "type": "string",
68617            "uniqueItems": true
68618          },
68619          {
68620            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
68621            "in": "query",
68622            "name": "fieldSelector",
68623            "type": "string",
68624            "uniqueItems": true
68625          },
68626          {
68627            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
68628            "in": "query",
68629            "name": "labelSelector",
68630            "type": "string",
68631            "uniqueItems": true
68632          },
68633          {
68634            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
68635            "in": "query",
68636            "name": "limit",
68637            "type": "integer",
68638            "uniqueItems": true
68639          },
68640          {
68641            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
68642            "in": "query",
68643            "name": "resourceVersion",
68644            "type": "string",
68645            "uniqueItems": true
68646          },
68647          {
68648            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
68649            "in": "query",
68650            "name": "resourceVersionMatch",
68651            "type": "string",
68652            "uniqueItems": true
68653          },
68654          {
68655            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
68656            "in": "query",
68657            "name": "timeoutSeconds",
68658            "type": "integer",
68659            "uniqueItems": true
68660          },
68661          {
68662            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
68663            "in": "query",
68664            "name": "watch",
68665            "type": "boolean",
68666            "uniqueItems": true
68667          }
68668        ],
68669        "produces": [
68670          "application/json",
68671          "application/yaml",
68672          "application/vnd.kubernetes.protobuf",
68673          "application/json;stream=watch",
68674          "application/vnd.kubernetes.protobuf;stream=watch"
68675        ],
68676        "responses": {
68677          "200": {
68678            "description": "OK",
68679            "schema": {
68680              "$ref": "#/definitions/io.k8s.api.node.v1.RuntimeClassList"
68681            }
68682          },
68683          "401": {
68684            "description": "Unauthorized"
68685          }
68686        },
68687        "schemes": [
68688          "https"
68689        ],
68690        "tags": [
68691          "node_v1"
68692        ],
68693        "x-kubernetes-action": "list",
68694        "x-kubernetes-group-version-kind": {
68695          "group": "node.k8s.io",
68696          "kind": "RuntimeClass",
68697          "version": "v1"
68698        }
68699      },
68700      "parameters": [
68701        {
68702          "description": "If 'true', then the output is pretty printed.",
68703          "in": "query",
68704          "name": "pretty",
68705          "type": "string",
68706          "uniqueItems": true
68707        }
68708      ],
68709      "post": {
68710        "consumes": [
68711          "*/*"
68712        ],
68713        "description": "create a RuntimeClass",
68714        "operationId": "createNodeV1RuntimeClass",
68715        "parameters": [
68716          {
68717            "in": "body",
68718            "name": "body",
68719            "required": true,
68720            "schema": {
68721              "$ref": "#/definitions/io.k8s.api.node.v1.RuntimeClass"
68722            }
68723          },
68724          {
68725            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
68726            "in": "query",
68727            "name": "dryRun",
68728            "type": "string",
68729            "uniqueItems": true
68730          },
68731          {
68732            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
68733            "in": "query",
68734            "name": "fieldManager",
68735            "type": "string",
68736            "uniqueItems": true
68737          }
68738        ],
68739        "produces": [
68740          "application/json",
68741          "application/yaml",
68742          "application/vnd.kubernetes.protobuf"
68743        ],
68744        "responses": {
68745          "200": {
68746            "description": "OK",
68747            "schema": {
68748              "$ref": "#/definitions/io.k8s.api.node.v1.RuntimeClass"
68749            }
68750          },
68751          "201": {
68752            "description": "Created",
68753            "schema": {
68754              "$ref": "#/definitions/io.k8s.api.node.v1.RuntimeClass"
68755            }
68756          },
68757          "202": {
68758            "description": "Accepted",
68759            "schema": {
68760              "$ref": "#/definitions/io.k8s.api.node.v1.RuntimeClass"
68761            }
68762          },
68763          "401": {
68764            "description": "Unauthorized"
68765          }
68766        },
68767        "schemes": [
68768          "https"
68769        ],
68770        "tags": [
68771          "node_v1"
68772        ],
68773        "x-kubernetes-action": "post",
68774        "x-kubernetes-group-version-kind": {
68775          "group": "node.k8s.io",
68776          "kind": "RuntimeClass",
68777          "version": "v1"
68778        }
68779      }
68780    },
68781    "/apis/node.k8s.io/v1/runtimeclasses/{name}": {
68782      "delete": {
68783        "consumes": [
68784          "*/*"
68785        ],
68786        "description": "delete a RuntimeClass",
68787        "operationId": "deleteNodeV1RuntimeClass",
68788        "parameters": [
68789          {
68790            "in": "body",
68791            "name": "body",
68792            "schema": {
68793              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
68794            }
68795          },
68796          {
68797            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
68798            "in": "query",
68799            "name": "dryRun",
68800            "type": "string",
68801            "uniqueItems": true
68802          },
68803          {
68804            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
68805            "in": "query",
68806            "name": "gracePeriodSeconds",
68807            "type": "integer",
68808            "uniqueItems": true
68809          },
68810          {
68811            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
68812            "in": "query",
68813            "name": "orphanDependents",
68814            "type": "boolean",
68815            "uniqueItems": true
68816          },
68817          {
68818            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
68819            "in": "query",
68820            "name": "propagationPolicy",
68821            "type": "string",
68822            "uniqueItems": true
68823          }
68824        ],
68825        "produces": [
68826          "application/json",
68827          "application/yaml",
68828          "application/vnd.kubernetes.protobuf"
68829        ],
68830        "responses": {
68831          "200": {
68832            "description": "OK",
68833            "schema": {
68834              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
68835            }
68836          },
68837          "202": {
68838            "description": "Accepted",
68839            "schema": {
68840              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
68841            }
68842          },
68843          "401": {
68844            "description": "Unauthorized"
68845          }
68846        },
68847        "schemes": [
68848          "https"
68849        ],
68850        "tags": [
68851          "node_v1"
68852        ],
68853        "x-kubernetes-action": "delete",
68854        "x-kubernetes-group-version-kind": {
68855          "group": "node.k8s.io",
68856          "kind": "RuntimeClass",
68857          "version": "v1"
68858        }
68859      },
68860      "get": {
68861        "consumes": [
68862          "*/*"
68863        ],
68864        "description": "read the specified RuntimeClass",
68865        "operationId": "readNodeV1RuntimeClass",
68866        "produces": [
68867          "application/json",
68868          "application/yaml",
68869          "application/vnd.kubernetes.protobuf"
68870        ],
68871        "responses": {
68872          "200": {
68873            "description": "OK",
68874            "schema": {
68875              "$ref": "#/definitions/io.k8s.api.node.v1.RuntimeClass"
68876            }
68877          },
68878          "401": {
68879            "description": "Unauthorized"
68880          }
68881        },
68882        "schemes": [
68883          "https"
68884        ],
68885        "tags": [
68886          "node_v1"
68887        ],
68888        "x-kubernetes-action": "get",
68889        "x-kubernetes-group-version-kind": {
68890          "group": "node.k8s.io",
68891          "kind": "RuntimeClass",
68892          "version": "v1"
68893        }
68894      },
68895      "parameters": [
68896        {
68897          "description": "name of the RuntimeClass",
68898          "in": "path",
68899          "name": "name",
68900          "required": true,
68901          "type": "string",
68902          "uniqueItems": true
68903        },
68904        {
68905          "description": "If 'true', then the output is pretty printed.",
68906          "in": "query",
68907          "name": "pretty",
68908          "type": "string",
68909          "uniqueItems": true
68910        }
68911      ],
68912      "patch": {
68913        "consumes": [
68914          "application/json-patch+json",
68915          "application/merge-patch+json",
68916          "application/strategic-merge-patch+json",
68917          "application/apply-patch+yaml"
68918        ],
68919        "description": "partially update the specified RuntimeClass",
68920        "operationId": "patchNodeV1RuntimeClass",
68921        "parameters": [
68922          {
68923            "in": "body",
68924            "name": "body",
68925            "required": true,
68926            "schema": {
68927              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
68928            }
68929          },
68930          {
68931            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
68932            "in": "query",
68933            "name": "dryRun",
68934            "type": "string",
68935            "uniqueItems": true
68936          },
68937          {
68938            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
68939            "in": "query",
68940            "name": "fieldManager",
68941            "type": "string",
68942            "uniqueItems": true
68943          },
68944          {
68945            "description": "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.",
68946            "in": "query",
68947            "name": "force",
68948            "type": "boolean",
68949            "uniqueItems": true
68950          }
68951        ],
68952        "produces": [
68953          "application/json",
68954          "application/yaml",
68955          "application/vnd.kubernetes.protobuf"
68956        ],
68957        "responses": {
68958          "200": {
68959            "description": "OK",
68960            "schema": {
68961              "$ref": "#/definitions/io.k8s.api.node.v1.RuntimeClass"
68962            }
68963          },
68964          "201": {
68965            "description": "Created",
68966            "schema": {
68967              "$ref": "#/definitions/io.k8s.api.node.v1.RuntimeClass"
68968            }
68969          },
68970          "401": {
68971            "description": "Unauthorized"
68972          }
68973        },
68974        "schemes": [
68975          "https"
68976        ],
68977        "tags": [
68978          "node_v1"
68979        ],
68980        "x-kubernetes-action": "patch",
68981        "x-kubernetes-group-version-kind": {
68982          "group": "node.k8s.io",
68983          "kind": "RuntimeClass",
68984          "version": "v1"
68985        }
68986      },
68987      "put": {
68988        "consumes": [
68989          "*/*"
68990        ],
68991        "description": "replace the specified RuntimeClass",
68992        "operationId": "replaceNodeV1RuntimeClass",
68993        "parameters": [
68994          {
68995            "in": "body",
68996            "name": "body",
68997            "required": true,
68998            "schema": {
68999              "$ref": "#/definitions/io.k8s.api.node.v1.RuntimeClass"
69000            }
69001          },
69002          {
69003            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
69004            "in": "query",
69005            "name": "dryRun",
69006            "type": "string",
69007            "uniqueItems": true
69008          },
69009          {
69010            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
69011            "in": "query",
69012            "name": "fieldManager",
69013            "type": "string",
69014            "uniqueItems": true
69015          }
69016        ],
69017        "produces": [
69018          "application/json",
69019          "application/yaml",
69020          "application/vnd.kubernetes.protobuf"
69021        ],
69022        "responses": {
69023          "200": {
69024            "description": "OK",
69025            "schema": {
69026              "$ref": "#/definitions/io.k8s.api.node.v1.RuntimeClass"
69027            }
69028          },
69029          "201": {
69030            "description": "Created",
69031            "schema": {
69032              "$ref": "#/definitions/io.k8s.api.node.v1.RuntimeClass"
69033            }
69034          },
69035          "401": {
69036            "description": "Unauthorized"
69037          }
69038        },
69039        "schemes": [
69040          "https"
69041        ],
69042        "tags": [
69043          "node_v1"
69044        ],
69045        "x-kubernetes-action": "put",
69046        "x-kubernetes-group-version-kind": {
69047          "group": "node.k8s.io",
69048          "kind": "RuntimeClass",
69049          "version": "v1"
69050        }
69051      }
69052    },
69053    "/apis/node.k8s.io/v1/watch/runtimeclasses": {
69054      "get": {
69055        "consumes": [
69056          "*/*"
69057        ],
69058        "description": "watch individual changes to a list of RuntimeClass. deprecated: use the 'watch' parameter with a list operation instead.",
69059        "operationId": "watchNodeV1RuntimeClassList",
69060        "produces": [
69061          "application/json",
69062          "application/yaml",
69063          "application/vnd.kubernetes.protobuf",
69064          "application/json;stream=watch",
69065          "application/vnd.kubernetes.protobuf;stream=watch"
69066        ],
69067        "responses": {
69068          "200": {
69069            "description": "OK",
69070            "schema": {
69071              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
69072            }
69073          },
69074          "401": {
69075            "description": "Unauthorized"
69076          }
69077        },
69078        "schemes": [
69079          "https"
69080        ],
69081        "tags": [
69082          "node_v1"
69083        ],
69084        "x-kubernetes-action": "watchlist",
69085        "x-kubernetes-group-version-kind": {
69086          "group": "node.k8s.io",
69087          "kind": "RuntimeClass",
69088          "version": "v1"
69089        }
69090      },
69091      "parameters": [
69092        {
69093          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
69094          "in": "query",
69095          "name": "allowWatchBookmarks",
69096          "type": "boolean",
69097          "uniqueItems": true
69098        },
69099        {
69100          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
69101          "in": "query",
69102          "name": "continue",
69103          "type": "string",
69104          "uniqueItems": true
69105        },
69106        {
69107          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
69108          "in": "query",
69109          "name": "fieldSelector",
69110          "type": "string",
69111          "uniqueItems": true
69112        },
69113        {
69114          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
69115          "in": "query",
69116          "name": "labelSelector",
69117          "type": "string",
69118          "uniqueItems": true
69119        },
69120        {
69121          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
69122          "in": "query",
69123          "name": "limit",
69124          "type": "integer",
69125          "uniqueItems": true
69126        },
69127        {
69128          "description": "If 'true', then the output is pretty printed.",
69129          "in": "query",
69130          "name": "pretty",
69131          "type": "string",
69132          "uniqueItems": true
69133        },
69134        {
69135          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
69136          "in": "query",
69137          "name": "resourceVersion",
69138          "type": "string",
69139          "uniqueItems": true
69140        },
69141        {
69142          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
69143          "in": "query",
69144          "name": "resourceVersionMatch",
69145          "type": "string",
69146          "uniqueItems": true
69147        },
69148        {
69149          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
69150          "in": "query",
69151          "name": "timeoutSeconds",
69152          "type": "integer",
69153          "uniqueItems": true
69154        },
69155        {
69156          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
69157          "in": "query",
69158          "name": "watch",
69159          "type": "boolean",
69160          "uniqueItems": true
69161        }
69162      ]
69163    },
69164    "/apis/node.k8s.io/v1/watch/runtimeclasses/{name}": {
69165      "get": {
69166        "consumes": [
69167          "*/*"
69168        ],
69169        "description": "watch changes to an object of kind RuntimeClass. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.",
69170        "operationId": "watchNodeV1RuntimeClass",
69171        "produces": [
69172          "application/json",
69173          "application/yaml",
69174          "application/vnd.kubernetes.protobuf",
69175          "application/json;stream=watch",
69176          "application/vnd.kubernetes.protobuf;stream=watch"
69177        ],
69178        "responses": {
69179          "200": {
69180            "description": "OK",
69181            "schema": {
69182              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
69183            }
69184          },
69185          "401": {
69186            "description": "Unauthorized"
69187          }
69188        },
69189        "schemes": [
69190          "https"
69191        ],
69192        "tags": [
69193          "node_v1"
69194        ],
69195        "x-kubernetes-action": "watch",
69196        "x-kubernetes-group-version-kind": {
69197          "group": "node.k8s.io",
69198          "kind": "RuntimeClass",
69199          "version": "v1"
69200        }
69201      },
69202      "parameters": [
69203        {
69204          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
69205          "in": "query",
69206          "name": "allowWatchBookmarks",
69207          "type": "boolean",
69208          "uniqueItems": true
69209        },
69210        {
69211          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
69212          "in": "query",
69213          "name": "continue",
69214          "type": "string",
69215          "uniqueItems": true
69216        },
69217        {
69218          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
69219          "in": "query",
69220          "name": "fieldSelector",
69221          "type": "string",
69222          "uniqueItems": true
69223        },
69224        {
69225          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
69226          "in": "query",
69227          "name": "labelSelector",
69228          "type": "string",
69229          "uniqueItems": true
69230        },
69231        {
69232          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
69233          "in": "query",
69234          "name": "limit",
69235          "type": "integer",
69236          "uniqueItems": true
69237        },
69238        {
69239          "description": "name of the RuntimeClass",
69240          "in": "path",
69241          "name": "name",
69242          "required": true,
69243          "type": "string",
69244          "uniqueItems": true
69245        },
69246        {
69247          "description": "If 'true', then the output is pretty printed.",
69248          "in": "query",
69249          "name": "pretty",
69250          "type": "string",
69251          "uniqueItems": true
69252        },
69253        {
69254          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
69255          "in": "query",
69256          "name": "resourceVersion",
69257          "type": "string",
69258          "uniqueItems": true
69259        },
69260        {
69261          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
69262          "in": "query",
69263          "name": "resourceVersionMatch",
69264          "type": "string",
69265          "uniqueItems": true
69266        },
69267        {
69268          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
69269          "in": "query",
69270          "name": "timeoutSeconds",
69271          "type": "integer",
69272          "uniqueItems": true
69273        },
69274        {
69275          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
69276          "in": "query",
69277          "name": "watch",
69278          "type": "boolean",
69279          "uniqueItems": true
69280        }
69281      ]
69282    },
69283    "/apis/node.k8s.io/v1alpha1/": {
69284      "get": {
69285        "consumes": [
69286          "application/json",
69287          "application/yaml",
69288          "application/vnd.kubernetes.protobuf"
69289        ],
69290        "description": "get available resources",
69291        "operationId": "getNodeV1alpha1APIResources",
69292        "produces": [
69293          "application/json",
69294          "application/yaml",
69295          "application/vnd.kubernetes.protobuf"
69296        ],
69297        "responses": {
69298          "200": {
69299            "description": "OK",
69300            "schema": {
69301              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
69302            }
69303          },
69304          "401": {
69305            "description": "Unauthorized"
69306          }
69307        },
69308        "schemes": [
69309          "https"
69310        ],
69311        "tags": [
69312          "node_v1alpha1"
69313        ]
69314      }
69315    },
69316    "/apis/node.k8s.io/v1alpha1/runtimeclasses": {
69317      "delete": {
69318        "consumes": [
69319          "*/*"
69320        ],
69321        "description": "delete collection of RuntimeClass",
69322        "operationId": "deleteNodeV1alpha1CollectionRuntimeClass",
69323        "parameters": [
69324          {
69325            "in": "body",
69326            "name": "body",
69327            "schema": {
69328              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
69329            }
69330          },
69331          {
69332            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
69333            "in": "query",
69334            "name": "continue",
69335            "type": "string",
69336            "uniqueItems": true
69337          },
69338          {
69339            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
69340            "in": "query",
69341            "name": "dryRun",
69342            "type": "string",
69343            "uniqueItems": true
69344          },
69345          {
69346            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
69347            "in": "query",
69348            "name": "fieldSelector",
69349            "type": "string",
69350            "uniqueItems": true
69351          },
69352          {
69353            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
69354            "in": "query",
69355            "name": "gracePeriodSeconds",
69356            "type": "integer",
69357            "uniqueItems": true
69358          },
69359          {
69360            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
69361            "in": "query",
69362            "name": "labelSelector",
69363            "type": "string",
69364            "uniqueItems": true
69365          },
69366          {
69367            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
69368            "in": "query",
69369            "name": "limit",
69370            "type": "integer",
69371            "uniqueItems": true
69372          },
69373          {
69374            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
69375            "in": "query",
69376            "name": "orphanDependents",
69377            "type": "boolean",
69378            "uniqueItems": true
69379          },
69380          {
69381            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
69382            "in": "query",
69383            "name": "propagationPolicy",
69384            "type": "string",
69385            "uniqueItems": true
69386          },
69387          {
69388            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
69389            "in": "query",
69390            "name": "resourceVersion",
69391            "type": "string",
69392            "uniqueItems": true
69393          },
69394          {
69395            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
69396            "in": "query",
69397            "name": "resourceVersionMatch",
69398            "type": "string",
69399            "uniqueItems": true
69400          },
69401          {
69402            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
69403            "in": "query",
69404            "name": "timeoutSeconds",
69405            "type": "integer",
69406            "uniqueItems": true
69407          }
69408        ],
69409        "produces": [
69410          "application/json",
69411          "application/yaml",
69412          "application/vnd.kubernetes.protobuf"
69413        ],
69414        "responses": {
69415          "200": {
69416            "description": "OK",
69417            "schema": {
69418              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
69419            }
69420          },
69421          "401": {
69422            "description": "Unauthorized"
69423          }
69424        },
69425        "schemes": [
69426          "https"
69427        ],
69428        "tags": [
69429          "node_v1alpha1"
69430        ],
69431        "x-kubernetes-action": "deletecollection",
69432        "x-kubernetes-group-version-kind": {
69433          "group": "node.k8s.io",
69434          "kind": "RuntimeClass",
69435          "version": "v1alpha1"
69436        }
69437      },
69438      "get": {
69439        "consumes": [
69440          "*/*"
69441        ],
69442        "description": "list or watch objects of kind RuntimeClass",
69443        "operationId": "listNodeV1alpha1RuntimeClass",
69444        "parameters": [
69445          {
69446            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
69447            "in": "query",
69448            "name": "allowWatchBookmarks",
69449            "type": "boolean",
69450            "uniqueItems": true
69451          },
69452          {
69453            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
69454            "in": "query",
69455            "name": "continue",
69456            "type": "string",
69457            "uniqueItems": true
69458          },
69459          {
69460            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
69461            "in": "query",
69462            "name": "fieldSelector",
69463            "type": "string",
69464            "uniqueItems": true
69465          },
69466          {
69467            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
69468            "in": "query",
69469            "name": "labelSelector",
69470            "type": "string",
69471            "uniqueItems": true
69472          },
69473          {
69474            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
69475            "in": "query",
69476            "name": "limit",
69477            "type": "integer",
69478            "uniqueItems": true
69479          },
69480          {
69481            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
69482            "in": "query",
69483            "name": "resourceVersion",
69484            "type": "string",
69485            "uniqueItems": true
69486          },
69487          {
69488            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
69489            "in": "query",
69490            "name": "resourceVersionMatch",
69491            "type": "string",
69492            "uniqueItems": true
69493          },
69494          {
69495            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
69496            "in": "query",
69497            "name": "timeoutSeconds",
69498            "type": "integer",
69499            "uniqueItems": true
69500          },
69501          {
69502            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
69503            "in": "query",
69504            "name": "watch",
69505            "type": "boolean",
69506            "uniqueItems": true
69507          }
69508        ],
69509        "produces": [
69510          "application/json",
69511          "application/yaml",
69512          "application/vnd.kubernetes.protobuf",
69513          "application/json;stream=watch",
69514          "application/vnd.kubernetes.protobuf;stream=watch"
69515        ],
69516        "responses": {
69517          "200": {
69518            "description": "OK",
69519            "schema": {
69520              "$ref": "#/definitions/io.k8s.api.node.v1alpha1.RuntimeClassList"
69521            }
69522          },
69523          "401": {
69524            "description": "Unauthorized"
69525          }
69526        },
69527        "schemes": [
69528          "https"
69529        ],
69530        "tags": [
69531          "node_v1alpha1"
69532        ],
69533        "x-kubernetes-action": "list",
69534        "x-kubernetes-group-version-kind": {
69535          "group": "node.k8s.io",
69536          "kind": "RuntimeClass",
69537          "version": "v1alpha1"
69538        }
69539      },
69540      "parameters": [
69541        {
69542          "description": "If 'true', then the output is pretty printed.",
69543          "in": "query",
69544          "name": "pretty",
69545          "type": "string",
69546          "uniqueItems": true
69547        }
69548      ],
69549      "post": {
69550        "consumes": [
69551          "*/*"
69552        ],
69553        "description": "create a RuntimeClass",
69554        "operationId": "createNodeV1alpha1RuntimeClass",
69555        "parameters": [
69556          {
69557            "in": "body",
69558            "name": "body",
69559            "required": true,
69560            "schema": {
69561              "$ref": "#/definitions/io.k8s.api.node.v1alpha1.RuntimeClass"
69562            }
69563          },
69564          {
69565            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
69566            "in": "query",
69567            "name": "dryRun",
69568            "type": "string",
69569            "uniqueItems": true
69570          },
69571          {
69572            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
69573            "in": "query",
69574            "name": "fieldManager",
69575            "type": "string",
69576            "uniqueItems": true
69577          }
69578        ],
69579        "produces": [
69580          "application/json",
69581          "application/yaml",
69582          "application/vnd.kubernetes.protobuf"
69583        ],
69584        "responses": {
69585          "200": {
69586            "description": "OK",
69587            "schema": {
69588              "$ref": "#/definitions/io.k8s.api.node.v1alpha1.RuntimeClass"
69589            }
69590          },
69591          "201": {
69592            "description": "Created",
69593            "schema": {
69594              "$ref": "#/definitions/io.k8s.api.node.v1alpha1.RuntimeClass"
69595            }
69596          },
69597          "202": {
69598            "description": "Accepted",
69599            "schema": {
69600              "$ref": "#/definitions/io.k8s.api.node.v1alpha1.RuntimeClass"
69601            }
69602          },
69603          "401": {
69604            "description": "Unauthorized"
69605          }
69606        },
69607        "schemes": [
69608          "https"
69609        ],
69610        "tags": [
69611          "node_v1alpha1"
69612        ],
69613        "x-kubernetes-action": "post",
69614        "x-kubernetes-group-version-kind": {
69615          "group": "node.k8s.io",
69616          "kind": "RuntimeClass",
69617          "version": "v1alpha1"
69618        }
69619      }
69620    },
69621    "/apis/node.k8s.io/v1alpha1/runtimeclasses/{name}": {
69622      "delete": {
69623        "consumes": [
69624          "*/*"
69625        ],
69626        "description": "delete a RuntimeClass",
69627        "operationId": "deleteNodeV1alpha1RuntimeClass",
69628        "parameters": [
69629          {
69630            "in": "body",
69631            "name": "body",
69632            "schema": {
69633              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
69634            }
69635          },
69636          {
69637            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
69638            "in": "query",
69639            "name": "dryRun",
69640            "type": "string",
69641            "uniqueItems": true
69642          },
69643          {
69644            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
69645            "in": "query",
69646            "name": "gracePeriodSeconds",
69647            "type": "integer",
69648            "uniqueItems": true
69649          },
69650          {
69651            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
69652            "in": "query",
69653            "name": "orphanDependents",
69654            "type": "boolean",
69655            "uniqueItems": true
69656          },
69657          {
69658            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
69659            "in": "query",
69660            "name": "propagationPolicy",
69661            "type": "string",
69662            "uniqueItems": true
69663          }
69664        ],
69665        "produces": [
69666          "application/json",
69667          "application/yaml",
69668          "application/vnd.kubernetes.protobuf"
69669        ],
69670        "responses": {
69671          "200": {
69672            "description": "OK",
69673            "schema": {
69674              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
69675            }
69676          },
69677          "202": {
69678            "description": "Accepted",
69679            "schema": {
69680              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
69681            }
69682          },
69683          "401": {
69684            "description": "Unauthorized"
69685          }
69686        },
69687        "schemes": [
69688          "https"
69689        ],
69690        "tags": [
69691          "node_v1alpha1"
69692        ],
69693        "x-kubernetes-action": "delete",
69694        "x-kubernetes-group-version-kind": {
69695          "group": "node.k8s.io",
69696          "kind": "RuntimeClass",
69697          "version": "v1alpha1"
69698        }
69699      },
69700      "get": {
69701        "consumes": [
69702          "*/*"
69703        ],
69704        "description": "read the specified RuntimeClass",
69705        "operationId": "readNodeV1alpha1RuntimeClass",
69706        "produces": [
69707          "application/json",
69708          "application/yaml",
69709          "application/vnd.kubernetes.protobuf"
69710        ],
69711        "responses": {
69712          "200": {
69713            "description": "OK",
69714            "schema": {
69715              "$ref": "#/definitions/io.k8s.api.node.v1alpha1.RuntimeClass"
69716            }
69717          },
69718          "401": {
69719            "description": "Unauthorized"
69720          }
69721        },
69722        "schemes": [
69723          "https"
69724        ],
69725        "tags": [
69726          "node_v1alpha1"
69727        ],
69728        "x-kubernetes-action": "get",
69729        "x-kubernetes-group-version-kind": {
69730          "group": "node.k8s.io",
69731          "kind": "RuntimeClass",
69732          "version": "v1alpha1"
69733        }
69734      },
69735      "parameters": [
69736        {
69737          "description": "name of the RuntimeClass",
69738          "in": "path",
69739          "name": "name",
69740          "required": true,
69741          "type": "string",
69742          "uniqueItems": true
69743        },
69744        {
69745          "description": "If 'true', then the output is pretty printed.",
69746          "in": "query",
69747          "name": "pretty",
69748          "type": "string",
69749          "uniqueItems": true
69750        }
69751      ],
69752      "patch": {
69753        "consumes": [
69754          "application/json-patch+json",
69755          "application/merge-patch+json",
69756          "application/strategic-merge-patch+json",
69757          "application/apply-patch+yaml"
69758        ],
69759        "description": "partially update the specified RuntimeClass",
69760        "operationId": "patchNodeV1alpha1RuntimeClass",
69761        "parameters": [
69762          {
69763            "in": "body",
69764            "name": "body",
69765            "required": true,
69766            "schema": {
69767              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
69768            }
69769          },
69770          {
69771            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
69772            "in": "query",
69773            "name": "dryRun",
69774            "type": "string",
69775            "uniqueItems": true
69776          },
69777          {
69778            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
69779            "in": "query",
69780            "name": "fieldManager",
69781            "type": "string",
69782            "uniqueItems": true
69783          },
69784          {
69785            "description": "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.",
69786            "in": "query",
69787            "name": "force",
69788            "type": "boolean",
69789            "uniqueItems": true
69790          }
69791        ],
69792        "produces": [
69793          "application/json",
69794          "application/yaml",
69795          "application/vnd.kubernetes.protobuf"
69796        ],
69797        "responses": {
69798          "200": {
69799            "description": "OK",
69800            "schema": {
69801              "$ref": "#/definitions/io.k8s.api.node.v1alpha1.RuntimeClass"
69802            }
69803          },
69804          "201": {
69805            "description": "Created",
69806            "schema": {
69807              "$ref": "#/definitions/io.k8s.api.node.v1alpha1.RuntimeClass"
69808            }
69809          },
69810          "401": {
69811            "description": "Unauthorized"
69812          }
69813        },
69814        "schemes": [
69815          "https"
69816        ],
69817        "tags": [
69818          "node_v1alpha1"
69819        ],
69820        "x-kubernetes-action": "patch",
69821        "x-kubernetes-group-version-kind": {
69822          "group": "node.k8s.io",
69823          "kind": "RuntimeClass",
69824          "version": "v1alpha1"
69825        }
69826      },
69827      "put": {
69828        "consumes": [
69829          "*/*"
69830        ],
69831        "description": "replace the specified RuntimeClass",
69832        "operationId": "replaceNodeV1alpha1RuntimeClass",
69833        "parameters": [
69834          {
69835            "in": "body",
69836            "name": "body",
69837            "required": true,
69838            "schema": {
69839              "$ref": "#/definitions/io.k8s.api.node.v1alpha1.RuntimeClass"
69840            }
69841          },
69842          {
69843            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
69844            "in": "query",
69845            "name": "dryRun",
69846            "type": "string",
69847            "uniqueItems": true
69848          },
69849          {
69850            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
69851            "in": "query",
69852            "name": "fieldManager",
69853            "type": "string",
69854            "uniqueItems": true
69855          }
69856        ],
69857        "produces": [
69858          "application/json",
69859          "application/yaml",
69860          "application/vnd.kubernetes.protobuf"
69861        ],
69862        "responses": {
69863          "200": {
69864            "description": "OK",
69865            "schema": {
69866              "$ref": "#/definitions/io.k8s.api.node.v1alpha1.RuntimeClass"
69867            }
69868          },
69869          "201": {
69870            "description": "Created",
69871            "schema": {
69872              "$ref": "#/definitions/io.k8s.api.node.v1alpha1.RuntimeClass"
69873            }
69874          },
69875          "401": {
69876            "description": "Unauthorized"
69877          }
69878        },
69879        "schemes": [
69880          "https"
69881        ],
69882        "tags": [
69883          "node_v1alpha1"
69884        ],
69885        "x-kubernetes-action": "put",
69886        "x-kubernetes-group-version-kind": {
69887          "group": "node.k8s.io",
69888          "kind": "RuntimeClass",
69889          "version": "v1alpha1"
69890        }
69891      }
69892    },
69893    "/apis/node.k8s.io/v1alpha1/watch/runtimeclasses": {
69894      "get": {
69895        "consumes": [
69896          "*/*"
69897        ],
69898        "description": "watch individual changes to a list of RuntimeClass. deprecated: use the 'watch' parameter with a list operation instead.",
69899        "operationId": "watchNodeV1alpha1RuntimeClassList",
69900        "produces": [
69901          "application/json",
69902          "application/yaml",
69903          "application/vnd.kubernetes.protobuf",
69904          "application/json;stream=watch",
69905          "application/vnd.kubernetes.protobuf;stream=watch"
69906        ],
69907        "responses": {
69908          "200": {
69909            "description": "OK",
69910            "schema": {
69911              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
69912            }
69913          },
69914          "401": {
69915            "description": "Unauthorized"
69916          }
69917        },
69918        "schemes": [
69919          "https"
69920        ],
69921        "tags": [
69922          "node_v1alpha1"
69923        ],
69924        "x-kubernetes-action": "watchlist",
69925        "x-kubernetes-group-version-kind": {
69926          "group": "node.k8s.io",
69927          "kind": "RuntimeClass",
69928          "version": "v1alpha1"
69929        }
69930      },
69931      "parameters": [
69932        {
69933          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
69934          "in": "query",
69935          "name": "allowWatchBookmarks",
69936          "type": "boolean",
69937          "uniqueItems": true
69938        },
69939        {
69940          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
69941          "in": "query",
69942          "name": "continue",
69943          "type": "string",
69944          "uniqueItems": true
69945        },
69946        {
69947          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
69948          "in": "query",
69949          "name": "fieldSelector",
69950          "type": "string",
69951          "uniqueItems": true
69952        },
69953        {
69954          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
69955          "in": "query",
69956          "name": "labelSelector",
69957          "type": "string",
69958          "uniqueItems": true
69959        },
69960        {
69961          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
69962          "in": "query",
69963          "name": "limit",
69964          "type": "integer",
69965          "uniqueItems": true
69966        },
69967        {
69968          "description": "If 'true', then the output is pretty printed.",
69969          "in": "query",
69970          "name": "pretty",
69971          "type": "string",
69972          "uniqueItems": true
69973        },
69974        {
69975          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
69976          "in": "query",
69977          "name": "resourceVersion",
69978          "type": "string",
69979          "uniqueItems": true
69980        },
69981        {
69982          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
69983          "in": "query",
69984          "name": "resourceVersionMatch",
69985          "type": "string",
69986          "uniqueItems": true
69987        },
69988        {
69989          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
69990          "in": "query",
69991          "name": "timeoutSeconds",
69992          "type": "integer",
69993          "uniqueItems": true
69994        },
69995        {
69996          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
69997          "in": "query",
69998          "name": "watch",
69999          "type": "boolean",
70000          "uniqueItems": true
70001        }
70002      ]
70003    },
70004    "/apis/node.k8s.io/v1alpha1/watch/runtimeclasses/{name}": {
70005      "get": {
70006        "consumes": [
70007          "*/*"
70008        ],
70009        "description": "watch changes to an object of kind RuntimeClass. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.",
70010        "operationId": "watchNodeV1alpha1RuntimeClass",
70011        "produces": [
70012          "application/json",
70013          "application/yaml",
70014          "application/vnd.kubernetes.protobuf",
70015          "application/json;stream=watch",
70016          "application/vnd.kubernetes.protobuf;stream=watch"
70017        ],
70018        "responses": {
70019          "200": {
70020            "description": "OK",
70021            "schema": {
70022              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
70023            }
70024          },
70025          "401": {
70026            "description": "Unauthorized"
70027          }
70028        },
70029        "schemes": [
70030          "https"
70031        ],
70032        "tags": [
70033          "node_v1alpha1"
70034        ],
70035        "x-kubernetes-action": "watch",
70036        "x-kubernetes-group-version-kind": {
70037          "group": "node.k8s.io",
70038          "kind": "RuntimeClass",
70039          "version": "v1alpha1"
70040        }
70041      },
70042      "parameters": [
70043        {
70044          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
70045          "in": "query",
70046          "name": "allowWatchBookmarks",
70047          "type": "boolean",
70048          "uniqueItems": true
70049        },
70050        {
70051          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
70052          "in": "query",
70053          "name": "continue",
70054          "type": "string",
70055          "uniqueItems": true
70056        },
70057        {
70058          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
70059          "in": "query",
70060          "name": "fieldSelector",
70061          "type": "string",
70062          "uniqueItems": true
70063        },
70064        {
70065          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
70066          "in": "query",
70067          "name": "labelSelector",
70068          "type": "string",
70069          "uniqueItems": true
70070        },
70071        {
70072          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
70073          "in": "query",
70074          "name": "limit",
70075          "type": "integer",
70076          "uniqueItems": true
70077        },
70078        {
70079          "description": "name of the RuntimeClass",
70080          "in": "path",
70081          "name": "name",
70082          "required": true,
70083          "type": "string",
70084          "uniqueItems": true
70085        },
70086        {
70087          "description": "If 'true', then the output is pretty printed.",
70088          "in": "query",
70089          "name": "pretty",
70090          "type": "string",
70091          "uniqueItems": true
70092        },
70093        {
70094          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
70095          "in": "query",
70096          "name": "resourceVersion",
70097          "type": "string",
70098          "uniqueItems": true
70099        },
70100        {
70101          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
70102          "in": "query",
70103          "name": "resourceVersionMatch",
70104          "type": "string",
70105          "uniqueItems": true
70106        },
70107        {
70108          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
70109          "in": "query",
70110          "name": "timeoutSeconds",
70111          "type": "integer",
70112          "uniqueItems": true
70113        },
70114        {
70115          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
70116          "in": "query",
70117          "name": "watch",
70118          "type": "boolean",
70119          "uniqueItems": true
70120        }
70121      ]
70122    },
70123    "/apis/node.k8s.io/v1beta1/": {
70124      "get": {
70125        "consumes": [
70126          "application/json",
70127          "application/yaml",
70128          "application/vnd.kubernetes.protobuf"
70129        ],
70130        "description": "get available resources",
70131        "operationId": "getNodeV1beta1APIResources",
70132        "produces": [
70133          "application/json",
70134          "application/yaml",
70135          "application/vnd.kubernetes.protobuf"
70136        ],
70137        "responses": {
70138          "200": {
70139            "description": "OK",
70140            "schema": {
70141              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
70142            }
70143          },
70144          "401": {
70145            "description": "Unauthorized"
70146          }
70147        },
70148        "schemes": [
70149          "https"
70150        ],
70151        "tags": [
70152          "node_v1beta1"
70153        ]
70154      }
70155    },
70156    "/apis/node.k8s.io/v1beta1/runtimeclasses": {
70157      "delete": {
70158        "consumes": [
70159          "*/*"
70160        ],
70161        "description": "delete collection of RuntimeClass",
70162        "operationId": "deleteNodeV1beta1CollectionRuntimeClass",
70163        "parameters": [
70164          {
70165            "in": "body",
70166            "name": "body",
70167            "schema": {
70168              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
70169            }
70170          },
70171          {
70172            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
70173            "in": "query",
70174            "name": "continue",
70175            "type": "string",
70176            "uniqueItems": true
70177          },
70178          {
70179            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
70180            "in": "query",
70181            "name": "dryRun",
70182            "type": "string",
70183            "uniqueItems": true
70184          },
70185          {
70186            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
70187            "in": "query",
70188            "name": "fieldSelector",
70189            "type": "string",
70190            "uniqueItems": true
70191          },
70192          {
70193            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
70194            "in": "query",
70195            "name": "gracePeriodSeconds",
70196            "type": "integer",
70197            "uniqueItems": true
70198          },
70199          {
70200            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
70201            "in": "query",
70202            "name": "labelSelector",
70203            "type": "string",
70204            "uniqueItems": true
70205          },
70206          {
70207            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
70208            "in": "query",
70209            "name": "limit",
70210            "type": "integer",
70211            "uniqueItems": true
70212          },
70213          {
70214            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
70215            "in": "query",
70216            "name": "orphanDependents",
70217            "type": "boolean",
70218            "uniqueItems": true
70219          },
70220          {
70221            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
70222            "in": "query",
70223            "name": "propagationPolicy",
70224            "type": "string",
70225            "uniqueItems": true
70226          },
70227          {
70228            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
70229            "in": "query",
70230            "name": "resourceVersion",
70231            "type": "string",
70232            "uniqueItems": true
70233          },
70234          {
70235            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
70236            "in": "query",
70237            "name": "resourceVersionMatch",
70238            "type": "string",
70239            "uniqueItems": true
70240          },
70241          {
70242            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
70243            "in": "query",
70244            "name": "timeoutSeconds",
70245            "type": "integer",
70246            "uniqueItems": true
70247          }
70248        ],
70249        "produces": [
70250          "application/json",
70251          "application/yaml",
70252          "application/vnd.kubernetes.protobuf"
70253        ],
70254        "responses": {
70255          "200": {
70256            "description": "OK",
70257            "schema": {
70258              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
70259            }
70260          },
70261          "401": {
70262            "description": "Unauthorized"
70263          }
70264        },
70265        "schemes": [
70266          "https"
70267        ],
70268        "tags": [
70269          "node_v1beta1"
70270        ],
70271        "x-kubernetes-action": "deletecollection",
70272        "x-kubernetes-group-version-kind": {
70273          "group": "node.k8s.io",
70274          "kind": "RuntimeClass",
70275          "version": "v1beta1"
70276        }
70277      },
70278      "get": {
70279        "consumes": [
70280          "*/*"
70281        ],
70282        "description": "list or watch objects of kind RuntimeClass",
70283        "operationId": "listNodeV1beta1RuntimeClass",
70284        "parameters": [
70285          {
70286            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
70287            "in": "query",
70288            "name": "allowWatchBookmarks",
70289            "type": "boolean",
70290            "uniqueItems": true
70291          },
70292          {
70293            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
70294            "in": "query",
70295            "name": "continue",
70296            "type": "string",
70297            "uniqueItems": true
70298          },
70299          {
70300            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
70301            "in": "query",
70302            "name": "fieldSelector",
70303            "type": "string",
70304            "uniqueItems": true
70305          },
70306          {
70307            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
70308            "in": "query",
70309            "name": "labelSelector",
70310            "type": "string",
70311            "uniqueItems": true
70312          },
70313          {
70314            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
70315            "in": "query",
70316            "name": "limit",
70317            "type": "integer",
70318            "uniqueItems": true
70319          },
70320          {
70321            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
70322            "in": "query",
70323            "name": "resourceVersion",
70324            "type": "string",
70325            "uniqueItems": true
70326          },
70327          {
70328            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
70329            "in": "query",
70330            "name": "resourceVersionMatch",
70331            "type": "string",
70332            "uniqueItems": true
70333          },
70334          {
70335            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
70336            "in": "query",
70337            "name": "timeoutSeconds",
70338            "type": "integer",
70339            "uniqueItems": true
70340          },
70341          {
70342            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
70343            "in": "query",
70344            "name": "watch",
70345            "type": "boolean",
70346            "uniqueItems": true
70347          }
70348        ],
70349        "produces": [
70350          "application/json",
70351          "application/yaml",
70352          "application/vnd.kubernetes.protobuf",
70353          "application/json;stream=watch",
70354          "application/vnd.kubernetes.protobuf;stream=watch"
70355        ],
70356        "responses": {
70357          "200": {
70358            "description": "OK",
70359            "schema": {
70360              "$ref": "#/definitions/io.k8s.api.node.v1beta1.RuntimeClassList"
70361            }
70362          },
70363          "401": {
70364            "description": "Unauthorized"
70365          }
70366        },
70367        "schemes": [
70368          "https"
70369        ],
70370        "tags": [
70371          "node_v1beta1"
70372        ],
70373        "x-kubernetes-action": "list",
70374        "x-kubernetes-group-version-kind": {
70375          "group": "node.k8s.io",
70376          "kind": "RuntimeClass",
70377          "version": "v1beta1"
70378        }
70379      },
70380      "parameters": [
70381        {
70382          "description": "If 'true', then the output is pretty printed.",
70383          "in": "query",
70384          "name": "pretty",
70385          "type": "string",
70386          "uniqueItems": true
70387        }
70388      ],
70389      "post": {
70390        "consumes": [
70391          "*/*"
70392        ],
70393        "description": "create a RuntimeClass",
70394        "operationId": "createNodeV1beta1RuntimeClass",
70395        "parameters": [
70396          {
70397            "in": "body",
70398            "name": "body",
70399            "required": true,
70400            "schema": {
70401              "$ref": "#/definitions/io.k8s.api.node.v1beta1.RuntimeClass"
70402            }
70403          },
70404          {
70405            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
70406            "in": "query",
70407            "name": "dryRun",
70408            "type": "string",
70409            "uniqueItems": true
70410          },
70411          {
70412            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
70413            "in": "query",
70414            "name": "fieldManager",
70415            "type": "string",
70416            "uniqueItems": true
70417          }
70418        ],
70419        "produces": [
70420          "application/json",
70421          "application/yaml",
70422          "application/vnd.kubernetes.protobuf"
70423        ],
70424        "responses": {
70425          "200": {
70426            "description": "OK",
70427            "schema": {
70428              "$ref": "#/definitions/io.k8s.api.node.v1beta1.RuntimeClass"
70429            }
70430          },
70431          "201": {
70432            "description": "Created",
70433            "schema": {
70434              "$ref": "#/definitions/io.k8s.api.node.v1beta1.RuntimeClass"
70435            }
70436          },
70437          "202": {
70438            "description": "Accepted",
70439            "schema": {
70440              "$ref": "#/definitions/io.k8s.api.node.v1beta1.RuntimeClass"
70441            }
70442          },
70443          "401": {
70444            "description": "Unauthorized"
70445          }
70446        },
70447        "schemes": [
70448          "https"
70449        ],
70450        "tags": [
70451          "node_v1beta1"
70452        ],
70453        "x-kubernetes-action": "post",
70454        "x-kubernetes-group-version-kind": {
70455          "group": "node.k8s.io",
70456          "kind": "RuntimeClass",
70457          "version": "v1beta1"
70458        }
70459      }
70460    },
70461    "/apis/node.k8s.io/v1beta1/runtimeclasses/{name}": {
70462      "delete": {
70463        "consumes": [
70464          "*/*"
70465        ],
70466        "description": "delete a RuntimeClass",
70467        "operationId": "deleteNodeV1beta1RuntimeClass",
70468        "parameters": [
70469          {
70470            "in": "body",
70471            "name": "body",
70472            "schema": {
70473              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
70474            }
70475          },
70476          {
70477            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
70478            "in": "query",
70479            "name": "dryRun",
70480            "type": "string",
70481            "uniqueItems": true
70482          },
70483          {
70484            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
70485            "in": "query",
70486            "name": "gracePeriodSeconds",
70487            "type": "integer",
70488            "uniqueItems": true
70489          },
70490          {
70491            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
70492            "in": "query",
70493            "name": "orphanDependents",
70494            "type": "boolean",
70495            "uniqueItems": true
70496          },
70497          {
70498            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
70499            "in": "query",
70500            "name": "propagationPolicy",
70501            "type": "string",
70502            "uniqueItems": true
70503          }
70504        ],
70505        "produces": [
70506          "application/json",
70507          "application/yaml",
70508          "application/vnd.kubernetes.protobuf"
70509        ],
70510        "responses": {
70511          "200": {
70512            "description": "OK",
70513            "schema": {
70514              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
70515            }
70516          },
70517          "202": {
70518            "description": "Accepted",
70519            "schema": {
70520              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
70521            }
70522          },
70523          "401": {
70524            "description": "Unauthorized"
70525          }
70526        },
70527        "schemes": [
70528          "https"
70529        ],
70530        "tags": [
70531          "node_v1beta1"
70532        ],
70533        "x-kubernetes-action": "delete",
70534        "x-kubernetes-group-version-kind": {
70535          "group": "node.k8s.io",
70536          "kind": "RuntimeClass",
70537          "version": "v1beta1"
70538        }
70539      },
70540      "get": {
70541        "consumes": [
70542          "*/*"
70543        ],
70544        "description": "read the specified RuntimeClass",
70545        "operationId": "readNodeV1beta1RuntimeClass",
70546        "produces": [
70547          "application/json",
70548          "application/yaml",
70549          "application/vnd.kubernetes.protobuf"
70550        ],
70551        "responses": {
70552          "200": {
70553            "description": "OK",
70554            "schema": {
70555              "$ref": "#/definitions/io.k8s.api.node.v1beta1.RuntimeClass"
70556            }
70557          },
70558          "401": {
70559            "description": "Unauthorized"
70560          }
70561        },
70562        "schemes": [
70563          "https"
70564        ],
70565        "tags": [
70566          "node_v1beta1"
70567        ],
70568        "x-kubernetes-action": "get",
70569        "x-kubernetes-group-version-kind": {
70570          "group": "node.k8s.io",
70571          "kind": "RuntimeClass",
70572          "version": "v1beta1"
70573        }
70574      },
70575      "parameters": [
70576        {
70577          "description": "name of the RuntimeClass",
70578          "in": "path",
70579          "name": "name",
70580          "required": true,
70581          "type": "string",
70582          "uniqueItems": true
70583        },
70584        {
70585          "description": "If 'true', then the output is pretty printed.",
70586          "in": "query",
70587          "name": "pretty",
70588          "type": "string",
70589          "uniqueItems": true
70590        }
70591      ],
70592      "patch": {
70593        "consumes": [
70594          "application/json-patch+json",
70595          "application/merge-patch+json",
70596          "application/strategic-merge-patch+json",
70597          "application/apply-patch+yaml"
70598        ],
70599        "description": "partially update the specified RuntimeClass",
70600        "operationId": "patchNodeV1beta1RuntimeClass",
70601        "parameters": [
70602          {
70603            "in": "body",
70604            "name": "body",
70605            "required": true,
70606            "schema": {
70607              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
70608            }
70609          },
70610          {
70611            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
70612            "in": "query",
70613            "name": "dryRun",
70614            "type": "string",
70615            "uniqueItems": true
70616          },
70617          {
70618            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
70619            "in": "query",
70620            "name": "fieldManager",
70621            "type": "string",
70622            "uniqueItems": true
70623          },
70624          {
70625            "description": "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.",
70626            "in": "query",
70627            "name": "force",
70628            "type": "boolean",
70629            "uniqueItems": true
70630          }
70631        ],
70632        "produces": [
70633          "application/json",
70634          "application/yaml",
70635          "application/vnd.kubernetes.protobuf"
70636        ],
70637        "responses": {
70638          "200": {
70639            "description": "OK",
70640            "schema": {
70641              "$ref": "#/definitions/io.k8s.api.node.v1beta1.RuntimeClass"
70642            }
70643          },
70644          "201": {
70645            "description": "Created",
70646            "schema": {
70647              "$ref": "#/definitions/io.k8s.api.node.v1beta1.RuntimeClass"
70648            }
70649          },
70650          "401": {
70651            "description": "Unauthorized"
70652          }
70653        },
70654        "schemes": [
70655          "https"
70656        ],
70657        "tags": [
70658          "node_v1beta1"
70659        ],
70660        "x-kubernetes-action": "patch",
70661        "x-kubernetes-group-version-kind": {
70662          "group": "node.k8s.io",
70663          "kind": "RuntimeClass",
70664          "version": "v1beta1"
70665        }
70666      },
70667      "put": {
70668        "consumes": [
70669          "*/*"
70670        ],
70671        "description": "replace the specified RuntimeClass",
70672        "operationId": "replaceNodeV1beta1RuntimeClass",
70673        "parameters": [
70674          {
70675            "in": "body",
70676            "name": "body",
70677            "required": true,
70678            "schema": {
70679              "$ref": "#/definitions/io.k8s.api.node.v1beta1.RuntimeClass"
70680            }
70681          },
70682          {
70683            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
70684            "in": "query",
70685            "name": "dryRun",
70686            "type": "string",
70687            "uniqueItems": true
70688          },
70689          {
70690            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
70691            "in": "query",
70692            "name": "fieldManager",
70693            "type": "string",
70694            "uniqueItems": true
70695          }
70696        ],
70697        "produces": [
70698          "application/json",
70699          "application/yaml",
70700          "application/vnd.kubernetes.protobuf"
70701        ],
70702        "responses": {
70703          "200": {
70704            "description": "OK",
70705            "schema": {
70706              "$ref": "#/definitions/io.k8s.api.node.v1beta1.RuntimeClass"
70707            }
70708          },
70709          "201": {
70710            "description": "Created",
70711            "schema": {
70712              "$ref": "#/definitions/io.k8s.api.node.v1beta1.RuntimeClass"
70713            }
70714          },
70715          "401": {
70716            "description": "Unauthorized"
70717          }
70718        },
70719        "schemes": [
70720          "https"
70721        ],
70722        "tags": [
70723          "node_v1beta1"
70724        ],
70725        "x-kubernetes-action": "put",
70726        "x-kubernetes-group-version-kind": {
70727          "group": "node.k8s.io",
70728          "kind": "RuntimeClass",
70729          "version": "v1beta1"
70730        }
70731      }
70732    },
70733    "/apis/node.k8s.io/v1beta1/watch/runtimeclasses": {
70734      "get": {
70735        "consumes": [
70736          "*/*"
70737        ],
70738        "description": "watch individual changes to a list of RuntimeClass. deprecated: use the 'watch' parameter with a list operation instead.",
70739        "operationId": "watchNodeV1beta1RuntimeClassList",
70740        "produces": [
70741          "application/json",
70742          "application/yaml",
70743          "application/vnd.kubernetes.protobuf",
70744          "application/json;stream=watch",
70745          "application/vnd.kubernetes.protobuf;stream=watch"
70746        ],
70747        "responses": {
70748          "200": {
70749            "description": "OK",
70750            "schema": {
70751              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
70752            }
70753          },
70754          "401": {
70755            "description": "Unauthorized"
70756          }
70757        },
70758        "schemes": [
70759          "https"
70760        ],
70761        "tags": [
70762          "node_v1beta1"
70763        ],
70764        "x-kubernetes-action": "watchlist",
70765        "x-kubernetes-group-version-kind": {
70766          "group": "node.k8s.io",
70767          "kind": "RuntimeClass",
70768          "version": "v1beta1"
70769        }
70770      },
70771      "parameters": [
70772        {
70773          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
70774          "in": "query",
70775          "name": "allowWatchBookmarks",
70776          "type": "boolean",
70777          "uniqueItems": true
70778        },
70779        {
70780          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
70781          "in": "query",
70782          "name": "continue",
70783          "type": "string",
70784          "uniqueItems": true
70785        },
70786        {
70787          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
70788          "in": "query",
70789          "name": "fieldSelector",
70790          "type": "string",
70791          "uniqueItems": true
70792        },
70793        {
70794          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
70795          "in": "query",
70796          "name": "labelSelector",
70797          "type": "string",
70798          "uniqueItems": true
70799        },
70800        {
70801          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
70802          "in": "query",
70803          "name": "limit",
70804          "type": "integer",
70805          "uniqueItems": true
70806        },
70807        {
70808          "description": "If 'true', then the output is pretty printed.",
70809          "in": "query",
70810          "name": "pretty",
70811          "type": "string",
70812          "uniqueItems": true
70813        },
70814        {
70815          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
70816          "in": "query",
70817          "name": "resourceVersion",
70818          "type": "string",
70819          "uniqueItems": true
70820        },
70821        {
70822          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
70823          "in": "query",
70824          "name": "resourceVersionMatch",
70825          "type": "string",
70826          "uniqueItems": true
70827        },
70828        {
70829          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
70830          "in": "query",
70831          "name": "timeoutSeconds",
70832          "type": "integer",
70833          "uniqueItems": true
70834        },
70835        {
70836          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
70837          "in": "query",
70838          "name": "watch",
70839          "type": "boolean",
70840          "uniqueItems": true
70841        }
70842      ]
70843    },
70844    "/apis/node.k8s.io/v1beta1/watch/runtimeclasses/{name}": {
70845      "get": {
70846        "consumes": [
70847          "*/*"
70848        ],
70849        "description": "watch changes to an object of kind RuntimeClass. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.",
70850        "operationId": "watchNodeV1beta1RuntimeClass",
70851        "produces": [
70852          "application/json",
70853          "application/yaml",
70854          "application/vnd.kubernetes.protobuf",
70855          "application/json;stream=watch",
70856          "application/vnd.kubernetes.protobuf;stream=watch"
70857        ],
70858        "responses": {
70859          "200": {
70860            "description": "OK",
70861            "schema": {
70862              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
70863            }
70864          },
70865          "401": {
70866            "description": "Unauthorized"
70867          }
70868        },
70869        "schemes": [
70870          "https"
70871        ],
70872        "tags": [
70873          "node_v1beta1"
70874        ],
70875        "x-kubernetes-action": "watch",
70876        "x-kubernetes-group-version-kind": {
70877          "group": "node.k8s.io",
70878          "kind": "RuntimeClass",
70879          "version": "v1beta1"
70880        }
70881      },
70882      "parameters": [
70883        {
70884          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
70885          "in": "query",
70886          "name": "allowWatchBookmarks",
70887          "type": "boolean",
70888          "uniqueItems": true
70889        },
70890        {
70891          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
70892          "in": "query",
70893          "name": "continue",
70894          "type": "string",
70895          "uniqueItems": true
70896        },
70897        {
70898          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
70899          "in": "query",
70900          "name": "fieldSelector",
70901          "type": "string",
70902          "uniqueItems": true
70903        },
70904        {
70905          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
70906          "in": "query",
70907          "name": "labelSelector",
70908          "type": "string",
70909          "uniqueItems": true
70910        },
70911        {
70912          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
70913          "in": "query",
70914          "name": "limit",
70915          "type": "integer",
70916          "uniqueItems": true
70917        },
70918        {
70919          "description": "name of the RuntimeClass",
70920          "in": "path",
70921          "name": "name",
70922          "required": true,
70923          "type": "string",
70924          "uniqueItems": true
70925        },
70926        {
70927          "description": "If 'true', then the output is pretty printed.",
70928          "in": "query",
70929          "name": "pretty",
70930          "type": "string",
70931          "uniqueItems": true
70932        },
70933        {
70934          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
70935          "in": "query",
70936          "name": "resourceVersion",
70937          "type": "string",
70938          "uniqueItems": true
70939        },
70940        {
70941          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
70942          "in": "query",
70943          "name": "resourceVersionMatch",
70944          "type": "string",
70945          "uniqueItems": true
70946        },
70947        {
70948          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
70949          "in": "query",
70950          "name": "timeoutSeconds",
70951          "type": "integer",
70952          "uniqueItems": true
70953        },
70954        {
70955          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
70956          "in": "query",
70957          "name": "watch",
70958          "type": "boolean",
70959          "uniqueItems": true
70960        }
70961      ]
70962    },
70963    "/apis/policy/": {
70964      "get": {
70965        "consumes": [
70966          "application/json",
70967          "application/yaml",
70968          "application/vnd.kubernetes.protobuf"
70969        ],
70970        "description": "get information of a group",
70971        "operationId": "getPolicyAPIGroup",
70972        "produces": [
70973          "application/json",
70974          "application/yaml",
70975          "application/vnd.kubernetes.protobuf"
70976        ],
70977        "responses": {
70978          "200": {
70979            "description": "OK",
70980            "schema": {
70981              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup"
70982            }
70983          },
70984          "401": {
70985            "description": "Unauthorized"
70986          }
70987        },
70988        "schemes": [
70989          "https"
70990        ],
70991        "tags": [
70992          "policy"
70993        ]
70994      }
70995    },
70996    "/apis/policy/v1/": {
70997      "get": {
70998        "consumes": [
70999          "application/json",
71000          "application/yaml",
71001          "application/vnd.kubernetes.protobuf"
71002        ],
71003        "description": "get available resources",
71004        "operationId": "getPolicyV1APIResources",
71005        "produces": [
71006          "application/json",
71007          "application/yaml",
71008          "application/vnd.kubernetes.protobuf"
71009        ],
71010        "responses": {
71011          "200": {
71012            "description": "OK",
71013            "schema": {
71014              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
71015            }
71016          },
71017          "401": {
71018            "description": "Unauthorized"
71019          }
71020        },
71021        "schemes": [
71022          "https"
71023        ],
71024        "tags": [
71025          "policy_v1"
71026        ]
71027      }
71028    },
71029    "/apis/policy/v1/namespaces/{namespace}/poddisruptionbudgets": {
71030      "delete": {
71031        "consumes": [
71032          "*/*"
71033        ],
71034        "description": "delete collection of PodDisruptionBudget",
71035        "operationId": "deletePolicyV1CollectionNamespacedPodDisruptionBudget",
71036        "parameters": [
71037          {
71038            "in": "body",
71039            "name": "body",
71040            "schema": {
71041              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
71042            }
71043          },
71044          {
71045            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
71046            "in": "query",
71047            "name": "continue",
71048            "type": "string",
71049            "uniqueItems": true
71050          },
71051          {
71052            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
71053            "in": "query",
71054            "name": "dryRun",
71055            "type": "string",
71056            "uniqueItems": true
71057          },
71058          {
71059            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
71060            "in": "query",
71061            "name": "fieldSelector",
71062            "type": "string",
71063            "uniqueItems": true
71064          },
71065          {
71066            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
71067            "in": "query",
71068            "name": "gracePeriodSeconds",
71069            "type": "integer",
71070            "uniqueItems": true
71071          },
71072          {
71073            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
71074            "in": "query",
71075            "name": "labelSelector",
71076            "type": "string",
71077            "uniqueItems": true
71078          },
71079          {
71080            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
71081            "in": "query",
71082            "name": "limit",
71083            "type": "integer",
71084            "uniqueItems": true
71085          },
71086          {
71087            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
71088            "in": "query",
71089            "name": "orphanDependents",
71090            "type": "boolean",
71091            "uniqueItems": true
71092          },
71093          {
71094            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
71095            "in": "query",
71096            "name": "propagationPolicy",
71097            "type": "string",
71098            "uniqueItems": true
71099          },
71100          {
71101            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
71102            "in": "query",
71103            "name": "resourceVersion",
71104            "type": "string",
71105            "uniqueItems": true
71106          },
71107          {
71108            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
71109            "in": "query",
71110            "name": "resourceVersionMatch",
71111            "type": "string",
71112            "uniqueItems": true
71113          },
71114          {
71115            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
71116            "in": "query",
71117            "name": "timeoutSeconds",
71118            "type": "integer",
71119            "uniqueItems": true
71120          }
71121        ],
71122        "produces": [
71123          "application/json",
71124          "application/yaml",
71125          "application/vnd.kubernetes.protobuf"
71126        ],
71127        "responses": {
71128          "200": {
71129            "description": "OK",
71130            "schema": {
71131              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
71132            }
71133          },
71134          "401": {
71135            "description": "Unauthorized"
71136          }
71137        },
71138        "schemes": [
71139          "https"
71140        ],
71141        "tags": [
71142          "policy_v1"
71143        ],
71144        "x-kubernetes-action": "deletecollection",
71145        "x-kubernetes-group-version-kind": {
71146          "group": "policy",
71147          "kind": "PodDisruptionBudget",
71148          "version": "v1"
71149        }
71150      },
71151      "get": {
71152        "consumes": [
71153          "*/*"
71154        ],
71155        "description": "list or watch objects of kind PodDisruptionBudget",
71156        "operationId": "listPolicyV1NamespacedPodDisruptionBudget",
71157        "parameters": [
71158          {
71159            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
71160            "in": "query",
71161            "name": "allowWatchBookmarks",
71162            "type": "boolean",
71163            "uniqueItems": true
71164          },
71165          {
71166            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
71167            "in": "query",
71168            "name": "continue",
71169            "type": "string",
71170            "uniqueItems": true
71171          },
71172          {
71173            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
71174            "in": "query",
71175            "name": "fieldSelector",
71176            "type": "string",
71177            "uniqueItems": true
71178          },
71179          {
71180            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
71181            "in": "query",
71182            "name": "labelSelector",
71183            "type": "string",
71184            "uniqueItems": true
71185          },
71186          {
71187            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
71188            "in": "query",
71189            "name": "limit",
71190            "type": "integer",
71191            "uniqueItems": true
71192          },
71193          {
71194            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
71195            "in": "query",
71196            "name": "resourceVersion",
71197            "type": "string",
71198            "uniqueItems": true
71199          },
71200          {
71201            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
71202            "in": "query",
71203            "name": "resourceVersionMatch",
71204            "type": "string",
71205            "uniqueItems": true
71206          },
71207          {
71208            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
71209            "in": "query",
71210            "name": "timeoutSeconds",
71211            "type": "integer",
71212            "uniqueItems": true
71213          },
71214          {
71215            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
71216            "in": "query",
71217            "name": "watch",
71218            "type": "boolean",
71219            "uniqueItems": true
71220          }
71221        ],
71222        "produces": [
71223          "application/json",
71224          "application/yaml",
71225          "application/vnd.kubernetes.protobuf",
71226          "application/json;stream=watch",
71227          "application/vnd.kubernetes.protobuf;stream=watch"
71228        ],
71229        "responses": {
71230          "200": {
71231            "description": "OK",
71232            "schema": {
71233              "$ref": "#/definitions/io.k8s.api.policy.v1.PodDisruptionBudgetList"
71234            }
71235          },
71236          "401": {
71237            "description": "Unauthorized"
71238          }
71239        },
71240        "schemes": [
71241          "https"
71242        ],
71243        "tags": [
71244          "policy_v1"
71245        ],
71246        "x-kubernetes-action": "list",
71247        "x-kubernetes-group-version-kind": {
71248          "group": "policy",
71249          "kind": "PodDisruptionBudget",
71250          "version": "v1"
71251        }
71252      },
71253      "parameters": [
71254        {
71255          "description": "object name and auth scope, such as for teams and projects",
71256          "in": "path",
71257          "name": "namespace",
71258          "required": true,
71259          "type": "string",
71260          "uniqueItems": true
71261        },
71262        {
71263          "description": "If 'true', then the output is pretty printed.",
71264          "in": "query",
71265          "name": "pretty",
71266          "type": "string",
71267          "uniqueItems": true
71268        }
71269      ],
71270      "post": {
71271        "consumes": [
71272          "*/*"
71273        ],
71274        "description": "create a PodDisruptionBudget",
71275        "operationId": "createPolicyV1NamespacedPodDisruptionBudget",
71276        "parameters": [
71277          {
71278            "in": "body",
71279            "name": "body",
71280            "required": true,
71281            "schema": {
71282              "$ref": "#/definitions/io.k8s.api.policy.v1.PodDisruptionBudget"
71283            }
71284          },
71285          {
71286            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
71287            "in": "query",
71288            "name": "dryRun",
71289            "type": "string",
71290            "uniqueItems": true
71291          },
71292          {
71293            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
71294            "in": "query",
71295            "name": "fieldManager",
71296            "type": "string",
71297            "uniqueItems": true
71298          }
71299        ],
71300        "produces": [
71301          "application/json",
71302          "application/yaml",
71303          "application/vnd.kubernetes.protobuf"
71304        ],
71305        "responses": {
71306          "200": {
71307            "description": "OK",
71308            "schema": {
71309              "$ref": "#/definitions/io.k8s.api.policy.v1.PodDisruptionBudget"
71310            }
71311          },
71312          "201": {
71313            "description": "Created",
71314            "schema": {
71315              "$ref": "#/definitions/io.k8s.api.policy.v1.PodDisruptionBudget"
71316            }
71317          },
71318          "202": {
71319            "description": "Accepted",
71320            "schema": {
71321              "$ref": "#/definitions/io.k8s.api.policy.v1.PodDisruptionBudget"
71322            }
71323          },
71324          "401": {
71325            "description": "Unauthorized"
71326          }
71327        },
71328        "schemes": [
71329          "https"
71330        ],
71331        "tags": [
71332          "policy_v1"
71333        ],
71334        "x-kubernetes-action": "post",
71335        "x-kubernetes-group-version-kind": {
71336          "group": "policy",
71337          "kind": "PodDisruptionBudget",
71338          "version": "v1"
71339        }
71340      }
71341    },
71342    "/apis/policy/v1/namespaces/{namespace}/poddisruptionbudgets/{name}": {
71343      "delete": {
71344        "consumes": [
71345          "*/*"
71346        ],
71347        "description": "delete a PodDisruptionBudget",
71348        "operationId": "deletePolicyV1NamespacedPodDisruptionBudget",
71349        "parameters": [
71350          {
71351            "in": "body",
71352            "name": "body",
71353            "schema": {
71354              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
71355            }
71356          },
71357          {
71358            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
71359            "in": "query",
71360            "name": "dryRun",
71361            "type": "string",
71362            "uniqueItems": true
71363          },
71364          {
71365            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
71366            "in": "query",
71367            "name": "gracePeriodSeconds",
71368            "type": "integer",
71369            "uniqueItems": true
71370          },
71371          {
71372            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
71373            "in": "query",
71374            "name": "orphanDependents",
71375            "type": "boolean",
71376            "uniqueItems": true
71377          },
71378          {
71379            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
71380            "in": "query",
71381            "name": "propagationPolicy",
71382            "type": "string",
71383            "uniqueItems": true
71384          }
71385        ],
71386        "produces": [
71387          "application/json",
71388          "application/yaml",
71389          "application/vnd.kubernetes.protobuf"
71390        ],
71391        "responses": {
71392          "200": {
71393            "description": "OK",
71394            "schema": {
71395              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
71396            }
71397          },
71398          "202": {
71399            "description": "Accepted",
71400            "schema": {
71401              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
71402            }
71403          },
71404          "401": {
71405            "description": "Unauthorized"
71406          }
71407        },
71408        "schemes": [
71409          "https"
71410        ],
71411        "tags": [
71412          "policy_v1"
71413        ],
71414        "x-kubernetes-action": "delete",
71415        "x-kubernetes-group-version-kind": {
71416          "group": "policy",
71417          "kind": "PodDisruptionBudget",
71418          "version": "v1"
71419        }
71420      },
71421      "get": {
71422        "consumes": [
71423          "*/*"
71424        ],
71425        "description": "read the specified PodDisruptionBudget",
71426        "operationId": "readPolicyV1NamespacedPodDisruptionBudget",
71427        "produces": [
71428          "application/json",
71429          "application/yaml",
71430          "application/vnd.kubernetes.protobuf"
71431        ],
71432        "responses": {
71433          "200": {
71434            "description": "OK",
71435            "schema": {
71436              "$ref": "#/definitions/io.k8s.api.policy.v1.PodDisruptionBudget"
71437            }
71438          },
71439          "401": {
71440            "description": "Unauthorized"
71441          }
71442        },
71443        "schemes": [
71444          "https"
71445        ],
71446        "tags": [
71447          "policy_v1"
71448        ],
71449        "x-kubernetes-action": "get",
71450        "x-kubernetes-group-version-kind": {
71451          "group": "policy",
71452          "kind": "PodDisruptionBudget",
71453          "version": "v1"
71454        }
71455      },
71456      "parameters": [
71457        {
71458          "description": "name of the PodDisruptionBudget",
71459          "in": "path",
71460          "name": "name",
71461          "required": true,
71462          "type": "string",
71463          "uniqueItems": true
71464        },
71465        {
71466          "description": "object name and auth scope, such as for teams and projects",
71467          "in": "path",
71468          "name": "namespace",
71469          "required": true,
71470          "type": "string",
71471          "uniqueItems": true
71472        },
71473        {
71474          "description": "If 'true', then the output is pretty printed.",
71475          "in": "query",
71476          "name": "pretty",
71477          "type": "string",
71478          "uniqueItems": true
71479        }
71480      ],
71481      "patch": {
71482        "consumes": [
71483          "application/json-patch+json",
71484          "application/merge-patch+json",
71485          "application/strategic-merge-patch+json",
71486          "application/apply-patch+yaml"
71487        ],
71488        "description": "partially update the specified PodDisruptionBudget",
71489        "operationId": "patchPolicyV1NamespacedPodDisruptionBudget",
71490        "parameters": [
71491          {
71492            "in": "body",
71493            "name": "body",
71494            "required": true,
71495            "schema": {
71496              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
71497            }
71498          },
71499          {
71500            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
71501            "in": "query",
71502            "name": "dryRun",
71503            "type": "string",
71504            "uniqueItems": true
71505          },
71506          {
71507            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
71508            "in": "query",
71509            "name": "fieldManager",
71510            "type": "string",
71511            "uniqueItems": true
71512          },
71513          {
71514            "description": "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.",
71515            "in": "query",
71516            "name": "force",
71517            "type": "boolean",
71518            "uniqueItems": true
71519          }
71520        ],
71521        "produces": [
71522          "application/json",
71523          "application/yaml",
71524          "application/vnd.kubernetes.protobuf"
71525        ],
71526        "responses": {
71527          "200": {
71528            "description": "OK",
71529            "schema": {
71530              "$ref": "#/definitions/io.k8s.api.policy.v1.PodDisruptionBudget"
71531            }
71532          },
71533          "201": {
71534            "description": "Created",
71535            "schema": {
71536              "$ref": "#/definitions/io.k8s.api.policy.v1.PodDisruptionBudget"
71537            }
71538          },
71539          "401": {
71540            "description": "Unauthorized"
71541          }
71542        },
71543        "schemes": [
71544          "https"
71545        ],
71546        "tags": [
71547          "policy_v1"
71548        ],
71549        "x-kubernetes-action": "patch",
71550        "x-kubernetes-group-version-kind": {
71551          "group": "policy",
71552          "kind": "PodDisruptionBudget",
71553          "version": "v1"
71554        }
71555      },
71556      "put": {
71557        "consumes": [
71558          "*/*"
71559        ],
71560        "description": "replace the specified PodDisruptionBudget",
71561        "operationId": "replacePolicyV1NamespacedPodDisruptionBudget",
71562        "parameters": [
71563          {
71564            "in": "body",
71565            "name": "body",
71566            "required": true,
71567            "schema": {
71568              "$ref": "#/definitions/io.k8s.api.policy.v1.PodDisruptionBudget"
71569            }
71570          },
71571          {
71572            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
71573            "in": "query",
71574            "name": "dryRun",
71575            "type": "string",
71576            "uniqueItems": true
71577          },
71578          {
71579            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
71580            "in": "query",
71581            "name": "fieldManager",
71582            "type": "string",
71583            "uniqueItems": true
71584          }
71585        ],
71586        "produces": [
71587          "application/json",
71588          "application/yaml",
71589          "application/vnd.kubernetes.protobuf"
71590        ],
71591        "responses": {
71592          "200": {
71593            "description": "OK",
71594            "schema": {
71595              "$ref": "#/definitions/io.k8s.api.policy.v1.PodDisruptionBudget"
71596            }
71597          },
71598          "201": {
71599            "description": "Created",
71600            "schema": {
71601              "$ref": "#/definitions/io.k8s.api.policy.v1.PodDisruptionBudget"
71602            }
71603          },
71604          "401": {
71605            "description": "Unauthorized"
71606          }
71607        },
71608        "schemes": [
71609          "https"
71610        ],
71611        "tags": [
71612          "policy_v1"
71613        ],
71614        "x-kubernetes-action": "put",
71615        "x-kubernetes-group-version-kind": {
71616          "group": "policy",
71617          "kind": "PodDisruptionBudget",
71618          "version": "v1"
71619        }
71620      }
71621    },
71622    "/apis/policy/v1/namespaces/{namespace}/poddisruptionbudgets/{name}/status": {
71623      "get": {
71624        "consumes": [
71625          "*/*"
71626        ],
71627        "description": "read status of the specified PodDisruptionBudget",
71628        "operationId": "readPolicyV1NamespacedPodDisruptionBudgetStatus",
71629        "produces": [
71630          "application/json",
71631          "application/yaml",
71632          "application/vnd.kubernetes.protobuf"
71633        ],
71634        "responses": {
71635          "200": {
71636            "description": "OK",
71637            "schema": {
71638              "$ref": "#/definitions/io.k8s.api.policy.v1.PodDisruptionBudget"
71639            }
71640          },
71641          "401": {
71642            "description": "Unauthorized"
71643          }
71644        },
71645        "schemes": [
71646          "https"
71647        ],
71648        "tags": [
71649          "policy_v1"
71650        ],
71651        "x-kubernetes-action": "get",
71652        "x-kubernetes-group-version-kind": {
71653          "group": "policy",
71654          "kind": "PodDisruptionBudget",
71655          "version": "v1"
71656        }
71657      },
71658      "parameters": [
71659        {
71660          "description": "name of the PodDisruptionBudget",
71661          "in": "path",
71662          "name": "name",
71663          "required": true,
71664          "type": "string",
71665          "uniqueItems": true
71666        },
71667        {
71668          "description": "object name and auth scope, such as for teams and projects",
71669          "in": "path",
71670          "name": "namespace",
71671          "required": true,
71672          "type": "string",
71673          "uniqueItems": true
71674        },
71675        {
71676          "description": "If 'true', then the output is pretty printed.",
71677          "in": "query",
71678          "name": "pretty",
71679          "type": "string",
71680          "uniqueItems": true
71681        }
71682      ],
71683      "patch": {
71684        "consumes": [
71685          "application/json-patch+json",
71686          "application/merge-patch+json",
71687          "application/strategic-merge-patch+json",
71688          "application/apply-patch+yaml"
71689        ],
71690        "description": "partially update status of the specified PodDisruptionBudget",
71691        "operationId": "patchPolicyV1NamespacedPodDisruptionBudgetStatus",
71692        "parameters": [
71693          {
71694            "in": "body",
71695            "name": "body",
71696            "required": true,
71697            "schema": {
71698              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
71699            }
71700          },
71701          {
71702            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
71703            "in": "query",
71704            "name": "dryRun",
71705            "type": "string",
71706            "uniqueItems": true
71707          },
71708          {
71709            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
71710            "in": "query",
71711            "name": "fieldManager",
71712            "type": "string",
71713            "uniqueItems": true
71714          },
71715          {
71716            "description": "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.",
71717            "in": "query",
71718            "name": "force",
71719            "type": "boolean",
71720            "uniqueItems": true
71721          }
71722        ],
71723        "produces": [
71724          "application/json",
71725          "application/yaml",
71726          "application/vnd.kubernetes.protobuf"
71727        ],
71728        "responses": {
71729          "200": {
71730            "description": "OK",
71731            "schema": {
71732              "$ref": "#/definitions/io.k8s.api.policy.v1.PodDisruptionBudget"
71733            }
71734          },
71735          "201": {
71736            "description": "Created",
71737            "schema": {
71738              "$ref": "#/definitions/io.k8s.api.policy.v1.PodDisruptionBudget"
71739            }
71740          },
71741          "401": {
71742            "description": "Unauthorized"
71743          }
71744        },
71745        "schemes": [
71746          "https"
71747        ],
71748        "tags": [
71749          "policy_v1"
71750        ],
71751        "x-kubernetes-action": "patch",
71752        "x-kubernetes-group-version-kind": {
71753          "group": "policy",
71754          "kind": "PodDisruptionBudget",
71755          "version": "v1"
71756        }
71757      },
71758      "put": {
71759        "consumes": [
71760          "*/*"
71761        ],
71762        "description": "replace status of the specified PodDisruptionBudget",
71763        "operationId": "replacePolicyV1NamespacedPodDisruptionBudgetStatus",
71764        "parameters": [
71765          {
71766            "in": "body",
71767            "name": "body",
71768            "required": true,
71769            "schema": {
71770              "$ref": "#/definitions/io.k8s.api.policy.v1.PodDisruptionBudget"
71771            }
71772          },
71773          {
71774            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
71775            "in": "query",
71776            "name": "dryRun",
71777            "type": "string",
71778            "uniqueItems": true
71779          },
71780          {
71781            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
71782            "in": "query",
71783            "name": "fieldManager",
71784            "type": "string",
71785            "uniqueItems": true
71786          }
71787        ],
71788        "produces": [
71789          "application/json",
71790          "application/yaml",
71791          "application/vnd.kubernetes.protobuf"
71792        ],
71793        "responses": {
71794          "200": {
71795            "description": "OK",
71796            "schema": {
71797              "$ref": "#/definitions/io.k8s.api.policy.v1.PodDisruptionBudget"
71798            }
71799          },
71800          "201": {
71801            "description": "Created",
71802            "schema": {
71803              "$ref": "#/definitions/io.k8s.api.policy.v1.PodDisruptionBudget"
71804            }
71805          },
71806          "401": {
71807            "description": "Unauthorized"
71808          }
71809        },
71810        "schemes": [
71811          "https"
71812        ],
71813        "tags": [
71814          "policy_v1"
71815        ],
71816        "x-kubernetes-action": "put",
71817        "x-kubernetes-group-version-kind": {
71818          "group": "policy",
71819          "kind": "PodDisruptionBudget",
71820          "version": "v1"
71821        }
71822      }
71823    },
71824    "/apis/policy/v1/poddisruptionbudgets": {
71825      "get": {
71826        "consumes": [
71827          "*/*"
71828        ],
71829        "description": "list or watch objects of kind PodDisruptionBudget",
71830        "operationId": "listPolicyV1PodDisruptionBudgetForAllNamespaces",
71831        "produces": [
71832          "application/json",
71833          "application/yaml",
71834          "application/vnd.kubernetes.protobuf",
71835          "application/json;stream=watch",
71836          "application/vnd.kubernetes.protobuf;stream=watch"
71837        ],
71838        "responses": {
71839          "200": {
71840            "description": "OK",
71841            "schema": {
71842              "$ref": "#/definitions/io.k8s.api.policy.v1.PodDisruptionBudgetList"
71843            }
71844          },
71845          "401": {
71846            "description": "Unauthorized"
71847          }
71848        },
71849        "schemes": [
71850          "https"
71851        ],
71852        "tags": [
71853          "policy_v1"
71854        ],
71855        "x-kubernetes-action": "list",
71856        "x-kubernetes-group-version-kind": {
71857          "group": "policy",
71858          "kind": "PodDisruptionBudget",
71859          "version": "v1"
71860        }
71861      },
71862      "parameters": [
71863        {
71864          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
71865          "in": "query",
71866          "name": "allowWatchBookmarks",
71867          "type": "boolean",
71868          "uniqueItems": true
71869        },
71870        {
71871          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
71872          "in": "query",
71873          "name": "continue",
71874          "type": "string",
71875          "uniqueItems": true
71876        },
71877        {
71878          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
71879          "in": "query",
71880          "name": "fieldSelector",
71881          "type": "string",
71882          "uniqueItems": true
71883        },
71884        {
71885          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
71886          "in": "query",
71887          "name": "labelSelector",
71888          "type": "string",
71889          "uniqueItems": true
71890        },
71891        {
71892          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
71893          "in": "query",
71894          "name": "limit",
71895          "type": "integer",
71896          "uniqueItems": true
71897        },
71898        {
71899          "description": "If 'true', then the output is pretty printed.",
71900          "in": "query",
71901          "name": "pretty",
71902          "type": "string",
71903          "uniqueItems": true
71904        },
71905        {
71906          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
71907          "in": "query",
71908          "name": "resourceVersion",
71909          "type": "string",
71910          "uniqueItems": true
71911        },
71912        {
71913          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
71914          "in": "query",
71915          "name": "resourceVersionMatch",
71916          "type": "string",
71917          "uniqueItems": true
71918        },
71919        {
71920          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
71921          "in": "query",
71922          "name": "timeoutSeconds",
71923          "type": "integer",
71924          "uniqueItems": true
71925        },
71926        {
71927          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
71928          "in": "query",
71929          "name": "watch",
71930          "type": "boolean",
71931          "uniqueItems": true
71932        }
71933      ]
71934    },
71935    "/apis/policy/v1/watch/namespaces/{namespace}/poddisruptionbudgets": {
71936      "get": {
71937        "consumes": [
71938          "*/*"
71939        ],
71940        "description": "watch individual changes to a list of PodDisruptionBudget. deprecated: use the 'watch' parameter with a list operation instead.",
71941        "operationId": "watchPolicyV1NamespacedPodDisruptionBudgetList",
71942        "produces": [
71943          "application/json",
71944          "application/yaml",
71945          "application/vnd.kubernetes.protobuf",
71946          "application/json;stream=watch",
71947          "application/vnd.kubernetes.protobuf;stream=watch"
71948        ],
71949        "responses": {
71950          "200": {
71951            "description": "OK",
71952            "schema": {
71953              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
71954            }
71955          },
71956          "401": {
71957            "description": "Unauthorized"
71958          }
71959        },
71960        "schemes": [
71961          "https"
71962        ],
71963        "tags": [
71964          "policy_v1"
71965        ],
71966        "x-kubernetes-action": "watchlist",
71967        "x-kubernetes-group-version-kind": {
71968          "group": "policy",
71969          "kind": "PodDisruptionBudget",
71970          "version": "v1"
71971        }
71972      },
71973      "parameters": [
71974        {
71975          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
71976          "in": "query",
71977          "name": "allowWatchBookmarks",
71978          "type": "boolean",
71979          "uniqueItems": true
71980        },
71981        {
71982          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
71983          "in": "query",
71984          "name": "continue",
71985          "type": "string",
71986          "uniqueItems": true
71987        },
71988        {
71989          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
71990          "in": "query",
71991          "name": "fieldSelector",
71992          "type": "string",
71993          "uniqueItems": true
71994        },
71995        {
71996          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
71997          "in": "query",
71998          "name": "labelSelector",
71999          "type": "string",
72000          "uniqueItems": true
72001        },
72002        {
72003          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
72004          "in": "query",
72005          "name": "limit",
72006          "type": "integer",
72007          "uniqueItems": true
72008        },
72009        {
72010          "description": "object name and auth scope, such as for teams and projects",
72011          "in": "path",
72012          "name": "namespace",
72013          "required": true,
72014          "type": "string",
72015          "uniqueItems": true
72016        },
72017        {
72018          "description": "If 'true', then the output is pretty printed.",
72019          "in": "query",
72020          "name": "pretty",
72021          "type": "string",
72022          "uniqueItems": true
72023        },
72024        {
72025          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
72026          "in": "query",
72027          "name": "resourceVersion",
72028          "type": "string",
72029          "uniqueItems": true
72030        },
72031        {
72032          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
72033          "in": "query",
72034          "name": "resourceVersionMatch",
72035          "type": "string",
72036          "uniqueItems": true
72037        },
72038        {
72039          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
72040          "in": "query",
72041          "name": "timeoutSeconds",
72042          "type": "integer",
72043          "uniqueItems": true
72044        },
72045        {
72046          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
72047          "in": "query",
72048          "name": "watch",
72049          "type": "boolean",
72050          "uniqueItems": true
72051        }
72052      ]
72053    },
72054    "/apis/policy/v1/watch/namespaces/{namespace}/poddisruptionbudgets/{name}": {
72055      "get": {
72056        "consumes": [
72057          "*/*"
72058        ],
72059        "description": "watch changes to an object of kind PodDisruptionBudget. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.",
72060        "operationId": "watchPolicyV1NamespacedPodDisruptionBudget",
72061        "produces": [
72062          "application/json",
72063          "application/yaml",
72064          "application/vnd.kubernetes.protobuf",
72065          "application/json;stream=watch",
72066          "application/vnd.kubernetes.protobuf;stream=watch"
72067        ],
72068        "responses": {
72069          "200": {
72070            "description": "OK",
72071            "schema": {
72072              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
72073            }
72074          },
72075          "401": {
72076            "description": "Unauthorized"
72077          }
72078        },
72079        "schemes": [
72080          "https"
72081        ],
72082        "tags": [
72083          "policy_v1"
72084        ],
72085        "x-kubernetes-action": "watch",
72086        "x-kubernetes-group-version-kind": {
72087          "group": "policy",
72088          "kind": "PodDisruptionBudget",
72089          "version": "v1"
72090        }
72091      },
72092      "parameters": [
72093        {
72094          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
72095          "in": "query",
72096          "name": "allowWatchBookmarks",
72097          "type": "boolean",
72098          "uniqueItems": true
72099        },
72100        {
72101          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
72102          "in": "query",
72103          "name": "continue",
72104          "type": "string",
72105          "uniqueItems": true
72106        },
72107        {
72108          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
72109          "in": "query",
72110          "name": "fieldSelector",
72111          "type": "string",
72112          "uniqueItems": true
72113        },
72114        {
72115          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
72116          "in": "query",
72117          "name": "labelSelector",
72118          "type": "string",
72119          "uniqueItems": true
72120        },
72121        {
72122          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
72123          "in": "query",
72124          "name": "limit",
72125          "type": "integer",
72126          "uniqueItems": true
72127        },
72128        {
72129          "description": "name of the PodDisruptionBudget",
72130          "in": "path",
72131          "name": "name",
72132          "required": true,
72133          "type": "string",
72134          "uniqueItems": true
72135        },
72136        {
72137          "description": "object name and auth scope, such as for teams and projects",
72138          "in": "path",
72139          "name": "namespace",
72140          "required": true,
72141          "type": "string",
72142          "uniqueItems": true
72143        },
72144        {
72145          "description": "If 'true', then the output is pretty printed.",
72146          "in": "query",
72147          "name": "pretty",
72148          "type": "string",
72149          "uniqueItems": true
72150        },
72151        {
72152          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
72153          "in": "query",
72154          "name": "resourceVersion",
72155          "type": "string",
72156          "uniqueItems": true
72157        },
72158        {
72159          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
72160          "in": "query",
72161          "name": "resourceVersionMatch",
72162          "type": "string",
72163          "uniqueItems": true
72164        },
72165        {
72166          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
72167          "in": "query",
72168          "name": "timeoutSeconds",
72169          "type": "integer",
72170          "uniqueItems": true
72171        },
72172        {
72173          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
72174          "in": "query",
72175          "name": "watch",
72176          "type": "boolean",
72177          "uniqueItems": true
72178        }
72179      ]
72180    },
72181    "/apis/policy/v1/watch/poddisruptionbudgets": {
72182      "get": {
72183        "consumes": [
72184          "*/*"
72185        ],
72186        "description": "watch individual changes to a list of PodDisruptionBudget. deprecated: use the 'watch' parameter with a list operation instead.",
72187        "operationId": "watchPolicyV1PodDisruptionBudgetListForAllNamespaces",
72188        "produces": [
72189          "application/json",
72190          "application/yaml",
72191          "application/vnd.kubernetes.protobuf",
72192          "application/json;stream=watch",
72193          "application/vnd.kubernetes.protobuf;stream=watch"
72194        ],
72195        "responses": {
72196          "200": {
72197            "description": "OK",
72198            "schema": {
72199              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
72200            }
72201          },
72202          "401": {
72203            "description": "Unauthorized"
72204          }
72205        },
72206        "schemes": [
72207          "https"
72208        ],
72209        "tags": [
72210          "policy_v1"
72211        ],
72212        "x-kubernetes-action": "watchlist",
72213        "x-kubernetes-group-version-kind": {
72214          "group": "policy",
72215          "kind": "PodDisruptionBudget",
72216          "version": "v1"
72217        }
72218      },
72219      "parameters": [
72220        {
72221          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
72222          "in": "query",
72223          "name": "allowWatchBookmarks",
72224          "type": "boolean",
72225          "uniqueItems": true
72226        },
72227        {
72228          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
72229          "in": "query",
72230          "name": "continue",
72231          "type": "string",
72232          "uniqueItems": true
72233        },
72234        {
72235          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
72236          "in": "query",
72237          "name": "fieldSelector",
72238          "type": "string",
72239          "uniqueItems": true
72240        },
72241        {
72242          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
72243          "in": "query",
72244          "name": "labelSelector",
72245          "type": "string",
72246          "uniqueItems": true
72247        },
72248        {
72249          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
72250          "in": "query",
72251          "name": "limit",
72252          "type": "integer",
72253          "uniqueItems": true
72254        },
72255        {
72256          "description": "If 'true', then the output is pretty printed.",
72257          "in": "query",
72258          "name": "pretty",
72259          "type": "string",
72260          "uniqueItems": true
72261        },
72262        {
72263          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
72264          "in": "query",
72265          "name": "resourceVersion",
72266          "type": "string",
72267          "uniqueItems": true
72268        },
72269        {
72270          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
72271          "in": "query",
72272          "name": "resourceVersionMatch",
72273          "type": "string",
72274          "uniqueItems": true
72275        },
72276        {
72277          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
72278          "in": "query",
72279          "name": "timeoutSeconds",
72280          "type": "integer",
72281          "uniqueItems": true
72282        },
72283        {
72284          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
72285          "in": "query",
72286          "name": "watch",
72287          "type": "boolean",
72288          "uniqueItems": true
72289        }
72290      ]
72291    },
72292    "/apis/policy/v1beta1/": {
72293      "get": {
72294        "consumes": [
72295          "application/json",
72296          "application/yaml",
72297          "application/vnd.kubernetes.protobuf"
72298        ],
72299        "description": "get available resources",
72300        "operationId": "getPolicyV1beta1APIResources",
72301        "produces": [
72302          "application/json",
72303          "application/yaml",
72304          "application/vnd.kubernetes.protobuf"
72305        ],
72306        "responses": {
72307          "200": {
72308            "description": "OK",
72309            "schema": {
72310              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
72311            }
72312          },
72313          "401": {
72314            "description": "Unauthorized"
72315          }
72316        },
72317        "schemes": [
72318          "https"
72319        ],
72320        "tags": [
72321          "policy_v1beta1"
72322        ]
72323      }
72324    },
72325    "/apis/policy/v1beta1/namespaces/{namespace}/poddisruptionbudgets": {
72326      "delete": {
72327        "consumes": [
72328          "*/*"
72329        ],
72330        "description": "delete collection of PodDisruptionBudget",
72331        "operationId": "deletePolicyV1beta1CollectionNamespacedPodDisruptionBudget",
72332        "parameters": [
72333          {
72334            "in": "body",
72335            "name": "body",
72336            "schema": {
72337              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
72338            }
72339          },
72340          {
72341            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
72342            "in": "query",
72343            "name": "continue",
72344            "type": "string",
72345            "uniqueItems": true
72346          },
72347          {
72348            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
72349            "in": "query",
72350            "name": "dryRun",
72351            "type": "string",
72352            "uniqueItems": true
72353          },
72354          {
72355            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
72356            "in": "query",
72357            "name": "fieldSelector",
72358            "type": "string",
72359            "uniqueItems": true
72360          },
72361          {
72362            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
72363            "in": "query",
72364            "name": "gracePeriodSeconds",
72365            "type": "integer",
72366            "uniqueItems": true
72367          },
72368          {
72369            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
72370            "in": "query",
72371            "name": "labelSelector",
72372            "type": "string",
72373            "uniqueItems": true
72374          },
72375          {
72376            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
72377            "in": "query",
72378            "name": "limit",
72379            "type": "integer",
72380            "uniqueItems": true
72381          },
72382          {
72383            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
72384            "in": "query",
72385            "name": "orphanDependents",
72386            "type": "boolean",
72387            "uniqueItems": true
72388          },
72389          {
72390            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
72391            "in": "query",
72392            "name": "propagationPolicy",
72393            "type": "string",
72394            "uniqueItems": true
72395          },
72396          {
72397            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
72398            "in": "query",
72399            "name": "resourceVersion",
72400            "type": "string",
72401            "uniqueItems": true
72402          },
72403          {
72404            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
72405            "in": "query",
72406            "name": "resourceVersionMatch",
72407            "type": "string",
72408            "uniqueItems": true
72409          },
72410          {
72411            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
72412            "in": "query",
72413            "name": "timeoutSeconds",
72414            "type": "integer",
72415            "uniqueItems": true
72416          }
72417        ],
72418        "produces": [
72419          "application/json",
72420          "application/yaml",
72421          "application/vnd.kubernetes.protobuf"
72422        ],
72423        "responses": {
72424          "200": {
72425            "description": "OK",
72426            "schema": {
72427              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
72428            }
72429          },
72430          "401": {
72431            "description": "Unauthorized"
72432          }
72433        },
72434        "schemes": [
72435          "https"
72436        ],
72437        "tags": [
72438          "policy_v1beta1"
72439        ],
72440        "x-kubernetes-action": "deletecollection",
72441        "x-kubernetes-group-version-kind": {
72442          "group": "policy",
72443          "kind": "PodDisruptionBudget",
72444          "version": "v1beta1"
72445        }
72446      },
72447      "get": {
72448        "consumes": [
72449          "*/*"
72450        ],
72451        "description": "list or watch objects of kind PodDisruptionBudget",
72452        "operationId": "listPolicyV1beta1NamespacedPodDisruptionBudget",
72453        "parameters": [
72454          {
72455            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
72456            "in": "query",
72457            "name": "allowWatchBookmarks",
72458            "type": "boolean",
72459            "uniqueItems": true
72460          },
72461          {
72462            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
72463            "in": "query",
72464            "name": "continue",
72465            "type": "string",
72466            "uniqueItems": true
72467          },
72468          {
72469            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
72470            "in": "query",
72471            "name": "fieldSelector",
72472            "type": "string",
72473            "uniqueItems": true
72474          },
72475          {
72476            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
72477            "in": "query",
72478            "name": "labelSelector",
72479            "type": "string",
72480            "uniqueItems": true
72481          },
72482          {
72483            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
72484            "in": "query",
72485            "name": "limit",
72486            "type": "integer",
72487            "uniqueItems": true
72488          },
72489          {
72490            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
72491            "in": "query",
72492            "name": "resourceVersion",
72493            "type": "string",
72494            "uniqueItems": true
72495          },
72496          {
72497            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
72498            "in": "query",
72499            "name": "resourceVersionMatch",
72500            "type": "string",
72501            "uniqueItems": true
72502          },
72503          {
72504            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
72505            "in": "query",
72506            "name": "timeoutSeconds",
72507            "type": "integer",
72508            "uniqueItems": true
72509          },
72510          {
72511            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
72512            "in": "query",
72513            "name": "watch",
72514            "type": "boolean",
72515            "uniqueItems": true
72516          }
72517        ],
72518        "produces": [
72519          "application/json",
72520          "application/yaml",
72521          "application/vnd.kubernetes.protobuf",
72522          "application/json;stream=watch",
72523          "application/vnd.kubernetes.protobuf;stream=watch"
72524        ],
72525        "responses": {
72526          "200": {
72527            "description": "OK",
72528            "schema": {
72529              "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodDisruptionBudgetList"
72530            }
72531          },
72532          "401": {
72533            "description": "Unauthorized"
72534          }
72535        },
72536        "schemes": [
72537          "https"
72538        ],
72539        "tags": [
72540          "policy_v1beta1"
72541        ],
72542        "x-kubernetes-action": "list",
72543        "x-kubernetes-group-version-kind": {
72544          "group": "policy",
72545          "kind": "PodDisruptionBudget",
72546          "version": "v1beta1"
72547        }
72548      },
72549      "parameters": [
72550        {
72551          "description": "object name and auth scope, such as for teams and projects",
72552          "in": "path",
72553          "name": "namespace",
72554          "required": true,
72555          "type": "string",
72556          "uniqueItems": true
72557        },
72558        {
72559          "description": "If 'true', then the output is pretty printed.",
72560          "in": "query",
72561          "name": "pretty",
72562          "type": "string",
72563          "uniqueItems": true
72564        }
72565      ],
72566      "post": {
72567        "consumes": [
72568          "*/*"
72569        ],
72570        "description": "create a PodDisruptionBudget",
72571        "operationId": "createPolicyV1beta1NamespacedPodDisruptionBudget",
72572        "parameters": [
72573          {
72574            "in": "body",
72575            "name": "body",
72576            "required": true,
72577            "schema": {
72578              "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodDisruptionBudget"
72579            }
72580          },
72581          {
72582            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
72583            "in": "query",
72584            "name": "dryRun",
72585            "type": "string",
72586            "uniqueItems": true
72587          },
72588          {
72589            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
72590            "in": "query",
72591            "name": "fieldManager",
72592            "type": "string",
72593            "uniqueItems": true
72594          }
72595        ],
72596        "produces": [
72597          "application/json",
72598          "application/yaml",
72599          "application/vnd.kubernetes.protobuf"
72600        ],
72601        "responses": {
72602          "200": {
72603            "description": "OK",
72604            "schema": {
72605              "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodDisruptionBudget"
72606            }
72607          },
72608          "201": {
72609            "description": "Created",
72610            "schema": {
72611              "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodDisruptionBudget"
72612            }
72613          },
72614          "202": {
72615            "description": "Accepted",
72616            "schema": {
72617              "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodDisruptionBudget"
72618            }
72619          },
72620          "401": {
72621            "description": "Unauthorized"
72622          }
72623        },
72624        "schemes": [
72625          "https"
72626        ],
72627        "tags": [
72628          "policy_v1beta1"
72629        ],
72630        "x-kubernetes-action": "post",
72631        "x-kubernetes-group-version-kind": {
72632          "group": "policy",
72633          "kind": "PodDisruptionBudget",
72634          "version": "v1beta1"
72635        }
72636      }
72637    },
72638    "/apis/policy/v1beta1/namespaces/{namespace}/poddisruptionbudgets/{name}": {
72639      "delete": {
72640        "consumes": [
72641          "*/*"
72642        ],
72643        "description": "delete a PodDisruptionBudget",
72644        "operationId": "deletePolicyV1beta1NamespacedPodDisruptionBudget",
72645        "parameters": [
72646          {
72647            "in": "body",
72648            "name": "body",
72649            "schema": {
72650              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
72651            }
72652          },
72653          {
72654            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
72655            "in": "query",
72656            "name": "dryRun",
72657            "type": "string",
72658            "uniqueItems": true
72659          },
72660          {
72661            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
72662            "in": "query",
72663            "name": "gracePeriodSeconds",
72664            "type": "integer",
72665            "uniqueItems": true
72666          },
72667          {
72668            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
72669            "in": "query",
72670            "name": "orphanDependents",
72671            "type": "boolean",
72672            "uniqueItems": true
72673          },
72674          {
72675            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
72676            "in": "query",
72677            "name": "propagationPolicy",
72678            "type": "string",
72679            "uniqueItems": true
72680          }
72681        ],
72682        "produces": [
72683          "application/json",
72684          "application/yaml",
72685          "application/vnd.kubernetes.protobuf"
72686        ],
72687        "responses": {
72688          "200": {
72689            "description": "OK",
72690            "schema": {
72691              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
72692            }
72693          },
72694          "202": {
72695            "description": "Accepted",
72696            "schema": {
72697              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
72698            }
72699          },
72700          "401": {
72701            "description": "Unauthorized"
72702          }
72703        },
72704        "schemes": [
72705          "https"
72706        ],
72707        "tags": [
72708          "policy_v1beta1"
72709        ],
72710        "x-kubernetes-action": "delete",
72711        "x-kubernetes-group-version-kind": {
72712          "group": "policy",
72713          "kind": "PodDisruptionBudget",
72714          "version": "v1beta1"
72715        }
72716      },
72717      "get": {
72718        "consumes": [
72719          "*/*"
72720        ],
72721        "description": "read the specified PodDisruptionBudget",
72722        "operationId": "readPolicyV1beta1NamespacedPodDisruptionBudget",
72723        "produces": [
72724          "application/json",
72725          "application/yaml",
72726          "application/vnd.kubernetes.protobuf"
72727        ],
72728        "responses": {
72729          "200": {
72730            "description": "OK",
72731            "schema": {
72732              "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodDisruptionBudget"
72733            }
72734          },
72735          "401": {
72736            "description": "Unauthorized"
72737          }
72738        },
72739        "schemes": [
72740          "https"
72741        ],
72742        "tags": [
72743          "policy_v1beta1"
72744        ],
72745        "x-kubernetes-action": "get",
72746        "x-kubernetes-group-version-kind": {
72747          "group": "policy",
72748          "kind": "PodDisruptionBudget",
72749          "version": "v1beta1"
72750        }
72751      },
72752      "parameters": [
72753        {
72754          "description": "name of the PodDisruptionBudget",
72755          "in": "path",
72756          "name": "name",
72757          "required": true,
72758          "type": "string",
72759          "uniqueItems": true
72760        },
72761        {
72762          "description": "object name and auth scope, such as for teams and projects",
72763          "in": "path",
72764          "name": "namespace",
72765          "required": true,
72766          "type": "string",
72767          "uniqueItems": true
72768        },
72769        {
72770          "description": "If 'true', then the output is pretty printed.",
72771          "in": "query",
72772          "name": "pretty",
72773          "type": "string",
72774          "uniqueItems": true
72775        }
72776      ],
72777      "patch": {
72778        "consumes": [
72779          "application/json-patch+json",
72780          "application/merge-patch+json",
72781          "application/strategic-merge-patch+json",
72782          "application/apply-patch+yaml"
72783        ],
72784        "description": "partially update the specified PodDisruptionBudget",
72785        "operationId": "patchPolicyV1beta1NamespacedPodDisruptionBudget",
72786        "parameters": [
72787          {
72788            "in": "body",
72789            "name": "body",
72790            "required": true,
72791            "schema": {
72792              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
72793            }
72794          },
72795          {
72796            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
72797            "in": "query",
72798            "name": "dryRun",
72799            "type": "string",
72800            "uniqueItems": true
72801          },
72802          {
72803            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
72804            "in": "query",
72805            "name": "fieldManager",
72806            "type": "string",
72807            "uniqueItems": true
72808          },
72809          {
72810            "description": "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.",
72811            "in": "query",
72812            "name": "force",
72813            "type": "boolean",
72814            "uniqueItems": true
72815          }
72816        ],
72817        "produces": [
72818          "application/json",
72819          "application/yaml",
72820          "application/vnd.kubernetes.protobuf"
72821        ],
72822        "responses": {
72823          "200": {
72824            "description": "OK",
72825            "schema": {
72826              "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodDisruptionBudget"
72827            }
72828          },
72829          "201": {
72830            "description": "Created",
72831            "schema": {
72832              "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodDisruptionBudget"
72833            }
72834          },
72835          "401": {
72836            "description": "Unauthorized"
72837          }
72838        },
72839        "schemes": [
72840          "https"
72841        ],
72842        "tags": [
72843          "policy_v1beta1"
72844        ],
72845        "x-kubernetes-action": "patch",
72846        "x-kubernetes-group-version-kind": {
72847          "group": "policy",
72848          "kind": "PodDisruptionBudget",
72849          "version": "v1beta1"
72850        }
72851      },
72852      "put": {
72853        "consumes": [
72854          "*/*"
72855        ],
72856        "description": "replace the specified PodDisruptionBudget",
72857        "operationId": "replacePolicyV1beta1NamespacedPodDisruptionBudget",
72858        "parameters": [
72859          {
72860            "in": "body",
72861            "name": "body",
72862            "required": true,
72863            "schema": {
72864              "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodDisruptionBudget"
72865            }
72866          },
72867          {
72868            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
72869            "in": "query",
72870            "name": "dryRun",
72871            "type": "string",
72872            "uniqueItems": true
72873          },
72874          {
72875            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
72876            "in": "query",
72877            "name": "fieldManager",
72878            "type": "string",
72879            "uniqueItems": true
72880          }
72881        ],
72882        "produces": [
72883          "application/json",
72884          "application/yaml",
72885          "application/vnd.kubernetes.protobuf"
72886        ],
72887        "responses": {
72888          "200": {
72889            "description": "OK",
72890            "schema": {
72891              "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodDisruptionBudget"
72892            }
72893          },
72894          "201": {
72895            "description": "Created",
72896            "schema": {
72897              "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodDisruptionBudget"
72898            }
72899          },
72900          "401": {
72901            "description": "Unauthorized"
72902          }
72903        },
72904        "schemes": [
72905          "https"
72906        ],
72907        "tags": [
72908          "policy_v1beta1"
72909        ],
72910        "x-kubernetes-action": "put",
72911        "x-kubernetes-group-version-kind": {
72912          "group": "policy",
72913          "kind": "PodDisruptionBudget",
72914          "version": "v1beta1"
72915        }
72916      }
72917    },
72918    "/apis/policy/v1beta1/namespaces/{namespace}/poddisruptionbudgets/{name}/status": {
72919      "get": {
72920        "consumes": [
72921          "*/*"
72922        ],
72923        "description": "read status of the specified PodDisruptionBudget",
72924        "operationId": "readPolicyV1beta1NamespacedPodDisruptionBudgetStatus",
72925        "produces": [
72926          "application/json",
72927          "application/yaml",
72928          "application/vnd.kubernetes.protobuf"
72929        ],
72930        "responses": {
72931          "200": {
72932            "description": "OK",
72933            "schema": {
72934              "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodDisruptionBudget"
72935            }
72936          },
72937          "401": {
72938            "description": "Unauthorized"
72939          }
72940        },
72941        "schemes": [
72942          "https"
72943        ],
72944        "tags": [
72945          "policy_v1beta1"
72946        ],
72947        "x-kubernetes-action": "get",
72948        "x-kubernetes-group-version-kind": {
72949          "group": "policy",
72950          "kind": "PodDisruptionBudget",
72951          "version": "v1beta1"
72952        }
72953      },
72954      "parameters": [
72955        {
72956          "description": "name of the PodDisruptionBudget",
72957          "in": "path",
72958          "name": "name",
72959          "required": true,
72960          "type": "string",
72961          "uniqueItems": true
72962        },
72963        {
72964          "description": "object name and auth scope, such as for teams and projects",
72965          "in": "path",
72966          "name": "namespace",
72967          "required": true,
72968          "type": "string",
72969          "uniqueItems": true
72970        },
72971        {
72972          "description": "If 'true', then the output is pretty printed.",
72973          "in": "query",
72974          "name": "pretty",
72975          "type": "string",
72976          "uniqueItems": true
72977        }
72978      ],
72979      "patch": {
72980        "consumes": [
72981          "application/json-patch+json",
72982          "application/merge-patch+json",
72983          "application/strategic-merge-patch+json",
72984          "application/apply-patch+yaml"
72985        ],
72986        "description": "partially update status of the specified PodDisruptionBudget",
72987        "operationId": "patchPolicyV1beta1NamespacedPodDisruptionBudgetStatus",
72988        "parameters": [
72989          {
72990            "in": "body",
72991            "name": "body",
72992            "required": true,
72993            "schema": {
72994              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
72995            }
72996          },
72997          {
72998            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
72999            "in": "query",
73000            "name": "dryRun",
73001            "type": "string",
73002            "uniqueItems": true
73003          },
73004          {
73005            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
73006            "in": "query",
73007            "name": "fieldManager",
73008            "type": "string",
73009            "uniqueItems": true
73010          },
73011          {
73012            "description": "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.",
73013            "in": "query",
73014            "name": "force",
73015            "type": "boolean",
73016            "uniqueItems": true
73017          }
73018        ],
73019        "produces": [
73020          "application/json",
73021          "application/yaml",
73022          "application/vnd.kubernetes.protobuf"
73023        ],
73024        "responses": {
73025          "200": {
73026            "description": "OK",
73027            "schema": {
73028              "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodDisruptionBudget"
73029            }
73030          },
73031          "201": {
73032            "description": "Created",
73033            "schema": {
73034              "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodDisruptionBudget"
73035            }
73036          },
73037          "401": {
73038            "description": "Unauthorized"
73039          }
73040        },
73041        "schemes": [
73042          "https"
73043        ],
73044        "tags": [
73045          "policy_v1beta1"
73046        ],
73047        "x-kubernetes-action": "patch",
73048        "x-kubernetes-group-version-kind": {
73049          "group": "policy",
73050          "kind": "PodDisruptionBudget",
73051          "version": "v1beta1"
73052        }
73053      },
73054      "put": {
73055        "consumes": [
73056          "*/*"
73057        ],
73058        "description": "replace status of the specified PodDisruptionBudget",
73059        "operationId": "replacePolicyV1beta1NamespacedPodDisruptionBudgetStatus",
73060        "parameters": [
73061          {
73062            "in": "body",
73063            "name": "body",
73064            "required": true,
73065            "schema": {
73066              "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodDisruptionBudget"
73067            }
73068          },
73069          {
73070            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
73071            "in": "query",
73072            "name": "dryRun",
73073            "type": "string",
73074            "uniqueItems": true
73075          },
73076          {
73077            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
73078            "in": "query",
73079            "name": "fieldManager",
73080            "type": "string",
73081            "uniqueItems": true
73082          }
73083        ],
73084        "produces": [
73085          "application/json",
73086          "application/yaml",
73087          "application/vnd.kubernetes.protobuf"
73088        ],
73089        "responses": {
73090          "200": {
73091            "description": "OK",
73092            "schema": {
73093              "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodDisruptionBudget"
73094            }
73095          },
73096          "201": {
73097            "description": "Created",
73098            "schema": {
73099              "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodDisruptionBudget"
73100            }
73101          },
73102          "401": {
73103            "description": "Unauthorized"
73104          }
73105        },
73106        "schemes": [
73107          "https"
73108        ],
73109        "tags": [
73110          "policy_v1beta1"
73111        ],
73112        "x-kubernetes-action": "put",
73113        "x-kubernetes-group-version-kind": {
73114          "group": "policy",
73115          "kind": "PodDisruptionBudget",
73116          "version": "v1beta1"
73117        }
73118      }
73119    },
73120    "/apis/policy/v1beta1/poddisruptionbudgets": {
73121      "get": {
73122        "consumes": [
73123          "*/*"
73124        ],
73125        "description": "list or watch objects of kind PodDisruptionBudget",
73126        "operationId": "listPolicyV1beta1PodDisruptionBudgetForAllNamespaces",
73127        "produces": [
73128          "application/json",
73129          "application/yaml",
73130          "application/vnd.kubernetes.protobuf",
73131          "application/json;stream=watch",
73132          "application/vnd.kubernetes.protobuf;stream=watch"
73133        ],
73134        "responses": {
73135          "200": {
73136            "description": "OK",
73137            "schema": {
73138              "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodDisruptionBudgetList"
73139            }
73140          },
73141          "401": {
73142            "description": "Unauthorized"
73143          }
73144        },
73145        "schemes": [
73146          "https"
73147        ],
73148        "tags": [
73149          "policy_v1beta1"
73150        ],
73151        "x-kubernetes-action": "list",
73152        "x-kubernetes-group-version-kind": {
73153          "group": "policy",
73154          "kind": "PodDisruptionBudget",
73155          "version": "v1beta1"
73156        }
73157      },
73158      "parameters": [
73159        {
73160          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
73161          "in": "query",
73162          "name": "allowWatchBookmarks",
73163          "type": "boolean",
73164          "uniqueItems": true
73165        },
73166        {
73167          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
73168          "in": "query",
73169          "name": "continue",
73170          "type": "string",
73171          "uniqueItems": true
73172        },
73173        {
73174          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
73175          "in": "query",
73176          "name": "fieldSelector",
73177          "type": "string",
73178          "uniqueItems": true
73179        },
73180        {
73181          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
73182          "in": "query",
73183          "name": "labelSelector",
73184          "type": "string",
73185          "uniqueItems": true
73186        },
73187        {
73188          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
73189          "in": "query",
73190          "name": "limit",
73191          "type": "integer",
73192          "uniqueItems": true
73193        },
73194        {
73195          "description": "If 'true', then the output is pretty printed.",
73196          "in": "query",
73197          "name": "pretty",
73198          "type": "string",
73199          "uniqueItems": true
73200        },
73201        {
73202          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
73203          "in": "query",
73204          "name": "resourceVersion",
73205          "type": "string",
73206          "uniqueItems": true
73207        },
73208        {
73209          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
73210          "in": "query",
73211          "name": "resourceVersionMatch",
73212          "type": "string",
73213          "uniqueItems": true
73214        },
73215        {
73216          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
73217          "in": "query",
73218          "name": "timeoutSeconds",
73219          "type": "integer",
73220          "uniqueItems": true
73221        },
73222        {
73223          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
73224          "in": "query",
73225          "name": "watch",
73226          "type": "boolean",
73227          "uniqueItems": true
73228        }
73229      ]
73230    },
73231    "/apis/policy/v1beta1/podsecuritypolicies": {
73232      "delete": {
73233        "consumes": [
73234          "*/*"
73235        ],
73236        "description": "delete collection of PodSecurityPolicy",
73237        "operationId": "deletePolicyV1beta1CollectionPodSecurityPolicy",
73238        "parameters": [
73239          {
73240            "in": "body",
73241            "name": "body",
73242            "schema": {
73243              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
73244            }
73245          },
73246          {
73247            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
73248            "in": "query",
73249            "name": "continue",
73250            "type": "string",
73251            "uniqueItems": true
73252          },
73253          {
73254            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
73255            "in": "query",
73256            "name": "dryRun",
73257            "type": "string",
73258            "uniqueItems": true
73259          },
73260          {
73261            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
73262            "in": "query",
73263            "name": "fieldSelector",
73264            "type": "string",
73265            "uniqueItems": true
73266          },
73267          {
73268            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
73269            "in": "query",
73270            "name": "gracePeriodSeconds",
73271            "type": "integer",
73272            "uniqueItems": true
73273          },
73274          {
73275            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
73276            "in": "query",
73277            "name": "labelSelector",
73278            "type": "string",
73279            "uniqueItems": true
73280          },
73281          {
73282            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
73283            "in": "query",
73284            "name": "limit",
73285            "type": "integer",
73286            "uniqueItems": true
73287          },
73288          {
73289            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
73290            "in": "query",
73291            "name": "orphanDependents",
73292            "type": "boolean",
73293            "uniqueItems": true
73294          },
73295          {
73296            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
73297            "in": "query",
73298            "name": "propagationPolicy",
73299            "type": "string",
73300            "uniqueItems": true
73301          },
73302          {
73303            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
73304            "in": "query",
73305            "name": "resourceVersion",
73306            "type": "string",
73307            "uniqueItems": true
73308          },
73309          {
73310            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
73311            "in": "query",
73312            "name": "resourceVersionMatch",
73313            "type": "string",
73314            "uniqueItems": true
73315          },
73316          {
73317            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
73318            "in": "query",
73319            "name": "timeoutSeconds",
73320            "type": "integer",
73321            "uniqueItems": true
73322          }
73323        ],
73324        "produces": [
73325          "application/json",
73326          "application/yaml",
73327          "application/vnd.kubernetes.protobuf"
73328        ],
73329        "responses": {
73330          "200": {
73331            "description": "OK",
73332            "schema": {
73333              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
73334            }
73335          },
73336          "401": {
73337            "description": "Unauthorized"
73338          }
73339        },
73340        "schemes": [
73341          "https"
73342        ],
73343        "tags": [
73344          "policy_v1beta1"
73345        ],
73346        "x-kubernetes-action": "deletecollection",
73347        "x-kubernetes-group-version-kind": {
73348          "group": "policy",
73349          "kind": "PodSecurityPolicy",
73350          "version": "v1beta1"
73351        }
73352      },
73353      "get": {
73354        "consumes": [
73355          "*/*"
73356        ],
73357        "description": "list or watch objects of kind PodSecurityPolicy",
73358        "operationId": "listPolicyV1beta1PodSecurityPolicy",
73359        "parameters": [
73360          {
73361            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
73362            "in": "query",
73363            "name": "allowWatchBookmarks",
73364            "type": "boolean",
73365            "uniqueItems": true
73366          },
73367          {
73368            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
73369            "in": "query",
73370            "name": "continue",
73371            "type": "string",
73372            "uniqueItems": true
73373          },
73374          {
73375            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
73376            "in": "query",
73377            "name": "fieldSelector",
73378            "type": "string",
73379            "uniqueItems": true
73380          },
73381          {
73382            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
73383            "in": "query",
73384            "name": "labelSelector",
73385            "type": "string",
73386            "uniqueItems": true
73387          },
73388          {
73389            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
73390            "in": "query",
73391            "name": "limit",
73392            "type": "integer",
73393            "uniqueItems": true
73394          },
73395          {
73396            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
73397            "in": "query",
73398            "name": "resourceVersion",
73399            "type": "string",
73400            "uniqueItems": true
73401          },
73402          {
73403            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
73404            "in": "query",
73405            "name": "resourceVersionMatch",
73406            "type": "string",
73407            "uniqueItems": true
73408          },
73409          {
73410            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
73411            "in": "query",
73412            "name": "timeoutSeconds",
73413            "type": "integer",
73414            "uniqueItems": true
73415          },
73416          {
73417            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
73418            "in": "query",
73419            "name": "watch",
73420            "type": "boolean",
73421            "uniqueItems": true
73422          }
73423        ],
73424        "produces": [
73425          "application/json",
73426          "application/yaml",
73427          "application/vnd.kubernetes.protobuf",
73428          "application/json;stream=watch",
73429          "application/vnd.kubernetes.protobuf;stream=watch"
73430        ],
73431        "responses": {
73432          "200": {
73433            "description": "OK",
73434            "schema": {
73435              "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodSecurityPolicyList"
73436            }
73437          },
73438          "401": {
73439            "description": "Unauthorized"
73440          }
73441        },
73442        "schemes": [
73443          "https"
73444        ],
73445        "tags": [
73446          "policy_v1beta1"
73447        ],
73448        "x-kubernetes-action": "list",
73449        "x-kubernetes-group-version-kind": {
73450          "group": "policy",
73451          "kind": "PodSecurityPolicy",
73452          "version": "v1beta1"
73453        }
73454      },
73455      "parameters": [
73456        {
73457          "description": "If 'true', then the output is pretty printed.",
73458          "in": "query",
73459          "name": "pretty",
73460          "type": "string",
73461          "uniqueItems": true
73462        }
73463      ],
73464      "post": {
73465        "consumes": [
73466          "*/*"
73467        ],
73468        "description": "create a PodSecurityPolicy",
73469        "operationId": "createPolicyV1beta1PodSecurityPolicy",
73470        "parameters": [
73471          {
73472            "in": "body",
73473            "name": "body",
73474            "required": true,
73475            "schema": {
73476              "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodSecurityPolicy"
73477            }
73478          },
73479          {
73480            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
73481            "in": "query",
73482            "name": "dryRun",
73483            "type": "string",
73484            "uniqueItems": true
73485          },
73486          {
73487            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
73488            "in": "query",
73489            "name": "fieldManager",
73490            "type": "string",
73491            "uniqueItems": true
73492          }
73493        ],
73494        "produces": [
73495          "application/json",
73496          "application/yaml",
73497          "application/vnd.kubernetes.protobuf"
73498        ],
73499        "responses": {
73500          "200": {
73501            "description": "OK",
73502            "schema": {
73503              "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodSecurityPolicy"
73504            }
73505          },
73506          "201": {
73507            "description": "Created",
73508            "schema": {
73509              "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodSecurityPolicy"
73510            }
73511          },
73512          "202": {
73513            "description": "Accepted",
73514            "schema": {
73515              "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodSecurityPolicy"
73516            }
73517          },
73518          "401": {
73519            "description": "Unauthorized"
73520          }
73521        },
73522        "schemes": [
73523          "https"
73524        ],
73525        "tags": [
73526          "policy_v1beta1"
73527        ],
73528        "x-kubernetes-action": "post",
73529        "x-kubernetes-group-version-kind": {
73530          "group": "policy",
73531          "kind": "PodSecurityPolicy",
73532          "version": "v1beta1"
73533        }
73534      }
73535    },
73536    "/apis/policy/v1beta1/podsecuritypolicies/{name}": {
73537      "delete": {
73538        "consumes": [
73539          "*/*"
73540        ],
73541        "description": "delete a PodSecurityPolicy",
73542        "operationId": "deletePolicyV1beta1PodSecurityPolicy",
73543        "parameters": [
73544          {
73545            "in": "body",
73546            "name": "body",
73547            "schema": {
73548              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
73549            }
73550          },
73551          {
73552            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
73553            "in": "query",
73554            "name": "dryRun",
73555            "type": "string",
73556            "uniqueItems": true
73557          },
73558          {
73559            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
73560            "in": "query",
73561            "name": "gracePeriodSeconds",
73562            "type": "integer",
73563            "uniqueItems": true
73564          },
73565          {
73566            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
73567            "in": "query",
73568            "name": "orphanDependents",
73569            "type": "boolean",
73570            "uniqueItems": true
73571          },
73572          {
73573            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
73574            "in": "query",
73575            "name": "propagationPolicy",
73576            "type": "string",
73577            "uniqueItems": true
73578          }
73579        ],
73580        "produces": [
73581          "application/json",
73582          "application/yaml",
73583          "application/vnd.kubernetes.protobuf"
73584        ],
73585        "responses": {
73586          "200": {
73587            "description": "OK",
73588            "schema": {
73589              "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodSecurityPolicy"
73590            }
73591          },
73592          "202": {
73593            "description": "Accepted",
73594            "schema": {
73595              "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodSecurityPolicy"
73596            }
73597          },
73598          "401": {
73599            "description": "Unauthorized"
73600          }
73601        },
73602        "schemes": [
73603          "https"
73604        ],
73605        "tags": [
73606          "policy_v1beta1"
73607        ],
73608        "x-kubernetes-action": "delete",
73609        "x-kubernetes-group-version-kind": {
73610          "group": "policy",
73611          "kind": "PodSecurityPolicy",
73612          "version": "v1beta1"
73613        }
73614      },
73615      "get": {
73616        "consumes": [
73617          "*/*"
73618        ],
73619        "description": "read the specified PodSecurityPolicy",
73620        "operationId": "readPolicyV1beta1PodSecurityPolicy",
73621        "produces": [
73622          "application/json",
73623          "application/yaml",
73624          "application/vnd.kubernetes.protobuf"
73625        ],
73626        "responses": {
73627          "200": {
73628            "description": "OK",
73629            "schema": {
73630              "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodSecurityPolicy"
73631            }
73632          },
73633          "401": {
73634            "description": "Unauthorized"
73635          }
73636        },
73637        "schemes": [
73638          "https"
73639        ],
73640        "tags": [
73641          "policy_v1beta1"
73642        ],
73643        "x-kubernetes-action": "get",
73644        "x-kubernetes-group-version-kind": {
73645          "group": "policy",
73646          "kind": "PodSecurityPolicy",
73647          "version": "v1beta1"
73648        }
73649      },
73650      "parameters": [
73651        {
73652          "description": "name of the PodSecurityPolicy",
73653          "in": "path",
73654          "name": "name",
73655          "required": true,
73656          "type": "string",
73657          "uniqueItems": true
73658        },
73659        {
73660          "description": "If 'true', then the output is pretty printed.",
73661          "in": "query",
73662          "name": "pretty",
73663          "type": "string",
73664          "uniqueItems": true
73665        }
73666      ],
73667      "patch": {
73668        "consumes": [
73669          "application/json-patch+json",
73670          "application/merge-patch+json",
73671          "application/strategic-merge-patch+json",
73672          "application/apply-patch+yaml"
73673        ],
73674        "description": "partially update the specified PodSecurityPolicy",
73675        "operationId": "patchPolicyV1beta1PodSecurityPolicy",
73676        "parameters": [
73677          {
73678            "in": "body",
73679            "name": "body",
73680            "required": true,
73681            "schema": {
73682              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
73683            }
73684          },
73685          {
73686            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
73687            "in": "query",
73688            "name": "dryRun",
73689            "type": "string",
73690            "uniqueItems": true
73691          },
73692          {
73693            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
73694            "in": "query",
73695            "name": "fieldManager",
73696            "type": "string",
73697            "uniqueItems": true
73698          },
73699          {
73700            "description": "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.",
73701            "in": "query",
73702            "name": "force",
73703            "type": "boolean",
73704            "uniqueItems": true
73705          }
73706        ],
73707        "produces": [
73708          "application/json",
73709          "application/yaml",
73710          "application/vnd.kubernetes.protobuf"
73711        ],
73712        "responses": {
73713          "200": {
73714            "description": "OK",
73715            "schema": {
73716              "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodSecurityPolicy"
73717            }
73718          },
73719          "201": {
73720            "description": "Created",
73721            "schema": {
73722              "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodSecurityPolicy"
73723            }
73724          },
73725          "401": {
73726            "description": "Unauthorized"
73727          }
73728        },
73729        "schemes": [
73730          "https"
73731        ],
73732        "tags": [
73733          "policy_v1beta1"
73734        ],
73735        "x-kubernetes-action": "patch",
73736        "x-kubernetes-group-version-kind": {
73737          "group": "policy",
73738          "kind": "PodSecurityPolicy",
73739          "version": "v1beta1"
73740        }
73741      },
73742      "put": {
73743        "consumes": [
73744          "*/*"
73745        ],
73746        "description": "replace the specified PodSecurityPolicy",
73747        "operationId": "replacePolicyV1beta1PodSecurityPolicy",
73748        "parameters": [
73749          {
73750            "in": "body",
73751            "name": "body",
73752            "required": true,
73753            "schema": {
73754              "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodSecurityPolicy"
73755            }
73756          },
73757          {
73758            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
73759            "in": "query",
73760            "name": "dryRun",
73761            "type": "string",
73762            "uniqueItems": true
73763          },
73764          {
73765            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
73766            "in": "query",
73767            "name": "fieldManager",
73768            "type": "string",
73769            "uniqueItems": true
73770          }
73771        ],
73772        "produces": [
73773          "application/json",
73774          "application/yaml",
73775          "application/vnd.kubernetes.protobuf"
73776        ],
73777        "responses": {
73778          "200": {
73779            "description": "OK",
73780            "schema": {
73781              "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodSecurityPolicy"
73782            }
73783          },
73784          "201": {
73785            "description": "Created",
73786            "schema": {
73787              "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodSecurityPolicy"
73788            }
73789          },
73790          "401": {
73791            "description": "Unauthorized"
73792          }
73793        },
73794        "schemes": [
73795          "https"
73796        ],
73797        "tags": [
73798          "policy_v1beta1"
73799        ],
73800        "x-kubernetes-action": "put",
73801        "x-kubernetes-group-version-kind": {
73802          "group": "policy",
73803          "kind": "PodSecurityPolicy",
73804          "version": "v1beta1"
73805        }
73806      }
73807    },
73808    "/apis/policy/v1beta1/watch/namespaces/{namespace}/poddisruptionbudgets": {
73809      "get": {
73810        "consumes": [
73811          "*/*"
73812        ],
73813        "description": "watch individual changes to a list of PodDisruptionBudget. deprecated: use the 'watch' parameter with a list operation instead.",
73814        "operationId": "watchPolicyV1beta1NamespacedPodDisruptionBudgetList",
73815        "produces": [
73816          "application/json",
73817          "application/yaml",
73818          "application/vnd.kubernetes.protobuf",
73819          "application/json;stream=watch",
73820          "application/vnd.kubernetes.protobuf;stream=watch"
73821        ],
73822        "responses": {
73823          "200": {
73824            "description": "OK",
73825            "schema": {
73826              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
73827            }
73828          },
73829          "401": {
73830            "description": "Unauthorized"
73831          }
73832        },
73833        "schemes": [
73834          "https"
73835        ],
73836        "tags": [
73837          "policy_v1beta1"
73838        ],
73839        "x-kubernetes-action": "watchlist",
73840        "x-kubernetes-group-version-kind": {
73841          "group": "policy",
73842          "kind": "PodDisruptionBudget",
73843          "version": "v1beta1"
73844        }
73845      },
73846      "parameters": [
73847        {
73848          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
73849          "in": "query",
73850          "name": "allowWatchBookmarks",
73851          "type": "boolean",
73852          "uniqueItems": true
73853        },
73854        {
73855          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
73856          "in": "query",
73857          "name": "continue",
73858          "type": "string",
73859          "uniqueItems": true
73860        },
73861        {
73862          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
73863          "in": "query",
73864          "name": "fieldSelector",
73865          "type": "string",
73866          "uniqueItems": true
73867        },
73868        {
73869          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
73870          "in": "query",
73871          "name": "labelSelector",
73872          "type": "string",
73873          "uniqueItems": true
73874        },
73875        {
73876          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
73877          "in": "query",
73878          "name": "limit",
73879          "type": "integer",
73880          "uniqueItems": true
73881        },
73882        {
73883          "description": "object name and auth scope, such as for teams and projects",
73884          "in": "path",
73885          "name": "namespace",
73886          "required": true,
73887          "type": "string",
73888          "uniqueItems": true
73889        },
73890        {
73891          "description": "If 'true', then the output is pretty printed.",
73892          "in": "query",
73893          "name": "pretty",
73894          "type": "string",
73895          "uniqueItems": true
73896        },
73897        {
73898          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
73899          "in": "query",
73900          "name": "resourceVersion",
73901          "type": "string",
73902          "uniqueItems": true
73903        },
73904        {
73905          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
73906          "in": "query",
73907          "name": "resourceVersionMatch",
73908          "type": "string",
73909          "uniqueItems": true
73910        },
73911        {
73912          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
73913          "in": "query",
73914          "name": "timeoutSeconds",
73915          "type": "integer",
73916          "uniqueItems": true
73917        },
73918        {
73919          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
73920          "in": "query",
73921          "name": "watch",
73922          "type": "boolean",
73923          "uniqueItems": true
73924        }
73925      ]
73926    },
73927    "/apis/policy/v1beta1/watch/namespaces/{namespace}/poddisruptionbudgets/{name}": {
73928      "get": {
73929        "consumes": [
73930          "*/*"
73931        ],
73932        "description": "watch changes to an object of kind PodDisruptionBudget. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.",
73933        "operationId": "watchPolicyV1beta1NamespacedPodDisruptionBudget",
73934        "produces": [
73935          "application/json",
73936          "application/yaml",
73937          "application/vnd.kubernetes.protobuf",
73938          "application/json;stream=watch",
73939          "application/vnd.kubernetes.protobuf;stream=watch"
73940        ],
73941        "responses": {
73942          "200": {
73943            "description": "OK",
73944            "schema": {
73945              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
73946            }
73947          },
73948          "401": {
73949            "description": "Unauthorized"
73950          }
73951        },
73952        "schemes": [
73953          "https"
73954        ],
73955        "tags": [
73956          "policy_v1beta1"
73957        ],
73958        "x-kubernetes-action": "watch",
73959        "x-kubernetes-group-version-kind": {
73960          "group": "policy",
73961          "kind": "PodDisruptionBudget",
73962          "version": "v1beta1"
73963        }
73964      },
73965      "parameters": [
73966        {
73967          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
73968          "in": "query",
73969          "name": "allowWatchBookmarks",
73970          "type": "boolean",
73971          "uniqueItems": true
73972        },
73973        {
73974          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
73975          "in": "query",
73976          "name": "continue",
73977          "type": "string",
73978          "uniqueItems": true
73979        },
73980        {
73981          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
73982          "in": "query",
73983          "name": "fieldSelector",
73984          "type": "string",
73985          "uniqueItems": true
73986        },
73987        {
73988          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
73989          "in": "query",
73990          "name": "labelSelector",
73991          "type": "string",
73992          "uniqueItems": true
73993        },
73994        {
73995          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
73996          "in": "query",
73997          "name": "limit",
73998          "type": "integer",
73999          "uniqueItems": true
74000        },
74001        {
74002          "description": "name of the PodDisruptionBudget",
74003          "in": "path",
74004          "name": "name",
74005          "required": true,
74006          "type": "string",
74007          "uniqueItems": true
74008        },
74009        {
74010          "description": "object name and auth scope, such as for teams and projects",
74011          "in": "path",
74012          "name": "namespace",
74013          "required": true,
74014          "type": "string",
74015          "uniqueItems": true
74016        },
74017        {
74018          "description": "If 'true', then the output is pretty printed.",
74019          "in": "query",
74020          "name": "pretty",
74021          "type": "string",
74022          "uniqueItems": true
74023        },
74024        {
74025          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
74026          "in": "query",
74027          "name": "resourceVersion",
74028          "type": "string",
74029          "uniqueItems": true
74030        },
74031        {
74032          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
74033          "in": "query",
74034          "name": "resourceVersionMatch",
74035          "type": "string",
74036          "uniqueItems": true
74037        },
74038        {
74039          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
74040          "in": "query",
74041          "name": "timeoutSeconds",
74042          "type": "integer",
74043          "uniqueItems": true
74044        },
74045        {
74046          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
74047          "in": "query",
74048          "name": "watch",
74049          "type": "boolean",
74050          "uniqueItems": true
74051        }
74052      ]
74053    },
74054    "/apis/policy/v1beta1/watch/poddisruptionbudgets": {
74055      "get": {
74056        "consumes": [
74057          "*/*"
74058        ],
74059        "description": "watch individual changes to a list of PodDisruptionBudget. deprecated: use the 'watch' parameter with a list operation instead.",
74060        "operationId": "watchPolicyV1beta1PodDisruptionBudgetListForAllNamespaces",
74061        "produces": [
74062          "application/json",
74063          "application/yaml",
74064          "application/vnd.kubernetes.protobuf",
74065          "application/json;stream=watch",
74066          "application/vnd.kubernetes.protobuf;stream=watch"
74067        ],
74068        "responses": {
74069          "200": {
74070            "description": "OK",
74071            "schema": {
74072              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
74073            }
74074          },
74075          "401": {
74076            "description": "Unauthorized"
74077          }
74078        },
74079        "schemes": [
74080          "https"
74081        ],
74082        "tags": [
74083          "policy_v1beta1"
74084        ],
74085        "x-kubernetes-action": "watchlist",
74086        "x-kubernetes-group-version-kind": {
74087          "group": "policy",
74088          "kind": "PodDisruptionBudget",
74089          "version": "v1beta1"
74090        }
74091      },
74092      "parameters": [
74093        {
74094          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
74095          "in": "query",
74096          "name": "allowWatchBookmarks",
74097          "type": "boolean",
74098          "uniqueItems": true
74099        },
74100        {
74101          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
74102          "in": "query",
74103          "name": "continue",
74104          "type": "string",
74105          "uniqueItems": true
74106        },
74107        {
74108          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
74109          "in": "query",
74110          "name": "fieldSelector",
74111          "type": "string",
74112          "uniqueItems": true
74113        },
74114        {
74115          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
74116          "in": "query",
74117          "name": "labelSelector",
74118          "type": "string",
74119          "uniqueItems": true
74120        },
74121        {
74122          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
74123          "in": "query",
74124          "name": "limit",
74125          "type": "integer",
74126          "uniqueItems": true
74127        },
74128        {
74129          "description": "If 'true', then the output is pretty printed.",
74130          "in": "query",
74131          "name": "pretty",
74132          "type": "string",
74133          "uniqueItems": true
74134        },
74135        {
74136          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
74137          "in": "query",
74138          "name": "resourceVersion",
74139          "type": "string",
74140          "uniqueItems": true
74141        },
74142        {
74143          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
74144          "in": "query",
74145          "name": "resourceVersionMatch",
74146          "type": "string",
74147          "uniqueItems": true
74148        },
74149        {
74150          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
74151          "in": "query",
74152          "name": "timeoutSeconds",
74153          "type": "integer",
74154          "uniqueItems": true
74155        },
74156        {
74157          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
74158          "in": "query",
74159          "name": "watch",
74160          "type": "boolean",
74161          "uniqueItems": true
74162        }
74163      ]
74164    },
74165    "/apis/policy/v1beta1/watch/podsecuritypolicies": {
74166      "get": {
74167        "consumes": [
74168          "*/*"
74169        ],
74170        "description": "watch individual changes to a list of PodSecurityPolicy. deprecated: use the 'watch' parameter with a list operation instead.",
74171        "operationId": "watchPolicyV1beta1PodSecurityPolicyList",
74172        "produces": [
74173          "application/json",
74174          "application/yaml",
74175          "application/vnd.kubernetes.protobuf",
74176          "application/json;stream=watch",
74177          "application/vnd.kubernetes.protobuf;stream=watch"
74178        ],
74179        "responses": {
74180          "200": {
74181            "description": "OK",
74182            "schema": {
74183              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
74184            }
74185          },
74186          "401": {
74187            "description": "Unauthorized"
74188          }
74189        },
74190        "schemes": [
74191          "https"
74192        ],
74193        "tags": [
74194          "policy_v1beta1"
74195        ],
74196        "x-kubernetes-action": "watchlist",
74197        "x-kubernetes-group-version-kind": {
74198          "group": "policy",
74199          "kind": "PodSecurityPolicy",
74200          "version": "v1beta1"
74201        }
74202      },
74203      "parameters": [
74204        {
74205          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
74206          "in": "query",
74207          "name": "allowWatchBookmarks",
74208          "type": "boolean",
74209          "uniqueItems": true
74210        },
74211        {
74212          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
74213          "in": "query",
74214          "name": "continue",
74215          "type": "string",
74216          "uniqueItems": true
74217        },
74218        {
74219          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
74220          "in": "query",
74221          "name": "fieldSelector",
74222          "type": "string",
74223          "uniqueItems": true
74224        },
74225        {
74226          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
74227          "in": "query",
74228          "name": "labelSelector",
74229          "type": "string",
74230          "uniqueItems": true
74231        },
74232        {
74233          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
74234          "in": "query",
74235          "name": "limit",
74236          "type": "integer",
74237          "uniqueItems": true
74238        },
74239        {
74240          "description": "If 'true', then the output is pretty printed.",
74241          "in": "query",
74242          "name": "pretty",
74243          "type": "string",
74244          "uniqueItems": true
74245        },
74246        {
74247          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
74248          "in": "query",
74249          "name": "resourceVersion",
74250          "type": "string",
74251          "uniqueItems": true
74252        },
74253        {
74254          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
74255          "in": "query",
74256          "name": "resourceVersionMatch",
74257          "type": "string",
74258          "uniqueItems": true
74259        },
74260        {
74261          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
74262          "in": "query",
74263          "name": "timeoutSeconds",
74264          "type": "integer",
74265          "uniqueItems": true
74266        },
74267        {
74268          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
74269          "in": "query",
74270          "name": "watch",
74271          "type": "boolean",
74272          "uniqueItems": true
74273        }
74274      ]
74275    },
74276    "/apis/policy/v1beta1/watch/podsecuritypolicies/{name}": {
74277      "get": {
74278        "consumes": [
74279          "*/*"
74280        ],
74281        "description": "watch changes to an object of kind PodSecurityPolicy. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.",
74282        "operationId": "watchPolicyV1beta1PodSecurityPolicy",
74283        "produces": [
74284          "application/json",
74285          "application/yaml",
74286          "application/vnd.kubernetes.protobuf",
74287          "application/json;stream=watch",
74288          "application/vnd.kubernetes.protobuf;stream=watch"
74289        ],
74290        "responses": {
74291          "200": {
74292            "description": "OK",
74293            "schema": {
74294              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
74295            }
74296          },
74297          "401": {
74298            "description": "Unauthorized"
74299          }
74300        },
74301        "schemes": [
74302          "https"
74303        ],
74304        "tags": [
74305          "policy_v1beta1"
74306        ],
74307        "x-kubernetes-action": "watch",
74308        "x-kubernetes-group-version-kind": {
74309          "group": "policy",
74310          "kind": "PodSecurityPolicy",
74311          "version": "v1beta1"
74312        }
74313      },
74314      "parameters": [
74315        {
74316          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
74317          "in": "query",
74318          "name": "allowWatchBookmarks",
74319          "type": "boolean",
74320          "uniqueItems": true
74321        },
74322        {
74323          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
74324          "in": "query",
74325          "name": "continue",
74326          "type": "string",
74327          "uniqueItems": true
74328        },
74329        {
74330          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
74331          "in": "query",
74332          "name": "fieldSelector",
74333          "type": "string",
74334          "uniqueItems": true
74335        },
74336        {
74337          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
74338          "in": "query",
74339          "name": "labelSelector",
74340          "type": "string",
74341          "uniqueItems": true
74342        },
74343        {
74344          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
74345          "in": "query",
74346          "name": "limit",
74347          "type": "integer",
74348          "uniqueItems": true
74349        },
74350        {
74351          "description": "name of the PodSecurityPolicy",
74352          "in": "path",
74353          "name": "name",
74354          "required": true,
74355          "type": "string",
74356          "uniqueItems": true
74357        },
74358        {
74359          "description": "If 'true', then the output is pretty printed.",
74360          "in": "query",
74361          "name": "pretty",
74362          "type": "string",
74363          "uniqueItems": true
74364        },
74365        {
74366          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
74367          "in": "query",
74368          "name": "resourceVersion",
74369          "type": "string",
74370          "uniqueItems": true
74371        },
74372        {
74373          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
74374          "in": "query",
74375          "name": "resourceVersionMatch",
74376          "type": "string",
74377          "uniqueItems": true
74378        },
74379        {
74380          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
74381          "in": "query",
74382          "name": "timeoutSeconds",
74383          "type": "integer",
74384          "uniqueItems": true
74385        },
74386        {
74387          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
74388          "in": "query",
74389          "name": "watch",
74390          "type": "boolean",
74391          "uniqueItems": true
74392        }
74393      ]
74394    },
74395    "/apis/rbac.authorization.k8s.io/": {
74396      "get": {
74397        "consumes": [
74398          "application/json",
74399          "application/yaml",
74400          "application/vnd.kubernetes.protobuf"
74401        ],
74402        "description": "get information of a group",
74403        "operationId": "getRbacAuthorizationAPIGroup",
74404        "produces": [
74405          "application/json",
74406          "application/yaml",
74407          "application/vnd.kubernetes.protobuf"
74408        ],
74409        "responses": {
74410          "200": {
74411            "description": "OK",
74412            "schema": {
74413              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup"
74414            }
74415          },
74416          "401": {
74417            "description": "Unauthorized"
74418          }
74419        },
74420        "schemes": [
74421          "https"
74422        ],
74423        "tags": [
74424          "rbacAuthorization"
74425        ]
74426      }
74427    },
74428    "/apis/rbac.authorization.k8s.io/v1/": {
74429      "get": {
74430        "consumes": [
74431          "application/json",
74432          "application/yaml",
74433          "application/vnd.kubernetes.protobuf"
74434        ],
74435        "description": "get available resources",
74436        "operationId": "getRbacAuthorizationV1APIResources",
74437        "produces": [
74438          "application/json",
74439          "application/yaml",
74440          "application/vnd.kubernetes.protobuf"
74441        ],
74442        "responses": {
74443          "200": {
74444            "description": "OK",
74445            "schema": {
74446              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
74447            }
74448          },
74449          "401": {
74450            "description": "Unauthorized"
74451          }
74452        },
74453        "schemes": [
74454          "https"
74455        ],
74456        "tags": [
74457          "rbacAuthorization_v1"
74458        ]
74459      }
74460    },
74461    "/apis/rbac.authorization.k8s.io/v1/clusterrolebindings": {
74462      "delete": {
74463        "consumes": [
74464          "*/*"
74465        ],
74466        "description": "delete collection of ClusterRoleBinding",
74467        "operationId": "deleteRbacAuthorizationV1CollectionClusterRoleBinding",
74468        "parameters": [
74469          {
74470            "in": "body",
74471            "name": "body",
74472            "schema": {
74473              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
74474            }
74475          },
74476          {
74477            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
74478            "in": "query",
74479            "name": "continue",
74480            "type": "string",
74481            "uniqueItems": true
74482          },
74483          {
74484            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
74485            "in": "query",
74486            "name": "dryRun",
74487            "type": "string",
74488            "uniqueItems": true
74489          },
74490          {
74491            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
74492            "in": "query",
74493            "name": "fieldSelector",
74494            "type": "string",
74495            "uniqueItems": true
74496          },
74497          {
74498            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
74499            "in": "query",
74500            "name": "gracePeriodSeconds",
74501            "type": "integer",
74502            "uniqueItems": true
74503          },
74504          {
74505            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
74506            "in": "query",
74507            "name": "labelSelector",
74508            "type": "string",
74509            "uniqueItems": true
74510          },
74511          {
74512            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
74513            "in": "query",
74514            "name": "limit",
74515            "type": "integer",
74516            "uniqueItems": true
74517          },
74518          {
74519            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
74520            "in": "query",
74521            "name": "orphanDependents",
74522            "type": "boolean",
74523            "uniqueItems": true
74524          },
74525          {
74526            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
74527            "in": "query",
74528            "name": "propagationPolicy",
74529            "type": "string",
74530            "uniqueItems": true
74531          },
74532          {
74533            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
74534            "in": "query",
74535            "name": "resourceVersion",
74536            "type": "string",
74537            "uniqueItems": true
74538          },
74539          {
74540            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
74541            "in": "query",
74542            "name": "resourceVersionMatch",
74543            "type": "string",
74544            "uniqueItems": true
74545          },
74546          {
74547            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
74548            "in": "query",
74549            "name": "timeoutSeconds",
74550            "type": "integer",
74551            "uniqueItems": true
74552          }
74553        ],
74554        "produces": [
74555          "application/json",
74556          "application/yaml",
74557          "application/vnd.kubernetes.protobuf"
74558        ],
74559        "responses": {
74560          "200": {
74561            "description": "OK",
74562            "schema": {
74563              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
74564            }
74565          },
74566          "401": {
74567            "description": "Unauthorized"
74568          }
74569        },
74570        "schemes": [
74571          "https"
74572        ],
74573        "tags": [
74574          "rbacAuthorization_v1"
74575        ],
74576        "x-kubernetes-action": "deletecollection",
74577        "x-kubernetes-group-version-kind": {
74578          "group": "rbac.authorization.k8s.io",
74579          "kind": "ClusterRoleBinding",
74580          "version": "v1"
74581        }
74582      },
74583      "get": {
74584        "consumes": [
74585          "*/*"
74586        ],
74587        "description": "list or watch objects of kind ClusterRoleBinding",
74588        "operationId": "listRbacAuthorizationV1ClusterRoleBinding",
74589        "parameters": [
74590          {
74591            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
74592            "in": "query",
74593            "name": "allowWatchBookmarks",
74594            "type": "boolean",
74595            "uniqueItems": true
74596          },
74597          {
74598            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
74599            "in": "query",
74600            "name": "continue",
74601            "type": "string",
74602            "uniqueItems": true
74603          },
74604          {
74605            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
74606            "in": "query",
74607            "name": "fieldSelector",
74608            "type": "string",
74609            "uniqueItems": true
74610          },
74611          {
74612            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
74613            "in": "query",
74614            "name": "labelSelector",
74615            "type": "string",
74616            "uniqueItems": true
74617          },
74618          {
74619            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
74620            "in": "query",
74621            "name": "limit",
74622            "type": "integer",
74623            "uniqueItems": true
74624          },
74625          {
74626            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
74627            "in": "query",
74628            "name": "resourceVersion",
74629            "type": "string",
74630            "uniqueItems": true
74631          },
74632          {
74633            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
74634            "in": "query",
74635            "name": "resourceVersionMatch",
74636            "type": "string",
74637            "uniqueItems": true
74638          },
74639          {
74640            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
74641            "in": "query",
74642            "name": "timeoutSeconds",
74643            "type": "integer",
74644            "uniqueItems": true
74645          },
74646          {
74647            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
74648            "in": "query",
74649            "name": "watch",
74650            "type": "boolean",
74651            "uniqueItems": true
74652          }
74653        ],
74654        "produces": [
74655          "application/json",
74656          "application/yaml",
74657          "application/vnd.kubernetes.protobuf",
74658          "application/json;stream=watch",
74659          "application/vnd.kubernetes.protobuf;stream=watch"
74660        ],
74661        "responses": {
74662          "200": {
74663            "description": "OK",
74664            "schema": {
74665              "$ref": "#/definitions/io.k8s.api.rbac.v1.ClusterRoleBindingList"
74666            }
74667          },
74668          "401": {
74669            "description": "Unauthorized"
74670          }
74671        },
74672        "schemes": [
74673          "https"
74674        ],
74675        "tags": [
74676          "rbacAuthorization_v1"
74677        ],
74678        "x-kubernetes-action": "list",
74679        "x-kubernetes-group-version-kind": {
74680          "group": "rbac.authorization.k8s.io",
74681          "kind": "ClusterRoleBinding",
74682          "version": "v1"
74683        }
74684      },
74685      "parameters": [
74686        {
74687          "description": "If 'true', then the output is pretty printed.",
74688          "in": "query",
74689          "name": "pretty",
74690          "type": "string",
74691          "uniqueItems": true
74692        }
74693      ],
74694      "post": {
74695        "consumes": [
74696          "*/*"
74697        ],
74698        "description": "create a ClusterRoleBinding",
74699        "operationId": "createRbacAuthorizationV1ClusterRoleBinding",
74700        "parameters": [
74701          {
74702            "in": "body",
74703            "name": "body",
74704            "required": true,
74705            "schema": {
74706              "$ref": "#/definitions/io.k8s.api.rbac.v1.ClusterRoleBinding"
74707            }
74708          },
74709          {
74710            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
74711            "in": "query",
74712            "name": "dryRun",
74713            "type": "string",
74714            "uniqueItems": true
74715          },
74716          {
74717            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
74718            "in": "query",
74719            "name": "fieldManager",
74720            "type": "string",
74721            "uniqueItems": true
74722          }
74723        ],
74724        "produces": [
74725          "application/json",
74726          "application/yaml",
74727          "application/vnd.kubernetes.protobuf"
74728        ],
74729        "responses": {
74730          "200": {
74731            "description": "OK",
74732            "schema": {
74733              "$ref": "#/definitions/io.k8s.api.rbac.v1.ClusterRoleBinding"
74734            }
74735          },
74736          "201": {
74737            "description": "Created",
74738            "schema": {
74739              "$ref": "#/definitions/io.k8s.api.rbac.v1.ClusterRoleBinding"
74740            }
74741          },
74742          "202": {
74743            "description": "Accepted",
74744            "schema": {
74745              "$ref": "#/definitions/io.k8s.api.rbac.v1.ClusterRoleBinding"
74746            }
74747          },
74748          "401": {
74749            "description": "Unauthorized"
74750          }
74751        },
74752        "schemes": [
74753          "https"
74754        ],
74755        "tags": [
74756          "rbacAuthorization_v1"
74757        ],
74758        "x-kubernetes-action": "post",
74759        "x-kubernetes-group-version-kind": {
74760          "group": "rbac.authorization.k8s.io",
74761          "kind": "ClusterRoleBinding",
74762          "version": "v1"
74763        }
74764      }
74765    },
74766    "/apis/rbac.authorization.k8s.io/v1/clusterrolebindings/{name}": {
74767      "delete": {
74768        "consumes": [
74769          "*/*"
74770        ],
74771        "description": "delete a ClusterRoleBinding",
74772        "operationId": "deleteRbacAuthorizationV1ClusterRoleBinding",
74773        "parameters": [
74774          {
74775            "in": "body",
74776            "name": "body",
74777            "schema": {
74778              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
74779            }
74780          },
74781          {
74782            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
74783            "in": "query",
74784            "name": "dryRun",
74785            "type": "string",
74786            "uniqueItems": true
74787          },
74788          {
74789            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
74790            "in": "query",
74791            "name": "gracePeriodSeconds",
74792            "type": "integer",
74793            "uniqueItems": true
74794          },
74795          {
74796            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
74797            "in": "query",
74798            "name": "orphanDependents",
74799            "type": "boolean",
74800            "uniqueItems": true
74801          },
74802          {
74803            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
74804            "in": "query",
74805            "name": "propagationPolicy",
74806            "type": "string",
74807            "uniqueItems": true
74808          }
74809        ],
74810        "produces": [
74811          "application/json",
74812          "application/yaml",
74813          "application/vnd.kubernetes.protobuf"
74814        ],
74815        "responses": {
74816          "200": {
74817            "description": "OK",
74818            "schema": {
74819              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
74820            }
74821          },
74822          "202": {
74823            "description": "Accepted",
74824            "schema": {
74825              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
74826            }
74827          },
74828          "401": {
74829            "description": "Unauthorized"
74830          }
74831        },
74832        "schemes": [
74833          "https"
74834        ],
74835        "tags": [
74836          "rbacAuthorization_v1"
74837        ],
74838        "x-kubernetes-action": "delete",
74839        "x-kubernetes-group-version-kind": {
74840          "group": "rbac.authorization.k8s.io",
74841          "kind": "ClusterRoleBinding",
74842          "version": "v1"
74843        }
74844      },
74845      "get": {
74846        "consumes": [
74847          "*/*"
74848        ],
74849        "description": "read the specified ClusterRoleBinding",
74850        "operationId": "readRbacAuthorizationV1ClusterRoleBinding",
74851        "produces": [
74852          "application/json",
74853          "application/yaml",
74854          "application/vnd.kubernetes.protobuf"
74855        ],
74856        "responses": {
74857          "200": {
74858            "description": "OK",
74859            "schema": {
74860              "$ref": "#/definitions/io.k8s.api.rbac.v1.ClusterRoleBinding"
74861            }
74862          },
74863          "401": {
74864            "description": "Unauthorized"
74865          }
74866        },
74867        "schemes": [
74868          "https"
74869        ],
74870        "tags": [
74871          "rbacAuthorization_v1"
74872        ],
74873        "x-kubernetes-action": "get",
74874        "x-kubernetes-group-version-kind": {
74875          "group": "rbac.authorization.k8s.io",
74876          "kind": "ClusterRoleBinding",
74877          "version": "v1"
74878        }
74879      },
74880      "parameters": [
74881        {
74882          "description": "name of the ClusterRoleBinding",
74883          "in": "path",
74884          "name": "name",
74885          "required": true,
74886          "type": "string",
74887          "uniqueItems": true
74888        },
74889        {
74890          "description": "If 'true', then the output is pretty printed.",
74891          "in": "query",
74892          "name": "pretty",
74893          "type": "string",
74894          "uniqueItems": true
74895        }
74896      ],
74897      "patch": {
74898        "consumes": [
74899          "application/json-patch+json",
74900          "application/merge-patch+json",
74901          "application/strategic-merge-patch+json",
74902          "application/apply-patch+yaml"
74903        ],
74904        "description": "partially update the specified ClusterRoleBinding",
74905        "operationId": "patchRbacAuthorizationV1ClusterRoleBinding",
74906        "parameters": [
74907          {
74908            "in": "body",
74909            "name": "body",
74910            "required": true,
74911            "schema": {
74912              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
74913            }
74914          },
74915          {
74916            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
74917            "in": "query",
74918            "name": "dryRun",
74919            "type": "string",
74920            "uniqueItems": true
74921          },
74922          {
74923            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
74924            "in": "query",
74925            "name": "fieldManager",
74926            "type": "string",
74927            "uniqueItems": true
74928          },
74929          {
74930            "description": "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.",
74931            "in": "query",
74932            "name": "force",
74933            "type": "boolean",
74934            "uniqueItems": true
74935          }
74936        ],
74937        "produces": [
74938          "application/json",
74939          "application/yaml",
74940          "application/vnd.kubernetes.protobuf"
74941        ],
74942        "responses": {
74943          "200": {
74944            "description": "OK",
74945            "schema": {
74946              "$ref": "#/definitions/io.k8s.api.rbac.v1.ClusterRoleBinding"
74947            }
74948          },
74949          "201": {
74950            "description": "Created",
74951            "schema": {
74952              "$ref": "#/definitions/io.k8s.api.rbac.v1.ClusterRoleBinding"
74953            }
74954          },
74955          "401": {
74956            "description": "Unauthorized"
74957          }
74958        },
74959        "schemes": [
74960          "https"
74961        ],
74962        "tags": [
74963          "rbacAuthorization_v1"
74964        ],
74965        "x-kubernetes-action": "patch",
74966        "x-kubernetes-group-version-kind": {
74967          "group": "rbac.authorization.k8s.io",
74968          "kind": "ClusterRoleBinding",
74969          "version": "v1"
74970        }
74971      },
74972      "put": {
74973        "consumes": [
74974          "*/*"
74975        ],
74976        "description": "replace the specified ClusterRoleBinding",
74977        "operationId": "replaceRbacAuthorizationV1ClusterRoleBinding",
74978        "parameters": [
74979          {
74980            "in": "body",
74981            "name": "body",
74982            "required": true,
74983            "schema": {
74984              "$ref": "#/definitions/io.k8s.api.rbac.v1.ClusterRoleBinding"
74985            }
74986          },
74987          {
74988            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
74989            "in": "query",
74990            "name": "dryRun",
74991            "type": "string",
74992            "uniqueItems": true
74993          },
74994          {
74995            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
74996            "in": "query",
74997            "name": "fieldManager",
74998            "type": "string",
74999            "uniqueItems": true
75000          }
75001        ],
75002        "produces": [
75003          "application/json",
75004          "application/yaml",
75005          "application/vnd.kubernetes.protobuf"
75006        ],
75007        "responses": {
75008          "200": {
75009            "description": "OK",
75010            "schema": {
75011              "$ref": "#/definitions/io.k8s.api.rbac.v1.ClusterRoleBinding"
75012            }
75013          },
75014          "201": {
75015            "description": "Created",
75016            "schema": {
75017              "$ref": "#/definitions/io.k8s.api.rbac.v1.ClusterRoleBinding"
75018            }
75019          },
75020          "401": {
75021            "description": "Unauthorized"
75022          }
75023        },
75024        "schemes": [
75025          "https"
75026        ],
75027        "tags": [
75028          "rbacAuthorization_v1"
75029        ],
75030        "x-kubernetes-action": "put",
75031        "x-kubernetes-group-version-kind": {
75032          "group": "rbac.authorization.k8s.io",
75033          "kind": "ClusterRoleBinding",
75034          "version": "v1"
75035        }
75036      }
75037    },
75038    "/apis/rbac.authorization.k8s.io/v1/clusterroles": {
75039      "delete": {
75040        "consumes": [
75041          "*/*"
75042        ],
75043        "description": "delete collection of ClusterRole",
75044        "operationId": "deleteRbacAuthorizationV1CollectionClusterRole",
75045        "parameters": [
75046          {
75047            "in": "body",
75048            "name": "body",
75049            "schema": {
75050              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
75051            }
75052          },
75053          {
75054            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
75055            "in": "query",
75056            "name": "continue",
75057            "type": "string",
75058            "uniqueItems": true
75059          },
75060          {
75061            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
75062            "in": "query",
75063            "name": "dryRun",
75064            "type": "string",
75065            "uniqueItems": true
75066          },
75067          {
75068            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
75069            "in": "query",
75070            "name": "fieldSelector",
75071            "type": "string",
75072            "uniqueItems": true
75073          },
75074          {
75075            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
75076            "in": "query",
75077            "name": "gracePeriodSeconds",
75078            "type": "integer",
75079            "uniqueItems": true
75080          },
75081          {
75082            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
75083            "in": "query",
75084            "name": "labelSelector",
75085            "type": "string",
75086            "uniqueItems": true
75087          },
75088          {
75089            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
75090            "in": "query",
75091            "name": "limit",
75092            "type": "integer",
75093            "uniqueItems": true
75094          },
75095          {
75096            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
75097            "in": "query",
75098            "name": "orphanDependents",
75099            "type": "boolean",
75100            "uniqueItems": true
75101          },
75102          {
75103            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
75104            "in": "query",
75105            "name": "propagationPolicy",
75106            "type": "string",
75107            "uniqueItems": true
75108          },
75109          {
75110            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
75111            "in": "query",
75112            "name": "resourceVersion",
75113            "type": "string",
75114            "uniqueItems": true
75115          },
75116          {
75117            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
75118            "in": "query",
75119            "name": "resourceVersionMatch",
75120            "type": "string",
75121            "uniqueItems": true
75122          },
75123          {
75124            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
75125            "in": "query",
75126            "name": "timeoutSeconds",
75127            "type": "integer",
75128            "uniqueItems": true
75129          }
75130        ],
75131        "produces": [
75132          "application/json",
75133          "application/yaml",
75134          "application/vnd.kubernetes.protobuf"
75135        ],
75136        "responses": {
75137          "200": {
75138            "description": "OK",
75139            "schema": {
75140              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
75141            }
75142          },
75143          "401": {
75144            "description": "Unauthorized"
75145          }
75146        },
75147        "schemes": [
75148          "https"
75149        ],
75150        "tags": [
75151          "rbacAuthorization_v1"
75152        ],
75153        "x-kubernetes-action": "deletecollection",
75154        "x-kubernetes-group-version-kind": {
75155          "group": "rbac.authorization.k8s.io",
75156          "kind": "ClusterRole",
75157          "version": "v1"
75158        }
75159      },
75160      "get": {
75161        "consumes": [
75162          "*/*"
75163        ],
75164        "description": "list or watch objects of kind ClusterRole",
75165        "operationId": "listRbacAuthorizationV1ClusterRole",
75166        "parameters": [
75167          {
75168            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
75169            "in": "query",
75170            "name": "allowWatchBookmarks",
75171            "type": "boolean",
75172            "uniqueItems": true
75173          },
75174          {
75175            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
75176            "in": "query",
75177            "name": "continue",
75178            "type": "string",
75179            "uniqueItems": true
75180          },
75181          {
75182            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
75183            "in": "query",
75184            "name": "fieldSelector",
75185            "type": "string",
75186            "uniqueItems": true
75187          },
75188          {
75189            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
75190            "in": "query",
75191            "name": "labelSelector",
75192            "type": "string",
75193            "uniqueItems": true
75194          },
75195          {
75196            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
75197            "in": "query",
75198            "name": "limit",
75199            "type": "integer",
75200            "uniqueItems": true
75201          },
75202          {
75203            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
75204            "in": "query",
75205            "name": "resourceVersion",
75206            "type": "string",
75207            "uniqueItems": true
75208          },
75209          {
75210            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
75211            "in": "query",
75212            "name": "resourceVersionMatch",
75213            "type": "string",
75214            "uniqueItems": true
75215          },
75216          {
75217            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
75218            "in": "query",
75219            "name": "timeoutSeconds",
75220            "type": "integer",
75221            "uniqueItems": true
75222          },
75223          {
75224            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
75225            "in": "query",
75226            "name": "watch",
75227            "type": "boolean",
75228            "uniqueItems": true
75229          }
75230        ],
75231        "produces": [
75232          "application/json",
75233          "application/yaml",
75234          "application/vnd.kubernetes.protobuf",
75235          "application/json;stream=watch",
75236          "application/vnd.kubernetes.protobuf;stream=watch"
75237        ],
75238        "responses": {
75239          "200": {
75240            "description": "OK",
75241            "schema": {
75242              "$ref": "#/definitions/io.k8s.api.rbac.v1.ClusterRoleList"
75243            }
75244          },
75245          "401": {
75246            "description": "Unauthorized"
75247          }
75248        },
75249        "schemes": [
75250          "https"
75251        ],
75252        "tags": [
75253          "rbacAuthorization_v1"
75254        ],
75255        "x-kubernetes-action": "list",
75256        "x-kubernetes-group-version-kind": {
75257          "group": "rbac.authorization.k8s.io",
75258          "kind": "ClusterRole",
75259          "version": "v1"
75260        }
75261      },
75262      "parameters": [
75263        {
75264          "description": "If 'true', then the output is pretty printed.",
75265          "in": "query",
75266          "name": "pretty",
75267          "type": "string",
75268          "uniqueItems": true
75269        }
75270      ],
75271      "post": {
75272        "consumes": [
75273          "*/*"
75274        ],
75275        "description": "create a ClusterRole",
75276        "operationId": "createRbacAuthorizationV1ClusterRole",
75277        "parameters": [
75278          {
75279            "in": "body",
75280            "name": "body",
75281            "required": true,
75282            "schema": {
75283              "$ref": "#/definitions/io.k8s.api.rbac.v1.ClusterRole"
75284            }
75285          },
75286          {
75287            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
75288            "in": "query",
75289            "name": "dryRun",
75290            "type": "string",
75291            "uniqueItems": true
75292          },
75293          {
75294            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
75295            "in": "query",
75296            "name": "fieldManager",
75297            "type": "string",
75298            "uniqueItems": true
75299          }
75300        ],
75301        "produces": [
75302          "application/json",
75303          "application/yaml",
75304          "application/vnd.kubernetes.protobuf"
75305        ],
75306        "responses": {
75307          "200": {
75308            "description": "OK",
75309            "schema": {
75310              "$ref": "#/definitions/io.k8s.api.rbac.v1.ClusterRole"
75311            }
75312          },
75313          "201": {
75314            "description": "Created",
75315            "schema": {
75316              "$ref": "#/definitions/io.k8s.api.rbac.v1.ClusterRole"
75317            }
75318          },
75319          "202": {
75320            "description": "Accepted",
75321            "schema": {
75322              "$ref": "#/definitions/io.k8s.api.rbac.v1.ClusterRole"
75323            }
75324          },
75325          "401": {
75326            "description": "Unauthorized"
75327          }
75328        },
75329        "schemes": [
75330          "https"
75331        ],
75332        "tags": [
75333          "rbacAuthorization_v1"
75334        ],
75335        "x-kubernetes-action": "post",
75336        "x-kubernetes-group-version-kind": {
75337          "group": "rbac.authorization.k8s.io",
75338          "kind": "ClusterRole",
75339          "version": "v1"
75340        }
75341      }
75342    },
75343    "/apis/rbac.authorization.k8s.io/v1/clusterroles/{name}": {
75344      "delete": {
75345        "consumes": [
75346          "*/*"
75347        ],
75348        "description": "delete a ClusterRole",
75349        "operationId": "deleteRbacAuthorizationV1ClusterRole",
75350        "parameters": [
75351          {
75352            "in": "body",
75353            "name": "body",
75354            "schema": {
75355              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
75356            }
75357          },
75358          {
75359            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
75360            "in": "query",
75361            "name": "dryRun",
75362            "type": "string",
75363            "uniqueItems": true
75364          },
75365          {
75366            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
75367            "in": "query",
75368            "name": "gracePeriodSeconds",
75369            "type": "integer",
75370            "uniqueItems": true
75371          },
75372          {
75373            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
75374            "in": "query",
75375            "name": "orphanDependents",
75376            "type": "boolean",
75377            "uniqueItems": true
75378          },
75379          {
75380            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
75381            "in": "query",
75382            "name": "propagationPolicy",
75383            "type": "string",
75384            "uniqueItems": true
75385          }
75386        ],
75387        "produces": [
75388          "application/json",
75389          "application/yaml",
75390          "application/vnd.kubernetes.protobuf"
75391        ],
75392        "responses": {
75393          "200": {
75394            "description": "OK",
75395            "schema": {
75396              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
75397            }
75398          },
75399          "202": {
75400            "description": "Accepted",
75401            "schema": {
75402              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
75403            }
75404          },
75405          "401": {
75406            "description": "Unauthorized"
75407          }
75408        },
75409        "schemes": [
75410          "https"
75411        ],
75412        "tags": [
75413          "rbacAuthorization_v1"
75414        ],
75415        "x-kubernetes-action": "delete",
75416        "x-kubernetes-group-version-kind": {
75417          "group": "rbac.authorization.k8s.io",
75418          "kind": "ClusterRole",
75419          "version": "v1"
75420        }
75421      },
75422      "get": {
75423        "consumes": [
75424          "*/*"
75425        ],
75426        "description": "read the specified ClusterRole",
75427        "operationId": "readRbacAuthorizationV1ClusterRole",
75428        "produces": [
75429          "application/json",
75430          "application/yaml",
75431          "application/vnd.kubernetes.protobuf"
75432        ],
75433        "responses": {
75434          "200": {
75435            "description": "OK",
75436            "schema": {
75437              "$ref": "#/definitions/io.k8s.api.rbac.v1.ClusterRole"
75438            }
75439          },
75440          "401": {
75441            "description": "Unauthorized"
75442          }
75443        },
75444        "schemes": [
75445          "https"
75446        ],
75447        "tags": [
75448          "rbacAuthorization_v1"
75449        ],
75450        "x-kubernetes-action": "get",
75451        "x-kubernetes-group-version-kind": {
75452          "group": "rbac.authorization.k8s.io",
75453          "kind": "ClusterRole",
75454          "version": "v1"
75455        }
75456      },
75457      "parameters": [
75458        {
75459          "description": "name of the ClusterRole",
75460          "in": "path",
75461          "name": "name",
75462          "required": true,
75463          "type": "string",
75464          "uniqueItems": true
75465        },
75466        {
75467          "description": "If 'true', then the output is pretty printed.",
75468          "in": "query",
75469          "name": "pretty",
75470          "type": "string",
75471          "uniqueItems": true
75472        }
75473      ],
75474      "patch": {
75475        "consumes": [
75476          "application/json-patch+json",
75477          "application/merge-patch+json",
75478          "application/strategic-merge-patch+json",
75479          "application/apply-patch+yaml"
75480        ],
75481        "description": "partially update the specified ClusterRole",
75482        "operationId": "patchRbacAuthorizationV1ClusterRole",
75483        "parameters": [
75484          {
75485            "in": "body",
75486            "name": "body",
75487            "required": true,
75488            "schema": {
75489              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
75490            }
75491          },
75492          {
75493            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
75494            "in": "query",
75495            "name": "dryRun",
75496            "type": "string",
75497            "uniqueItems": true
75498          },
75499          {
75500            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
75501            "in": "query",
75502            "name": "fieldManager",
75503            "type": "string",
75504            "uniqueItems": true
75505          },
75506          {
75507            "description": "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.",
75508            "in": "query",
75509            "name": "force",
75510            "type": "boolean",
75511            "uniqueItems": true
75512          }
75513        ],
75514        "produces": [
75515          "application/json",
75516          "application/yaml",
75517          "application/vnd.kubernetes.protobuf"
75518        ],
75519        "responses": {
75520          "200": {
75521            "description": "OK",
75522            "schema": {
75523              "$ref": "#/definitions/io.k8s.api.rbac.v1.ClusterRole"
75524            }
75525          },
75526          "201": {
75527            "description": "Created",
75528            "schema": {
75529              "$ref": "#/definitions/io.k8s.api.rbac.v1.ClusterRole"
75530            }
75531          },
75532          "401": {
75533            "description": "Unauthorized"
75534          }
75535        },
75536        "schemes": [
75537          "https"
75538        ],
75539        "tags": [
75540          "rbacAuthorization_v1"
75541        ],
75542        "x-kubernetes-action": "patch",
75543        "x-kubernetes-group-version-kind": {
75544          "group": "rbac.authorization.k8s.io",
75545          "kind": "ClusterRole",
75546          "version": "v1"
75547        }
75548      },
75549      "put": {
75550        "consumes": [
75551          "*/*"
75552        ],
75553        "description": "replace the specified ClusterRole",
75554        "operationId": "replaceRbacAuthorizationV1ClusterRole",
75555        "parameters": [
75556          {
75557            "in": "body",
75558            "name": "body",
75559            "required": true,
75560            "schema": {
75561              "$ref": "#/definitions/io.k8s.api.rbac.v1.ClusterRole"
75562            }
75563          },
75564          {
75565            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
75566            "in": "query",
75567            "name": "dryRun",
75568            "type": "string",
75569            "uniqueItems": true
75570          },
75571          {
75572            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
75573            "in": "query",
75574            "name": "fieldManager",
75575            "type": "string",
75576            "uniqueItems": true
75577          }
75578        ],
75579        "produces": [
75580          "application/json",
75581          "application/yaml",
75582          "application/vnd.kubernetes.protobuf"
75583        ],
75584        "responses": {
75585          "200": {
75586            "description": "OK",
75587            "schema": {
75588              "$ref": "#/definitions/io.k8s.api.rbac.v1.ClusterRole"
75589            }
75590          },
75591          "201": {
75592            "description": "Created",
75593            "schema": {
75594              "$ref": "#/definitions/io.k8s.api.rbac.v1.ClusterRole"
75595            }
75596          },
75597          "401": {
75598            "description": "Unauthorized"
75599          }
75600        },
75601        "schemes": [
75602          "https"
75603        ],
75604        "tags": [
75605          "rbacAuthorization_v1"
75606        ],
75607        "x-kubernetes-action": "put",
75608        "x-kubernetes-group-version-kind": {
75609          "group": "rbac.authorization.k8s.io",
75610          "kind": "ClusterRole",
75611          "version": "v1"
75612        }
75613      }
75614    },
75615    "/apis/rbac.authorization.k8s.io/v1/namespaces/{namespace}/rolebindings": {
75616      "delete": {
75617        "consumes": [
75618          "*/*"
75619        ],
75620        "description": "delete collection of RoleBinding",
75621        "operationId": "deleteRbacAuthorizationV1CollectionNamespacedRoleBinding",
75622        "parameters": [
75623          {
75624            "in": "body",
75625            "name": "body",
75626            "schema": {
75627              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
75628            }
75629          },
75630          {
75631            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
75632            "in": "query",
75633            "name": "continue",
75634            "type": "string",
75635            "uniqueItems": true
75636          },
75637          {
75638            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
75639            "in": "query",
75640            "name": "dryRun",
75641            "type": "string",
75642            "uniqueItems": true
75643          },
75644          {
75645            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
75646            "in": "query",
75647            "name": "fieldSelector",
75648            "type": "string",
75649            "uniqueItems": true
75650          },
75651          {
75652            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
75653            "in": "query",
75654            "name": "gracePeriodSeconds",
75655            "type": "integer",
75656            "uniqueItems": true
75657          },
75658          {
75659            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
75660            "in": "query",
75661            "name": "labelSelector",
75662            "type": "string",
75663            "uniqueItems": true
75664          },
75665          {
75666            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
75667            "in": "query",
75668            "name": "limit",
75669            "type": "integer",
75670            "uniqueItems": true
75671          },
75672          {
75673            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
75674            "in": "query",
75675            "name": "orphanDependents",
75676            "type": "boolean",
75677            "uniqueItems": true
75678          },
75679          {
75680            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
75681            "in": "query",
75682            "name": "propagationPolicy",
75683            "type": "string",
75684            "uniqueItems": true
75685          },
75686          {
75687            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
75688            "in": "query",
75689            "name": "resourceVersion",
75690            "type": "string",
75691            "uniqueItems": true
75692          },
75693          {
75694            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
75695            "in": "query",
75696            "name": "resourceVersionMatch",
75697            "type": "string",
75698            "uniqueItems": true
75699          },
75700          {
75701            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
75702            "in": "query",
75703            "name": "timeoutSeconds",
75704            "type": "integer",
75705            "uniqueItems": true
75706          }
75707        ],
75708        "produces": [
75709          "application/json",
75710          "application/yaml",
75711          "application/vnd.kubernetes.protobuf"
75712        ],
75713        "responses": {
75714          "200": {
75715            "description": "OK",
75716            "schema": {
75717              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
75718            }
75719          },
75720          "401": {
75721            "description": "Unauthorized"
75722          }
75723        },
75724        "schemes": [
75725          "https"
75726        ],
75727        "tags": [
75728          "rbacAuthorization_v1"
75729        ],
75730        "x-kubernetes-action": "deletecollection",
75731        "x-kubernetes-group-version-kind": {
75732          "group": "rbac.authorization.k8s.io",
75733          "kind": "RoleBinding",
75734          "version": "v1"
75735        }
75736      },
75737      "get": {
75738        "consumes": [
75739          "*/*"
75740        ],
75741        "description": "list or watch objects of kind RoleBinding",
75742        "operationId": "listRbacAuthorizationV1NamespacedRoleBinding",
75743        "parameters": [
75744          {
75745            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
75746            "in": "query",
75747            "name": "allowWatchBookmarks",
75748            "type": "boolean",
75749            "uniqueItems": true
75750          },
75751          {
75752            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
75753            "in": "query",
75754            "name": "continue",
75755            "type": "string",
75756            "uniqueItems": true
75757          },
75758          {
75759            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
75760            "in": "query",
75761            "name": "fieldSelector",
75762            "type": "string",
75763            "uniqueItems": true
75764          },
75765          {
75766            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
75767            "in": "query",
75768            "name": "labelSelector",
75769            "type": "string",
75770            "uniqueItems": true
75771          },
75772          {
75773            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
75774            "in": "query",
75775            "name": "limit",
75776            "type": "integer",
75777            "uniqueItems": true
75778          },
75779          {
75780            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
75781            "in": "query",
75782            "name": "resourceVersion",
75783            "type": "string",
75784            "uniqueItems": true
75785          },
75786          {
75787            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
75788            "in": "query",
75789            "name": "resourceVersionMatch",
75790            "type": "string",
75791            "uniqueItems": true
75792          },
75793          {
75794            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
75795            "in": "query",
75796            "name": "timeoutSeconds",
75797            "type": "integer",
75798            "uniqueItems": true
75799          },
75800          {
75801            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
75802            "in": "query",
75803            "name": "watch",
75804            "type": "boolean",
75805            "uniqueItems": true
75806          }
75807        ],
75808        "produces": [
75809          "application/json",
75810          "application/yaml",
75811          "application/vnd.kubernetes.protobuf",
75812          "application/json;stream=watch",
75813          "application/vnd.kubernetes.protobuf;stream=watch"
75814        ],
75815        "responses": {
75816          "200": {
75817            "description": "OK",
75818            "schema": {
75819              "$ref": "#/definitions/io.k8s.api.rbac.v1.RoleBindingList"
75820            }
75821          },
75822          "401": {
75823            "description": "Unauthorized"
75824          }
75825        },
75826        "schemes": [
75827          "https"
75828        ],
75829        "tags": [
75830          "rbacAuthorization_v1"
75831        ],
75832        "x-kubernetes-action": "list",
75833        "x-kubernetes-group-version-kind": {
75834          "group": "rbac.authorization.k8s.io",
75835          "kind": "RoleBinding",
75836          "version": "v1"
75837        }
75838      },
75839      "parameters": [
75840        {
75841          "description": "object name and auth scope, such as for teams and projects",
75842          "in": "path",
75843          "name": "namespace",
75844          "required": true,
75845          "type": "string",
75846          "uniqueItems": true
75847        },
75848        {
75849          "description": "If 'true', then the output is pretty printed.",
75850          "in": "query",
75851          "name": "pretty",
75852          "type": "string",
75853          "uniqueItems": true
75854        }
75855      ],
75856      "post": {
75857        "consumes": [
75858          "*/*"
75859        ],
75860        "description": "create a RoleBinding",
75861        "operationId": "createRbacAuthorizationV1NamespacedRoleBinding",
75862        "parameters": [
75863          {
75864            "in": "body",
75865            "name": "body",
75866            "required": true,
75867            "schema": {
75868              "$ref": "#/definitions/io.k8s.api.rbac.v1.RoleBinding"
75869            }
75870          },
75871          {
75872            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
75873            "in": "query",
75874            "name": "dryRun",
75875            "type": "string",
75876            "uniqueItems": true
75877          },
75878          {
75879            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
75880            "in": "query",
75881            "name": "fieldManager",
75882            "type": "string",
75883            "uniqueItems": true
75884          }
75885        ],
75886        "produces": [
75887          "application/json",
75888          "application/yaml",
75889          "application/vnd.kubernetes.protobuf"
75890        ],
75891        "responses": {
75892          "200": {
75893            "description": "OK",
75894            "schema": {
75895              "$ref": "#/definitions/io.k8s.api.rbac.v1.RoleBinding"
75896            }
75897          },
75898          "201": {
75899            "description": "Created",
75900            "schema": {
75901              "$ref": "#/definitions/io.k8s.api.rbac.v1.RoleBinding"
75902            }
75903          },
75904          "202": {
75905            "description": "Accepted",
75906            "schema": {
75907              "$ref": "#/definitions/io.k8s.api.rbac.v1.RoleBinding"
75908            }
75909          },
75910          "401": {
75911            "description": "Unauthorized"
75912          }
75913        },
75914        "schemes": [
75915          "https"
75916        ],
75917        "tags": [
75918          "rbacAuthorization_v1"
75919        ],
75920        "x-kubernetes-action": "post",
75921        "x-kubernetes-group-version-kind": {
75922          "group": "rbac.authorization.k8s.io",
75923          "kind": "RoleBinding",
75924          "version": "v1"
75925        }
75926      }
75927    },
75928    "/apis/rbac.authorization.k8s.io/v1/namespaces/{namespace}/rolebindings/{name}": {
75929      "delete": {
75930        "consumes": [
75931          "*/*"
75932        ],
75933        "description": "delete a RoleBinding",
75934        "operationId": "deleteRbacAuthorizationV1NamespacedRoleBinding",
75935        "parameters": [
75936          {
75937            "in": "body",
75938            "name": "body",
75939            "schema": {
75940              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
75941            }
75942          },
75943          {
75944            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
75945            "in": "query",
75946            "name": "dryRun",
75947            "type": "string",
75948            "uniqueItems": true
75949          },
75950          {
75951            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
75952            "in": "query",
75953            "name": "gracePeriodSeconds",
75954            "type": "integer",
75955            "uniqueItems": true
75956          },
75957          {
75958            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
75959            "in": "query",
75960            "name": "orphanDependents",
75961            "type": "boolean",
75962            "uniqueItems": true
75963          },
75964          {
75965            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
75966            "in": "query",
75967            "name": "propagationPolicy",
75968            "type": "string",
75969            "uniqueItems": true
75970          }
75971        ],
75972        "produces": [
75973          "application/json",
75974          "application/yaml",
75975          "application/vnd.kubernetes.protobuf"
75976        ],
75977        "responses": {
75978          "200": {
75979            "description": "OK",
75980            "schema": {
75981              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
75982            }
75983          },
75984          "202": {
75985            "description": "Accepted",
75986            "schema": {
75987              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
75988            }
75989          },
75990          "401": {
75991            "description": "Unauthorized"
75992          }
75993        },
75994        "schemes": [
75995          "https"
75996        ],
75997        "tags": [
75998          "rbacAuthorization_v1"
75999        ],
76000        "x-kubernetes-action": "delete",
76001        "x-kubernetes-group-version-kind": {
76002          "group": "rbac.authorization.k8s.io",
76003          "kind": "RoleBinding",
76004          "version": "v1"
76005        }
76006      },
76007      "get": {
76008        "consumes": [
76009          "*/*"
76010        ],
76011        "description": "read the specified RoleBinding",
76012        "operationId": "readRbacAuthorizationV1NamespacedRoleBinding",
76013        "produces": [
76014          "application/json",
76015          "application/yaml",
76016          "application/vnd.kubernetes.protobuf"
76017        ],
76018        "responses": {
76019          "200": {
76020            "description": "OK",
76021            "schema": {
76022              "$ref": "#/definitions/io.k8s.api.rbac.v1.RoleBinding"
76023            }
76024          },
76025          "401": {
76026            "description": "Unauthorized"
76027          }
76028        },
76029        "schemes": [
76030          "https"
76031        ],
76032        "tags": [
76033          "rbacAuthorization_v1"
76034        ],
76035        "x-kubernetes-action": "get",
76036        "x-kubernetes-group-version-kind": {
76037          "group": "rbac.authorization.k8s.io",
76038          "kind": "RoleBinding",
76039          "version": "v1"
76040        }
76041      },
76042      "parameters": [
76043        {
76044          "description": "name of the RoleBinding",
76045          "in": "path",
76046          "name": "name",
76047          "required": true,
76048          "type": "string",
76049          "uniqueItems": true
76050        },
76051        {
76052          "description": "object name and auth scope, such as for teams and projects",
76053          "in": "path",
76054          "name": "namespace",
76055          "required": true,
76056          "type": "string",
76057          "uniqueItems": true
76058        },
76059        {
76060          "description": "If 'true', then the output is pretty printed.",
76061          "in": "query",
76062          "name": "pretty",
76063          "type": "string",
76064          "uniqueItems": true
76065        }
76066      ],
76067      "patch": {
76068        "consumes": [
76069          "application/json-patch+json",
76070          "application/merge-patch+json",
76071          "application/strategic-merge-patch+json",
76072          "application/apply-patch+yaml"
76073        ],
76074        "description": "partially update the specified RoleBinding",
76075        "operationId": "patchRbacAuthorizationV1NamespacedRoleBinding",
76076        "parameters": [
76077          {
76078            "in": "body",
76079            "name": "body",
76080            "required": true,
76081            "schema": {
76082              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
76083            }
76084          },
76085          {
76086            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
76087            "in": "query",
76088            "name": "dryRun",
76089            "type": "string",
76090            "uniqueItems": true
76091          },
76092          {
76093            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
76094            "in": "query",
76095            "name": "fieldManager",
76096            "type": "string",
76097            "uniqueItems": true
76098          },
76099          {
76100            "description": "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.",
76101            "in": "query",
76102            "name": "force",
76103            "type": "boolean",
76104            "uniqueItems": true
76105          }
76106        ],
76107        "produces": [
76108          "application/json",
76109          "application/yaml",
76110          "application/vnd.kubernetes.protobuf"
76111        ],
76112        "responses": {
76113          "200": {
76114            "description": "OK",
76115            "schema": {
76116              "$ref": "#/definitions/io.k8s.api.rbac.v1.RoleBinding"
76117            }
76118          },
76119          "201": {
76120            "description": "Created",
76121            "schema": {
76122              "$ref": "#/definitions/io.k8s.api.rbac.v1.RoleBinding"
76123            }
76124          },
76125          "401": {
76126            "description": "Unauthorized"
76127          }
76128        },
76129        "schemes": [
76130          "https"
76131        ],
76132        "tags": [
76133          "rbacAuthorization_v1"
76134        ],
76135        "x-kubernetes-action": "patch",
76136        "x-kubernetes-group-version-kind": {
76137          "group": "rbac.authorization.k8s.io",
76138          "kind": "RoleBinding",
76139          "version": "v1"
76140        }
76141      },
76142      "put": {
76143        "consumes": [
76144          "*/*"
76145        ],
76146        "description": "replace the specified RoleBinding",
76147        "operationId": "replaceRbacAuthorizationV1NamespacedRoleBinding",
76148        "parameters": [
76149          {
76150            "in": "body",
76151            "name": "body",
76152            "required": true,
76153            "schema": {
76154              "$ref": "#/definitions/io.k8s.api.rbac.v1.RoleBinding"
76155            }
76156          },
76157          {
76158            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
76159            "in": "query",
76160            "name": "dryRun",
76161            "type": "string",
76162            "uniqueItems": true
76163          },
76164          {
76165            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
76166            "in": "query",
76167            "name": "fieldManager",
76168            "type": "string",
76169            "uniqueItems": true
76170          }
76171        ],
76172        "produces": [
76173          "application/json",
76174          "application/yaml",
76175          "application/vnd.kubernetes.protobuf"
76176        ],
76177        "responses": {
76178          "200": {
76179            "description": "OK",
76180            "schema": {
76181              "$ref": "#/definitions/io.k8s.api.rbac.v1.RoleBinding"
76182            }
76183          },
76184          "201": {
76185            "description": "Created",
76186            "schema": {
76187              "$ref": "#/definitions/io.k8s.api.rbac.v1.RoleBinding"
76188            }
76189          },
76190          "401": {
76191            "description": "Unauthorized"
76192          }
76193        },
76194        "schemes": [
76195          "https"
76196        ],
76197        "tags": [
76198          "rbacAuthorization_v1"
76199        ],
76200        "x-kubernetes-action": "put",
76201        "x-kubernetes-group-version-kind": {
76202          "group": "rbac.authorization.k8s.io",
76203          "kind": "RoleBinding",
76204          "version": "v1"
76205        }
76206      }
76207    },
76208    "/apis/rbac.authorization.k8s.io/v1/namespaces/{namespace}/roles": {
76209      "delete": {
76210        "consumes": [
76211          "*/*"
76212        ],
76213        "description": "delete collection of Role",
76214        "operationId": "deleteRbacAuthorizationV1CollectionNamespacedRole",
76215        "parameters": [
76216          {
76217            "in": "body",
76218            "name": "body",
76219            "schema": {
76220              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
76221            }
76222          },
76223          {
76224            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
76225            "in": "query",
76226            "name": "continue",
76227            "type": "string",
76228            "uniqueItems": true
76229          },
76230          {
76231            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
76232            "in": "query",
76233            "name": "dryRun",
76234            "type": "string",
76235            "uniqueItems": true
76236          },
76237          {
76238            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
76239            "in": "query",
76240            "name": "fieldSelector",
76241            "type": "string",
76242            "uniqueItems": true
76243          },
76244          {
76245            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
76246            "in": "query",
76247            "name": "gracePeriodSeconds",
76248            "type": "integer",
76249            "uniqueItems": true
76250          },
76251          {
76252            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
76253            "in": "query",
76254            "name": "labelSelector",
76255            "type": "string",
76256            "uniqueItems": true
76257          },
76258          {
76259            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
76260            "in": "query",
76261            "name": "limit",
76262            "type": "integer",
76263            "uniqueItems": true
76264          },
76265          {
76266            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
76267            "in": "query",
76268            "name": "orphanDependents",
76269            "type": "boolean",
76270            "uniqueItems": true
76271          },
76272          {
76273            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
76274            "in": "query",
76275            "name": "propagationPolicy",
76276            "type": "string",
76277            "uniqueItems": true
76278          },
76279          {
76280            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
76281            "in": "query",
76282            "name": "resourceVersion",
76283            "type": "string",
76284            "uniqueItems": true
76285          },
76286          {
76287            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
76288            "in": "query",
76289            "name": "resourceVersionMatch",
76290            "type": "string",
76291            "uniqueItems": true
76292          },
76293          {
76294            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
76295            "in": "query",
76296            "name": "timeoutSeconds",
76297            "type": "integer",
76298            "uniqueItems": true
76299          }
76300        ],
76301        "produces": [
76302          "application/json",
76303          "application/yaml",
76304          "application/vnd.kubernetes.protobuf"
76305        ],
76306        "responses": {
76307          "200": {
76308            "description": "OK",
76309            "schema": {
76310              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
76311            }
76312          },
76313          "401": {
76314            "description": "Unauthorized"
76315          }
76316        },
76317        "schemes": [
76318          "https"
76319        ],
76320        "tags": [
76321          "rbacAuthorization_v1"
76322        ],
76323        "x-kubernetes-action": "deletecollection",
76324        "x-kubernetes-group-version-kind": {
76325          "group": "rbac.authorization.k8s.io",
76326          "kind": "Role",
76327          "version": "v1"
76328        }
76329      },
76330      "get": {
76331        "consumes": [
76332          "*/*"
76333        ],
76334        "description": "list or watch objects of kind Role",
76335        "operationId": "listRbacAuthorizationV1NamespacedRole",
76336        "parameters": [
76337          {
76338            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
76339            "in": "query",
76340            "name": "allowWatchBookmarks",
76341            "type": "boolean",
76342            "uniqueItems": true
76343          },
76344          {
76345            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
76346            "in": "query",
76347            "name": "continue",
76348            "type": "string",
76349            "uniqueItems": true
76350          },
76351          {
76352            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
76353            "in": "query",
76354            "name": "fieldSelector",
76355            "type": "string",
76356            "uniqueItems": true
76357          },
76358          {
76359            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
76360            "in": "query",
76361            "name": "labelSelector",
76362            "type": "string",
76363            "uniqueItems": true
76364          },
76365          {
76366            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
76367            "in": "query",
76368            "name": "limit",
76369            "type": "integer",
76370            "uniqueItems": true
76371          },
76372          {
76373            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
76374            "in": "query",
76375            "name": "resourceVersion",
76376            "type": "string",
76377            "uniqueItems": true
76378          },
76379          {
76380            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
76381            "in": "query",
76382            "name": "resourceVersionMatch",
76383            "type": "string",
76384            "uniqueItems": true
76385          },
76386          {
76387            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
76388            "in": "query",
76389            "name": "timeoutSeconds",
76390            "type": "integer",
76391            "uniqueItems": true
76392          },
76393          {
76394            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
76395            "in": "query",
76396            "name": "watch",
76397            "type": "boolean",
76398            "uniqueItems": true
76399          }
76400        ],
76401        "produces": [
76402          "application/json",
76403          "application/yaml",
76404          "application/vnd.kubernetes.protobuf",
76405          "application/json;stream=watch",
76406          "application/vnd.kubernetes.protobuf;stream=watch"
76407        ],
76408        "responses": {
76409          "200": {
76410            "description": "OK",
76411            "schema": {
76412              "$ref": "#/definitions/io.k8s.api.rbac.v1.RoleList"
76413            }
76414          },
76415          "401": {
76416            "description": "Unauthorized"
76417          }
76418        },
76419        "schemes": [
76420          "https"
76421        ],
76422        "tags": [
76423          "rbacAuthorization_v1"
76424        ],
76425        "x-kubernetes-action": "list",
76426        "x-kubernetes-group-version-kind": {
76427          "group": "rbac.authorization.k8s.io",
76428          "kind": "Role",
76429          "version": "v1"
76430        }
76431      },
76432      "parameters": [
76433        {
76434          "description": "object name and auth scope, such as for teams and projects",
76435          "in": "path",
76436          "name": "namespace",
76437          "required": true,
76438          "type": "string",
76439          "uniqueItems": true
76440        },
76441        {
76442          "description": "If 'true', then the output is pretty printed.",
76443          "in": "query",
76444          "name": "pretty",
76445          "type": "string",
76446          "uniqueItems": true
76447        }
76448      ],
76449      "post": {
76450        "consumes": [
76451          "*/*"
76452        ],
76453        "description": "create a Role",
76454        "operationId": "createRbacAuthorizationV1NamespacedRole",
76455        "parameters": [
76456          {
76457            "in": "body",
76458            "name": "body",
76459            "required": true,
76460            "schema": {
76461              "$ref": "#/definitions/io.k8s.api.rbac.v1.Role"
76462            }
76463          },
76464          {
76465            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
76466            "in": "query",
76467            "name": "dryRun",
76468            "type": "string",
76469            "uniqueItems": true
76470          },
76471          {
76472            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
76473            "in": "query",
76474            "name": "fieldManager",
76475            "type": "string",
76476            "uniqueItems": true
76477          }
76478        ],
76479        "produces": [
76480          "application/json",
76481          "application/yaml",
76482          "application/vnd.kubernetes.protobuf"
76483        ],
76484        "responses": {
76485          "200": {
76486            "description": "OK",
76487            "schema": {
76488              "$ref": "#/definitions/io.k8s.api.rbac.v1.Role"
76489            }
76490          },
76491          "201": {
76492            "description": "Created",
76493            "schema": {
76494              "$ref": "#/definitions/io.k8s.api.rbac.v1.Role"
76495            }
76496          },
76497          "202": {
76498            "description": "Accepted",
76499            "schema": {
76500              "$ref": "#/definitions/io.k8s.api.rbac.v1.Role"
76501            }
76502          },
76503          "401": {
76504            "description": "Unauthorized"
76505          }
76506        },
76507        "schemes": [
76508          "https"
76509        ],
76510        "tags": [
76511          "rbacAuthorization_v1"
76512        ],
76513        "x-kubernetes-action": "post",
76514        "x-kubernetes-group-version-kind": {
76515          "group": "rbac.authorization.k8s.io",
76516          "kind": "Role",
76517          "version": "v1"
76518        }
76519      }
76520    },
76521    "/apis/rbac.authorization.k8s.io/v1/namespaces/{namespace}/roles/{name}": {
76522      "delete": {
76523        "consumes": [
76524          "*/*"
76525        ],
76526        "description": "delete a Role",
76527        "operationId": "deleteRbacAuthorizationV1NamespacedRole",
76528        "parameters": [
76529          {
76530            "in": "body",
76531            "name": "body",
76532            "schema": {
76533              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
76534            }
76535          },
76536          {
76537            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
76538            "in": "query",
76539            "name": "dryRun",
76540            "type": "string",
76541            "uniqueItems": true
76542          },
76543          {
76544            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
76545            "in": "query",
76546            "name": "gracePeriodSeconds",
76547            "type": "integer",
76548            "uniqueItems": true
76549          },
76550          {
76551            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
76552            "in": "query",
76553            "name": "orphanDependents",
76554            "type": "boolean",
76555            "uniqueItems": true
76556          },
76557          {
76558            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
76559            "in": "query",
76560            "name": "propagationPolicy",
76561            "type": "string",
76562            "uniqueItems": true
76563          }
76564        ],
76565        "produces": [
76566          "application/json",
76567          "application/yaml",
76568          "application/vnd.kubernetes.protobuf"
76569        ],
76570        "responses": {
76571          "200": {
76572            "description": "OK",
76573            "schema": {
76574              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
76575            }
76576          },
76577          "202": {
76578            "description": "Accepted",
76579            "schema": {
76580              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
76581            }
76582          },
76583          "401": {
76584            "description": "Unauthorized"
76585          }
76586        },
76587        "schemes": [
76588          "https"
76589        ],
76590        "tags": [
76591          "rbacAuthorization_v1"
76592        ],
76593        "x-kubernetes-action": "delete",
76594        "x-kubernetes-group-version-kind": {
76595          "group": "rbac.authorization.k8s.io",
76596          "kind": "Role",
76597          "version": "v1"
76598        }
76599      },
76600      "get": {
76601        "consumes": [
76602          "*/*"
76603        ],
76604        "description": "read the specified Role",
76605        "operationId": "readRbacAuthorizationV1NamespacedRole",
76606        "produces": [
76607          "application/json",
76608          "application/yaml",
76609          "application/vnd.kubernetes.protobuf"
76610        ],
76611        "responses": {
76612          "200": {
76613            "description": "OK",
76614            "schema": {
76615              "$ref": "#/definitions/io.k8s.api.rbac.v1.Role"
76616            }
76617          },
76618          "401": {
76619            "description": "Unauthorized"
76620          }
76621        },
76622        "schemes": [
76623          "https"
76624        ],
76625        "tags": [
76626          "rbacAuthorization_v1"
76627        ],
76628        "x-kubernetes-action": "get",
76629        "x-kubernetes-group-version-kind": {
76630          "group": "rbac.authorization.k8s.io",
76631          "kind": "Role",
76632          "version": "v1"
76633        }
76634      },
76635      "parameters": [
76636        {
76637          "description": "name of the Role",
76638          "in": "path",
76639          "name": "name",
76640          "required": true,
76641          "type": "string",
76642          "uniqueItems": true
76643        },
76644        {
76645          "description": "object name and auth scope, such as for teams and projects",
76646          "in": "path",
76647          "name": "namespace",
76648          "required": true,
76649          "type": "string",
76650          "uniqueItems": true
76651        },
76652        {
76653          "description": "If 'true', then the output is pretty printed.",
76654          "in": "query",
76655          "name": "pretty",
76656          "type": "string",
76657          "uniqueItems": true
76658        }
76659      ],
76660      "patch": {
76661        "consumes": [
76662          "application/json-patch+json",
76663          "application/merge-patch+json",
76664          "application/strategic-merge-patch+json",
76665          "application/apply-patch+yaml"
76666        ],
76667        "description": "partially update the specified Role",
76668        "operationId": "patchRbacAuthorizationV1NamespacedRole",
76669        "parameters": [
76670          {
76671            "in": "body",
76672            "name": "body",
76673            "required": true,
76674            "schema": {
76675              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
76676            }
76677          },
76678          {
76679            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
76680            "in": "query",
76681            "name": "dryRun",
76682            "type": "string",
76683            "uniqueItems": true
76684          },
76685          {
76686            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
76687            "in": "query",
76688            "name": "fieldManager",
76689            "type": "string",
76690            "uniqueItems": true
76691          },
76692          {
76693            "description": "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.",
76694            "in": "query",
76695            "name": "force",
76696            "type": "boolean",
76697            "uniqueItems": true
76698          }
76699        ],
76700        "produces": [
76701          "application/json",
76702          "application/yaml",
76703          "application/vnd.kubernetes.protobuf"
76704        ],
76705        "responses": {
76706          "200": {
76707            "description": "OK",
76708            "schema": {
76709              "$ref": "#/definitions/io.k8s.api.rbac.v1.Role"
76710            }
76711          },
76712          "201": {
76713            "description": "Created",
76714            "schema": {
76715              "$ref": "#/definitions/io.k8s.api.rbac.v1.Role"
76716            }
76717          },
76718          "401": {
76719            "description": "Unauthorized"
76720          }
76721        },
76722        "schemes": [
76723          "https"
76724        ],
76725        "tags": [
76726          "rbacAuthorization_v1"
76727        ],
76728        "x-kubernetes-action": "patch",
76729        "x-kubernetes-group-version-kind": {
76730          "group": "rbac.authorization.k8s.io",
76731          "kind": "Role",
76732          "version": "v1"
76733        }
76734      },
76735      "put": {
76736        "consumes": [
76737          "*/*"
76738        ],
76739        "description": "replace the specified Role",
76740        "operationId": "replaceRbacAuthorizationV1NamespacedRole",
76741        "parameters": [
76742          {
76743            "in": "body",
76744            "name": "body",
76745            "required": true,
76746            "schema": {
76747              "$ref": "#/definitions/io.k8s.api.rbac.v1.Role"
76748            }
76749          },
76750          {
76751            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
76752            "in": "query",
76753            "name": "dryRun",
76754            "type": "string",
76755            "uniqueItems": true
76756          },
76757          {
76758            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
76759            "in": "query",
76760            "name": "fieldManager",
76761            "type": "string",
76762            "uniqueItems": true
76763          }
76764        ],
76765        "produces": [
76766          "application/json",
76767          "application/yaml",
76768          "application/vnd.kubernetes.protobuf"
76769        ],
76770        "responses": {
76771          "200": {
76772            "description": "OK",
76773            "schema": {
76774              "$ref": "#/definitions/io.k8s.api.rbac.v1.Role"
76775            }
76776          },
76777          "201": {
76778            "description": "Created",
76779            "schema": {
76780              "$ref": "#/definitions/io.k8s.api.rbac.v1.Role"
76781            }
76782          },
76783          "401": {
76784            "description": "Unauthorized"
76785          }
76786        },
76787        "schemes": [
76788          "https"
76789        ],
76790        "tags": [
76791          "rbacAuthorization_v1"
76792        ],
76793        "x-kubernetes-action": "put",
76794        "x-kubernetes-group-version-kind": {
76795          "group": "rbac.authorization.k8s.io",
76796          "kind": "Role",
76797          "version": "v1"
76798        }
76799      }
76800    },
76801    "/apis/rbac.authorization.k8s.io/v1/rolebindings": {
76802      "get": {
76803        "consumes": [
76804          "*/*"
76805        ],
76806        "description": "list or watch objects of kind RoleBinding",
76807        "operationId": "listRbacAuthorizationV1RoleBindingForAllNamespaces",
76808        "produces": [
76809          "application/json",
76810          "application/yaml",
76811          "application/vnd.kubernetes.protobuf",
76812          "application/json;stream=watch",
76813          "application/vnd.kubernetes.protobuf;stream=watch"
76814        ],
76815        "responses": {
76816          "200": {
76817            "description": "OK",
76818            "schema": {
76819              "$ref": "#/definitions/io.k8s.api.rbac.v1.RoleBindingList"
76820            }
76821          },
76822          "401": {
76823            "description": "Unauthorized"
76824          }
76825        },
76826        "schemes": [
76827          "https"
76828        ],
76829        "tags": [
76830          "rbacAuthorization_v1"
76831        ],
76832        "x-kubernetes-action": "list",
76833        "x-kubernetes-group-version-kind": {
76834          "group": "rbac.authorization.k8s.io",
76835          "kind": "RoleBinding",
76836          "version": "v1"
76837        }
76838      },
76839      "parameters": [
76840        {
76841          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
76842          "in": "query",
76843          "name": "allowWatchBookmarks",
76844          "type": "boolean",
76845          "uniqueItems": true
76846        },
76847        {
76848          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
76849          "in": "query",
76850          "name": "continue",
76851          "type": "string",
76852          "uniqueItems": true
76853        },
76854        {
76855          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
76856          "in": "query",
76857          "name": "fieldSelector",
76858          "type": "string",
76859          "uniqueItems": true
76860        },
76861        {
76862          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
76863          "in": "query",
76864          "name": "labelSelector",
76865          "type": "string",
76866          "uniqueItems": true
76867        },
76868        {
76869          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
76870          "in": "query",
76871          "name": "limit",
76872          "type": "integer",
76873          "uniqueItems": true
76874        },
76875        {
76876          "description": "If 'true', then the output is pretty printed.",
76877          "in": "query",
76878          "name": "pretty",
76879          "type": "string",
76880          "uniqueItems": true
76881        },
76882        {
76883          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
76884          "in": "query",
76885          "name": "resourceVersion",
76886          "type": "string",
76887          "uniqueItems": true
76888        },
76889        {
76890          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
76891          "in": "query",
76892          "name": "resourceVersionMatch",
76893          "type": "string",
76894          "uniqueItems": true
76895        },
76896        {
76897          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
76898          "in": "query",
76899          "name": "timeoutSeconds",
76900          "type": "integer",
76901          "uniqueItems": true
76902        },
76903        {
76904          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
76905          "in": "query",
76906          "name": "watch",
76907          "type": "boolean",
76908          "uniqueItems": true
76909        }
76910      ]
76911    },
76912    "/apis/rbac.authorization.k8s.io/v1/roles": {
76913      "get": {
76914        "consumes": [
76915          "*/*"
76916        ],
76917        "description": "list or watch objects of kind Role",
76918        "operationId": "listRbacAuthorizationV1RoleForAllNamespaces",
76919        "produces": [
76920          "application/json",
76921          "application/yaml",
76922          "application/vnd.kubernetes.protobuf",
76923          "application/json;stream=watch",
76924          "application/vnd.kubernetes.protobuf;stream=watch"
76925        ],
76926        "responses": {
76927          "200": {
76928            "description": "OK",
76929            "schema": {
76930              "$ref": "#/definitions/io.k8s.api.rbac.v1.RoleList"
76931            }
76932          },
76933          "401": {
76934            "description": "Unauthorized"
76935          }
76936        },
76937        "schemes": [
76938          "https"
76939        ],
76940        "tags": [
76941          "rbacAuthorization_v1"
76942        ],
76943        "x-kubernetes-action": "list",
76944        "x-kubernetes-group-version-kind": {
76945          "group": "rbac.authorization.k8s.io",
76946          "kind": "Role",
76947          "version": "v1"
76948        }
76949      },
76950      "parameters": [
76951        {
76952          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
76953          "in": "query",
76954          "name": "allowWatchBookmarks",
76955          "type": "boolean",
76956          "uniqueItems": true
76957        },
76958        {
76959          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
76960          "in": "query",
76961          "name": "continue",
76962          "type": "string",
76963          "uniqueItems": true
76964        },
76965        {
76966          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
76967          "in": "query",
76968          "name": "fieldSelector",
76969          "type": "string",
76970          "uniqueItems": true
76971        },
76972        {
76973          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
76974          "in": "query",
76975          "name": "labelSelector",
76976          "type": "string",
76977          "uniqueItems": true
76978        },
76979        {
76980          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
76981          "in": "query",
76982          "name": "limit",
76983          "type": "integer",
76984          "uniqueItems": true
76985        },
76986        {
76987          "description": "If 'true', then the output is pretty printed.",
76988          "in": "query",
76989          "name": "pretty",
76990          "type": "string",
76991          "uniqueItems": true
76992        },
76993        {
76994          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
76995          "in": "query",
76996          "name": "resourceVersion",
76997          "type": "string",
76998          "uniqueItems": true
76999        },
77000        {
77001          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
77002          "in": "query",
77003          "name": "resourceVersionMatch",
77004          "type": "string",
77005          "uniqueItems": true
77006        },
77007        {
77008          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
77009          "in": "query",
77010          "name": "timeoutSeconds",
77011          "type": "integer",
77012          "uniqueItems": true
77013        },
77014        {
77015          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
77016          "in": "query",
77017          "name": "watch",
77018          "type": "boolean",
77019          "uniqueItems": true
77020        }
77021      ]
77022    },
77023    "/apis/rbac.authorization.k8s.io/v1/watch/clusterrolebindings": {
77024      "get": {
77025        "consumes": [
77026          "*/*"
77027        ],
77028        "description": "watch individual changes to a list of ClusterRoleBinding. deprecated: use the 'watch' parameter with a list operation instead.",
77029        "operationId": "watchRbacAuthorizationV1ClusterRoleBindingList",
77030        "produces": [
77031          "application/json",
77032          "application/yaml",
77033          "application/vnd.kubernetes.protobuf",
77034          "application/json;stream=watch",
77035          "application/vnd.kubernetes.protobuf;stream=watch"
77036        ],
77037        "responses": {
77038          "200": {
77039            "description": "OK",
77040            "schema": {
77041              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
77042            }
77043          },
77044          "401": {
77045            "description": "Unauthorized"
77046          }
77047        },
77048        "schemes": [
77049          "https"
77050        ],
77051        "tags": [
77052          "rbacAuthorization_v1"
77053        ],
77054        "x-kubernetes-action": "watchlist",
77055        "x-kubernetes-group-version-kind": {
77056          "group": "rbac.authorization.k8s.io",
77057          "kind": "ClusterRoleBinding",
77058          "version": "v1"
77059        }
77060      },
77061      "parameters": [
77062        {
77063          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
77064          "in": "query",
77065          "name": "allowWatchBookmarks",
77066          "type": "boolean",
77067          "uniqueItems": true
77068        },
77069        {
77070          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
77071          "in": "query",
77072          "name": "continue",
77073          "type": "string",
77074          "uniqueItems": true
77075        },
77076        {
77077          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
77078          "in": "query",
77079          "name": "fieldSelector",
77080          "type": "string",
77081          "uniqueItems": true
77082        },
77083        {
77084          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
77085          "in": "query",
77086          "name": "labelSelector",
77087          "type": "string",
77088          "uniqueItems": true
77089        },
77090        {
77091          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
77092          "in": "query",
77093          "name": "limit",
77094          "type": "integer",
77095          "uniqueItems": true
77096        },
77097        {
77098          "description": "If 'true', then the output is pretty printed.",
77099          "in": "query",
77100          "name": "pretty",
77101          "type": "string",
77102          "uniqueItems": true
77103        },
77104        {
77105          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
77106          "in": "query",
77107          "name": "resourceVersion",
77108          "type": "string",
77109          "uniqueItems": true
77110        },
77111        {
77112          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
77113          "in": "query",
77114          "name": "resourceVersionMatch",
77115          "type": "string",
77116          "uniqueItems": true
77117        },
77118        {
77119          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
77120          "in": "query",
77121          "name": "timeoutSeconds",
77122          "type": "integer",
77123          "uniqueItems": true
77124        },
77125        {
77126          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
77127          "in": "query",
77128          "name": "watch",
77129          "type": "boolean",
77130          "uniqueItems": true
77131        }
77132      ]
77133    },
77134    "/apis/rbac.authorization.k8s.io/v1/watch/clusterrolebindings/{name}": {
77135      "get": {
77136        "consumes": [
77137          "*/*"
77138        ],
77139        "description": "watch changes to an object of kind ClusterRoleBinding. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.",
77140        "operationId": "watchRbacAuthorizationV1ClusterRoleBinding",
77141        "produces": [
77142          "application/json",
77143          "application/yaml",
77144          "application/vnd.kubernetes.protobuf",
77145          "application/json;stream=watch",
77146          "application/vnd.kubernetes.protobuf;stream=watch"
77147        ],
77148        "responses": {
77149          "200": {
77150            "description": "OK",
77151            "schema": {
77152              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
77153            }
77154          },
77155          "401": {
77156            "description": "Unauthorized"
77157          }
77158        },
77159        "schemes": [
77160          "https"
77161        ],
77162        "tags": [
77163          "rbacAuthorization_v1"
77164        ],
77165        "x-kubernetes-action": "watch",
77166        "x-kubernetes-group-version-kind": {
77167          "group": "rbac.authorization.k8s.io",
77168          "kind": "ClusterRoleBinding",
77169          "version": "v1"
77170        }
77171      },
77172      "parameters": [
77173        {
77174          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
77175          "in": "query",
77176          "name": "allowWatchBookmarks",
77177          "type": "boolean",
77178          "uniqueItems": true
77179        },
77180        {
77181          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
77182          "in": "query",
77183          "name": "continue",
77184          "type": "string",
77185          "uniqueItems": true
77186        },
77187        {
77188          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
77189          "in": "query",
77190          "name": "fieldSelector",
77191          "type": "string",
77192          "uniqueItems": true
77193        },
77194        {
77195          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
77196          "in": "query",
77197          "name": "labelSelector",
77198          "type": "string",
77199          "uniqueItems": true
77200        },
77201        {
77202          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
77203          "in": "query",
77204          "name": "limit",
77205          "type": "integer",
77206          "uniqueItems": true
77207        },
77208        {
77209          "description": "name of the ClusterRoleBinding",
77210          "in": "path",
77211          "name": "name",
77212          "required": true,
77213          "type": "string",
77214          "uniqueItems": true
77215        },
77216        {
77217          "description": "If 'true', then the output is pretty printed.",
77218          "in": "query",
77219          "name": "pretty",
77220          "type": "string",
77221          "uniqueItems": true
77222        },
77223        {
77224          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
77225          "in": "query",
77226          "name": "resourceVersion",
77227          "type": "string",
77228          "uniqueItems": true
77229        },
77230        {
77231          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
77232          "in": "query",
77233          "name": "resourceVersionMatch",
77234          "type": "string",
77235          "uniqueItems": true
77236        },
77237        {
77238          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
77239          "in": "query",
77240          "name": "timeoutSeconds",
77241          "type": "integer",
77242          "uniqueItems": true
77243        },
77244        {
77245          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
77246          "in": "query",
77247          "name": "watch",
77248          "type": "boolean",
77249          "uniqueItems": true
77250        }
77251      ]
77252    },
77253    "/apis/rbac.authorization.k8s.io/v1/watch/clusterroles": {
77254      "get": {
77255        "consumes": [
77256          "*/*"
77257        ],
77258        "description": "watch individual changes to a list of ClusterRole. deprecated: use the 'watch' parameter with a list operation instead.",
77259        "operationId": "watchRbacAuthorizationV1ClusterRoleList",
77260        "produces": [
77261          "application/json",
77262          "application/yaml",
77263          "application/vnd.kubernetes.protobuf",
77264          "application/json;stream=watch",
77265          "application/vnd.kubernetes.protobuf;stream=watch"
77266        ],
77267        "responses": {
77268          "200": {
77269            "description": "OK",
77270            "schema": {
77271              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
77272            }
77273          },
77274          "401": {
77275            "description": "Unauthorized"
77276          }
77277        },
77278        "schemes": [
77279          "https"
77280        ],
77281        "tags": [
77282          "rbacAuthorization_v1"
77283        ],
77284        "x-kubernetes-action": "watchlist",
77285        "x-kubernetes-group-version-kind": {
77286          "group": "rbac.authorization.k8s.io",
77287          "kind": "ClusterRole",
77288          "version": "v1"
77289        }
77290      },
77291      "parameters": [
77292        {
77293          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
77294          "in": "query",
77295          "name": "allowWatchBookmarks",
77296          "type": "boolean",
77297          "uniqueItems": true
77298        },
77299        {
77300          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
77301          "in": "query",
77302          "name": "continue",
77303          "type": "string",
77304          "uniqueItems": true
77305        },
77306        {
77307          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
77308          "in": "query",
77309          "name": "fieldSelector",
77310          "type": "string",
77311          "uniqueItems": true
77312        },
77313        {
77314          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
77315          "in": "query",
77316          "name": "labelSelector",
77317          "type": "string",
77318          "uniqueItems": true
77319        },
77320        {
77321          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
77322          "in": "query",
77323          "name": "limit",
77324          "type": "integer",
77325          "uniqueItems": true
77326        },
77327        {
77328          "description": "If 'true', then the output is pretty printed.",
77329          "in": "query",
77330          "name": "pretty",
77331          "type": "string",
77332          "uniqueItems": true
77333        },
77334        {
77335          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
77336          "in": "query",
77337          "name": "resourceVersion",
77338          "type": "string",
77339          "uniqueItems": true
77340        },
77341        {
77342          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
77343          "in": "query",
77344          "name": "resourceVersionMatch",
77345          "type": "string",
77346          "uniqueItems": true
77347        },
77348        {
77349          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
77350          "in": "query",
77351          "name": "timeoutSeconds",
77352          "type": "integer",
77353          "uniqueItems": true
77354        },
77355        {
77356          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
77357          "in": "query",
77358          "name": "watch",
77359          "type": "boolean",
77360          "uniqueItems": true
77361        }
77362      ]
77363    },
77364    "/apis/rbac.authorization.k8s.io/v1/watch/clusterroles/{name}": {
77365      "get": {
77366        "consumes": [
77367          "*/*"
77368        ],
77369        "description": "watch changes to an object of kind ClusterRole. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.",
77370        "operationId": "watchRbacAuthorizationV1ClusterRole",
77371        "produces": [
77372          "application/json",
77373          "application/yaml",
77374          "application/vnd.kubernetes.protobuf",
77375          "application/json;stream=watch",
77376          "application/vnd.kubernetes.protobuf;stream=watch"
77377        ],
77378        "responses": {
77379          "200": {
77380            "description": "OK",
77381            "schema": {
77382              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
77383            }
77384          },
77385          "401": {
77386            "description": "Unauthorized"
77387          }
77388        },
77389        "schemes": [
77390          "https"
77391        ],
77392        "tags": [
77393          "rbacAuthorization_v1"
77394        ],
77395        "x-kubernetes-action": "watch",
77396        "x-kubernetes-group-version-kind": {
77397          "group": "rbac.authorization.k8s.io",
77398          "kind": "ClusterRole",
77399          "version": "v1"
77400        }
77401      },
77402      "parameters": [
77403        {
77404          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
77405          "in": "query",
77406          "name": "allowWatchBookmarks",
77407          "type": "boolean",
77408          "uniqueItems": true
77409        },
77410        {
77411          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
77412          "in": "query",
77413          "name": "continue",
77414          "type": "string",
77415          "uniqueItems": true
77416        },
77417        {
77418          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
77419          "in": "query",
77420          "name": "fieldSelector",
77421          "type": "string",
77422          "uniqueItems": true
77423        },
77424        {
77425          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
77426          "in": "query",
77427          "name": "labelSelector",
77428          "type": "string",
77429          "uniqueItems": true
77430        },
77431        {
77432          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
77433          "in": "query",
77434          "name": "limit",
77435          "type": "integer",
77436          "uniqueItems": true
77437        },
77438        {
77439          "description": "name of the ClusterRole",
77440          "in": "path",
77441          "name": "name",
77442          "required": true,
77443          "type": "string",
77444          "uniqueItems": true
77445        },
77446        {
77447          "description": "If 'true', then the output is pretty printed.",
77448          "in": "query",
77449          "name": "pretty",
77450          "type": "string",
77451          "uniqueItems": true
77452        },
77453        {
77454          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
77455          "in": "query",
77456          "name": "resourceVersion",
77457          "type": "string",
77458          "uniqueItems": true
77459        },
77460        {
77461          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
77462          "in": "query",
77463          "name": "resourceVersionMatch",
77464          "type": "string",
77465          "uniqueItems": true
77466        },
77467        {
77468          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
77469          "in": "query",
77470          "name": "timeoutSeconds",
77471          "type": "integer",
77472          "uniqueItems": true
77473        },
77474        {
77475          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
77476          "in": "query",
77477          "name": "watch",
77478          "type": "boolean",
77479          "uniqueItems": true
77480        }
77481      ]
77482    },
77483    "/apis/rbac.authorization.k8s.io/v1/watch/namespaces/{namespace}/rolebindings": {
77484      "get": {
77485        "consumes": [
77486          "*/*"
77487        ],
77488        "description": "watch individual changes to a list of RoleBinding. deprecated: use the 'watch' parameter with a list operation instead.",
77489        "operationId": "watchRbacAuthorizationV1NamespacedRoleBindingList",
77490        "produces": [
77491          "application/json",
77492          "application/yaml",
77493          "application/vnd.kubernetes.protobuf",
77494          "application/json;stream=watch",
77495          "application/vnd.kubernetes.protobuf;stream=watch"
77496        ],
77497        "responses": {
77498          "200": {
77499            "description": "OK",
77500            "schema": {
77501              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
77502            }
77503          },
77504          "401": {
77505            "description": "Unauthorized"
77506          }
77507        },
77508        "schemes": [
77509          "https"
77510        ],
77511        "tags": [
77512          "rbacAuthorization_v1"
77513        ],
77514        "x-kubernetes-action": "watchlist",
77515        "x-kubernetes-group-version-kind": {
77516          "group": "rbac.authorization.k8s.io",
77517          "kind": "RoleBinding",
77518          "version": "v1"
77519        }
77520      },
77521      "parameters": [
77522        {
77523          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
77524          "in": "query",
77525          "name": "allowWatchBookmarks",
77526          "type": "boolean",
77527          "uniqueItems": true
77528        },
77529        {
77530          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
77531          "in": "query",
77532          "name": "continue",
77533          "type": "string",
77534          "uniqueItems": true
77535        },
77536        {
77537          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
77538          "in": "query",
77539          "name": "fieldSelector",
77540          "type": "string",
77541          "uniqueItems": true
77542        },
77543        {
77544          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
77545          "in": "query",
77546          "name": "labelSelector",
77547          "type": "string",
77548          "uniqueItems": true
77549        },
77550        {
77551          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
77552          "in": "query",
77553          "name": "limit",
77554          "type": "integer",
77555          "uniqueItems": true
77556        },
77557        {
77558          "description": "object name and auth scope, such as for teams and projects",
77559          "in": "path",
77560          "name": "namespace",
77561          "required": true,
77562          "type": "string",
77563          "uniqueItems": true
77564        },
77565        {
77566          "description": "If 'true', then the output is pretty printed.",
77567          "in": "query",
77568          "name": "pretty",
77569          "type": "string",
77570          "uniqueItems": true
77571        },
77572        {
77573          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
77574          "in": "query",
77575          "name": "resourceVersion",
77576          "type": "string",
77577          "uniqueItems": true
77578        },
77579        {
77580          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
77581          "in": "query",
77582          "name": "resourceVersionMatch",
77583          "type": "string",
77584          "uniqueItems": true
77585        },
77586        {
77587          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
77588          "in": "query",
77589          "name": "timeoutSeconds",
77590          "type": "integer",
77591          "uniqueItems": true
77592        },
77593        {
77594          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
77595          "in": "query",
77596          "name": "watch",
77597          "type": "boolean",
77598          "uniqueItems": true
77599        }
77600      ]
77601    },
77602    "/apis/rbac.authorization.k8s.io/v1/watch/namespaces/{namespace}/rolebindings/{name}": {
77603      "get": {
77604        "consumes": [
77605          "*/*"
77606        ],
77607        "description": "watch changes to an object of kind RoleBinding. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.",
77608        "operationId": "watchRbacAuthorizationV1NamespacedRoleBinding",
77609        "produces": [
77610          "application/json",
77611          "application/yaml",
77612          "application/vnd.kubernetes.protobuf",
77613          "application/json;stream=watch",
77614          "application/vnd.kubernetes.protobuf;stream=watch"
77615        ],
77616        "responses": {
77617          "200": {
77618            "description": "OK",
77619            "schema": {
77620              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
77621            }
77622          },
77623          "401": {
77624            "description": "Unauthorized"
77625          }
77626        },
77627        "schemes": [
77628          "https"
77629        ],
77630        "tags": [
77631          "rbacAuthorization_v1"
77632        ],
77633        "x-kubernetes-action": "watch",
77634        "x-kubernetes-group-version-kind": {
77635          "group": "rbac.authorization.k8s.io",
77636          "kind": "RoleBinding",
77637          "version": "v1"
77638        }
77639      },
77640      "parameters": [
77641        {
77642          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
77643          "in": "query",
77644          "name": "allowWatchBookmarks",
77645          "type": "boolean",
77646          "uniqueItems": true
77647        },
77648        {
77649          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
77650          "in": "query",
77651          "name": "continue",
77652          "type": "string",
77653          "uniqueItems": true
77654        },
77655        {
77656          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
77657          "in": "query",
77658          "name": "fieldSelector",
77659          "type": "string",
77660          "uniqueItems": true
77661        },
77662        {
77663          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
77664          "in": "query",
77665          "name": "labelSelector",
77666          "type": "string",
77667          "uniqueItems": true
77668        },
77669        {
77670          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
77671          "in": "query",
77672          "name": "limit",
77673          "type": "integer",
77674          "uniqueItems": true
77675        },
77676        {
77677          "description": "name of the RoleBinding",
77678          "in": "path",
77679          "name": "name",
77680          "required": true,
77681          "type": "string",
77682          "uniqueItems": true
77683        },
77684        {
77685          "description": "object name and auth scope, such as for teams and projects",
77686          "in": "path",
77687          "name": "namespace",
77688          "required": true,
77689          "type": "string",
77690          "uniqueItems": true
77691        },
77692        {
77693          "description": "If 'true', then the output is pretty printed.",
77694          "in": "query",
77695          "name": "pretty",
77696          "type": "string",
77697          "uniqueItems": true
77698        },
77699        {
77700          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
77701          "in": "query",
77702          "name": "resourceVersion",
77703          "type": "string",
77704          "uniqueItems": true
77705        },
77706        {
77707          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
77708          "in": "query",
77709          "name": "resourceVersionMatch",
77710          "type": "string",
77711          "uniqueItems": true
77712        },
77713        {
77714          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
77715          "in": "query",
77716          "name": "timeoutSeconds",
77717          "type": "integer",
77718          "uniqueItems": true
77719        },
77720        {
77721          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
77722          "in": "query",
77723          "name": "watch",
77724          "type": "boolean",
77725          "uniqueItems": true
77726        }
77727      ]
77728    },
77729    "/apis/rbac.authorization.k8s.io/v1/watch/namespaces/{namespace}/roles": {
77730      "get": {
77731        "consumes": [
77732          "*/*"
77733        ],
77734        "description": "watch individual changes to a list of Role. deprecated: use the 'watch' parameter with a list operation instead.",
77735        "operationId": "watchRbacAuthorizationV1NamespacedRoleList",
77736        "produces": [
77737          "application/json",
77738          "application/yaml",
77739          "application/vnd.kubernetes.protobuf",
77740          "application/json;stream=watch",
77741          "application/vnd.kubernetes.protobuf;stream=watch"
77742        ],
77743        "responses": {
77744          "200": {
77745            "description": "OK",
77746            "schema": {
77747              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
77748            }
77749          },
77750          "401": {
77751            "description": "Unauthorized"
77752          }
77753        },
77754        "schemes": [
77755          "https"
77756        ],
77757        "tags": [
77758          "rbacAuthorization_v1"
77759        ],
77760        "x-kubernetes-action": "watchlist",
77761        "x-kubernetes-group-version-kind": {
77762          "group": "rbac.authorization.k8s.io",
77763          "kind": "Role",
77764          "version": "v1"
77765        }
77766      },
77767      "parameters": [
77768        {
77769          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
77770          "in": "query",
77771          "name": "allowWatchBookmarks",
77772          "type": "boolean",
77773          "uniqueItems": true
77774        },
77775        {
77776          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
77777          "in": "query",
77778          "name": "continue",
77779          "type": "string",
77780          "uniqueItems": true
77781        },
77782        {
77783          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
77784          "in": "query",
77785          "name": "fieldSelector",
77786          "type": "string",
77787          "uniqueItems": true
77788        },
77789        {
77790          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
77791          "in": "query",
77792          "name": "labelSelector",
77793          "type": "string",
77794          "uniqueItems": true
77795        },
77796        {
77797          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
77798          "in": "query",
77799          "name": "limit",
77800          "type": "integer",
77801          "uniqueItems": true
77802        },
77803        {
77804          "description": "object name and auth scope, such as for teams and projects",
77805          "in": "path",
77806          "name": "namespace",
77807          "required": true,
77808          "type": "string",
77809          "uniqueItems": true
77810        },
77811        {
77812          "description": "If 'true', then the output is pretty printed.",
77813          "in": "query",
77814          "name": "pretty",
77815          "type": "string",
77816          "uniqueItems": true
77817        },
77818        {
77819          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
77820          "in": "query",
77821          "name": "resourceVersion",
77822          "type": "string",
77823          "uniqueItems": true
77824        },
77825        {
77826          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
77827          "in": "query",
77828          "name": "resourceVersionMatch",
77829          "type": "string",
77830          "uniqueItems": true
77831        },
77832        {
77833          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
77834          "in": "query",
77835          "name": "timeoutSeconds",
77836          "type": "integer",
77837          "uniqueItems": true
77838        },
77839        {
77840          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
77841          "in": "query",
77842          "name": "watch",
77843          "type": "boolean",
77844          "uniqueItems": true
77845        }
77846      ]
77847    },
77848    "/apis/rbac.authorization.k8s.io/v1/watch/namespaces/{namespace}/roles/{name}": {
77849      "get": {
77850        "consumes": [
77851          "*/*"
77852        ],
77853        "description": "watch changes to an object of kind Role. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.",
77854        "operationId": "watchRbacAuthorizationV1NamespacedRole",
77855        "produces": [
77856          "application/json",
77857          "application/yaml",
77858          "application/vnd.kubernetes.protobuf",
77859          "application/json;stream=watch",
77860          "application/vnd.kubernetes.protobuf;stream=watch"
77861        ],
77862        "responses": {
77863          "200": {
77864            "description": "OK",
77865            "schema": {
77866              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
77867            }
77868          },
77869          "401": {
77870            "description": "Unauthorized"
77871          }
77872        },
77873        "schemes": [
77874          "https"
77875        ],
77876        "tags": [
77877          "rbacAuthorization_v1"
77878        ],
77879        "x-kubernetes-action": "watch",
77880        "x-kubernetes-group-version-kind": {
77881          "group": "rbac.authorization.k8s.io",
77882          "kind": "Role",
77883          "version": "v1"
77884        }
77885      },
77886      "parameters": [
77887        {
77888          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
77889          "in": "query",
77890          "name": "allowWatchBookmarks",
77891          "type": "boolean",
77892          "uniqueItems": true
77893        },
77894        {
77895          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
77896          "in": "query",
77897          "name": "continue",
77898          "type": "string",
77899          "uniqueItems": true
77900        },
77901        {
77902          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
77903          "in": "query",
77904          "name": "fieldSelector",
77905          "type": "string",
77906          "uniqueItems": true
77907        },
77908        {
77909          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
77910          "in": "query",
77911          "name": "labelSelector",
77912          "type": "string",
77913          "uniqueItems": true
77914        },
77915        {
77916          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
77917          "in": "query",
77918          "name": "limit",
77919          "type": "integer",
77920          "uniqueItems": true
77921        },
77922        {
77923          "description": "name of the Role",
77924          "in": "path",
77925          "name": "name",
77926          "required": true,
77927          "type": "string",
77928          "uniqueItems": true
77929        },
77930        {
77931          "description": "object name and auth scope, such as for teams and projects",
77932          "in": "path",
77933          "name": "namespace",
77934          "required": true,
77935          "type": "string",
77936          "uniqueItems": true
77937        },
77938        {
77939          "description": "If 'true', then the output is pretty printed.",
77940          "in": "query",
77941          "name": "pretty",
77942          "type": "string",
77943          "uniqueItems": true
77944        },
77945        {
77946          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
77947          "in": "query",
77948          "name": "resourceVersion",
77949          "type": "string",
77950          "uniqueItems": true
77951        },
77952        {
77953          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
77954          "in": "query",
77955          "name": "resourceVersionMatch",
77956          "type": "string",
77957          "uniqueItems": true
77958        },
77959        {
77960          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
77961          "in": "query",
77962          "name": "timeoutSeconds",
77963          "type": "integer",
77964          "uniqueItems": true
77965        },
77966        {
77967          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
77968          "in": "query",
77969          "name": "watch",
77970          "type": "boolean",
77971          "uniqueItems": true
77972        }
77973      ]
77974    },
77975    "/apis/rbac.authorization.k8s.io/v1/watch/rolebindings": {
77976      "get": {
77977        "consumes": [
77978          "*/*"
77979        ],
77980        "description": "watch individual changes to a list of RoleBinding. deprecated: use the 'watch' parameter with a list operation instead.",
77981        "operationId": "watchRbacAuthorizationV1RoleBindingListForAllNamespaces",
77982        "produces": [
77983          "application/json",
77984          "application/yaml",
77985          "application/vnd.kubernetes.protobuf",
77986          "application/json;stream=watch",
77987          "application/vnd.kubernetes.protobuf;stream=watch"
77988        ],
77989        "responses": {
77990          "200": {
77991            "description": "OK",
77992            "schema": {
77993              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
77994            }
77995          },
77996          "401": {
77997            "description": "Unauthorized"
77998          }
77999        },
78000        "schemes": [
78001          "https"
78002        ],
78003        "tags": [
78004          "rbacAuthorization_v1"
78005        ],
78006        "x-kubernetes-action": "watchlist",
78007        "x-kubernetes-group-version-kind": {
78008          "group": "rbac.authorization.k8s.io",
78009          "kind": "RoleBinding",
78010          "version": "v1"
78011        }
78012      },
78013      "parameters": [
78014        {
78015          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
78016          "in": "query",
78017          "name": "allowWatchBookmarks",
78018          "type": "boolean",
78019          "uniqueItems": true
78020        },
78021        {
78022          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
78023          "in": "query",
78024          "name": "continue",
78025          "type": "string",
78026          "uniqueItems": true
78027        },
78028        {
78029          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
78030          "in": "query",
78031          "name": "fieldSelector",
78032          "type": "string",
78033          "uniqueItems": true
78034        },
78035        {
78036          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
78037          "in": "query",
78038          "name": "labelSelector",
78039          "type": "string",
78040          "uniqueItems": true
78041        },
78042        {
78043          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
78044          "in": "query",
78045          "name": "limit",
78046          "type": "integer",
78047          "uniqueItems": true
78048        },
78049        {
78050          "description": "If 'true', then the output is pretty printed.",
78051          "in": "query",
78052          "name": "pretty",
78053          "type": "string",
78054          "uniqueItems": true
78055        },
78056        {
78057          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
78058          "in": "query",
78059          "name": "resourceVersion",
78060          "type": "string",
78061          "uniqueItems": true
78062        },
78063        {
78064          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
78065          "in": "query",
78066          "name": "resourceVersionMatch",
78067          "type": "string",
78068          "uniqueItems": true
78069        },
78070        {
78071          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
78072          "in": "query",
78073          "name": "timeoutSeconds",
78074          "type": "integer",
78075          "uniqueItems": true
78076        },
78077        {
78078          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
78079          "in": "query",
78080          "name": "watch",
78081          "type": "boolean",
78082          "uniqueItems": true
78083        }
78084      ]
78085    },
78086    "/apis/rbac.authorization.k8s.io/v1/watch/roles": {
78087      "get": {
78088        "consumes": [
78089          "*/*"
78090        ],
78091        "description": "watch individual changes to a list of Role. deprecated: use the 'watch' parameter with a list operation instead.",
78092        "operationId": "watchRbacAuthorizationV1RoleListForAllNamespaces",
78093        "produces": [
78094          "application/json",
78095          "application/yaml",
78096          "application/vnd.kubernetes.protobuf",
78097          "application/json;stream=watch",
78098          "application/vnd.kubernetes.protobuf;stream=watch"
78099        ],
78100        "responses": {
78101          "200": {
78102            "description": "OK",
78103            "schema": {
78104              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
78105            }
78106          },
78107          "401": {
78108            "description": "Unauthorized"
78109          }
78110        },
78111        "schemes": [
78112          "https"
78113        ],
78114        "tags": [
78115          "rbacAuthorization_v1"
78116        ],
78117        "x-kubernetes-action": "watchlist",
78118        "x-kubernetes-group-version-kind": {
78119          "group": "rbac.authorization.k8s.io",
78120          "kind": "Role",
78121          "version": "v1"
78122        }
78123      },
78124      "parameters": [
78125        {
78126          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
78127          "in": "query",
78128          "name": "allowWatchBookmarks",
78129          "type": "boolean",
78130          "uniqueItems": true
78131        },
78132        {
78133          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
78134          "in": "query",
78135          "name": "continue",
78136          "type": "string",
78137          "uniqueItems": true
78138        },
78139        {
78140          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
78141          "in": "query",
78142          "name": "fieldSelector",
78143          "type": "string",
78144          "uniqueItems": true
78145        },
78146        {
78147          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
78148          "in": "query",
78149          "name": "labelSelector",
78150          "type": "string",
78151          "uniqueItems": true
78152        },
78153        {
78154          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
78155          "in": "query",
78156          "name": "limit",
78157          "type": "integer",
78158          "uniqueItems": true
78159        },
78160        {
78161          "description": "If 'true', then the output is pretty printed.",
78162          "in": "query",
78163          "name": "pretty",
78164          "type": "string",
78165          "uniqueItems": true
78166        },
78167        {
78168          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
78169          "in": "query",
78170          "name": "resourceVersion",
78171          "type": "string",
78172          "uniqueItems": true
78173        },
78174        {
78175          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
78176          "in": "query",
78177          "name": "resourceVersionMatch",
78178          "type": "string",
78179          "uniqueItems": true
78180        },
78181        {
78182          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
78183          "in": "query",
78184          "name": "timeoutSeconds",
78185          "type": "integer",
78186          "uniqueItems": true
78187        },
78188        {
78189          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
78190          "in": "query",
78191          "name": "watch",
78192          "type": "boolean",
78193          "uniqueItems": true
78194        }
78195      ]
78196    },
78197    "/apis/rbac.authorization.k8s.io/v1alpha1/": {
78198      "get": {
78199        "consumes": [
78200          "application/json",
78201          "application/yaml",
78202          "application/vnd.kubernetes.protobuf"
78203        ],
78204        "description": "get available resources",
78205        "operationId": "getRbacAuthorizationV1alpha1APIResources",
78206        "produces": [
78207          "application/json",
78208          "application/yaml",
78209          "application/vnd.kubernetes.protobuf"
78210        ],
78211        "responses": {
78212          "200": {
78213            "description": "OK",
78214            "schema": {
78215              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
78216            }
78217          },
78218          "401": {
78219            "description": "Unauthorized"
78220          }
78221        },
78222        "schemes": [
78223          "https"
78224        ],
78225        "tags": [
78226          "rbacAuthorization_v1alpha1"
78227        ]
78228      }
78229    },
78230    "/apis/rbac.authorization.k8s.io/v1alpha1/clusterrolebindings": {
78231      "delete": {
78232        "consumes": [
78233          "*/*"
78234        ],
78235        "description": "delete collection of ClusterRoleBinding",
78236        "operationId": "deleteRbacAuthorizationV1alpha1CollectionClusterRoleBinding",
78237        "parameters": [
78238          {
78239            "in": "body",
78240            "name": "body",
78241            "schema": {
78242              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
78243            }
78244          },
78245          {
78246            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
78247            "in": "query",
78248            "name": "continue",
78249            "type": "string",
78250            "uniqueItems": true
78251          },
78252          {
78253            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
78254            "in": "query",
78255            "name": "dryRun",
78256            "type": "string",
78257            "uniqueItems": true
78258          },
78259          {
78260            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
78261            "in": "query",
78262            "name": "fieldSelector",
78263            "type": "string",
78264            "uniqueItems": true
78265          },
78266          {
78267            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
78268            "in": "query",
78269            "name": "gracePeriodSeconds",
78270            "type": "integer",
78271            "uniqueItems": true
78272          },
78273          {
78274            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
78275            "in": "query",
78276            "name": "labelSelector",
78277            "type": "string",
78278            "uniqueItems": true
78279          },
78280          {
78281            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
78282            "in": "query",
78283            "name": "limit",
78284            "type": "integer",
78285            "uniqueItems": true
78286          },
78287          {
78288            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
78289            "in": "query",
78290            "name": "orphanDependents",
78291            "type": "boolean",
78292            "uniqueItems": true
78293          },
78294          {
78295            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
78296            "in": "query",
78297            "name": "propagationPolicy",
78298            "type": "string",
78299            "uniqueItems": true
78300          },
78301          {
78302            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
78303            "in": "query",
78304            "name": "resourceVersion",
78305            "type": "string",
78306            "uniqueItems": true
78307          },
78308          {
78309            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
78310            "in": "query",
78311            "name": "resourceVersionMatch",
78312            "type": "string",
78313            "uniqueItems": true
78314          },
78315          {
78316            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
78317            "in": "query",
78318            "name": "timeoutSeconds",
78319            "type": "integer",
78320            "uniqueItems": true
78321          }
78322        ],
78323        "produces": [
78324          "application/json",
78325          "application/yaml",
78326          "application/vnd.kubernetes.protobuf"
78327        ],
78328        "responses": {
78329          "200": {
78330            "description": "OK",
78331            "schema": {
78332              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
78333            }
78334          },
78335          "401": {
78336            "description": "Unauthorized"
78337          }
78338        },
78339        "schemes": [
78340          "https"
78341        ],
78342        "tags": [
78343          "rbacAuthorization_v1alpha1"
78344        ],
78345        "x-kubernetes-action": "deletecollection",
78346        "x-kubernetes-group-version-kind": {
78347          "group": "rbac.authorization.k8s.io",
78348          "kind": "ClusterRoleBinding",
78349          "version": "v1alpha1"
78350        }
78351      },
78352      "get": {
78353        "consumes": [
78354          "*/*"
78355        ],
78356        "description": "list or watch objects of kind ClusterRoleBinding",
78357        "operationId": "listRbacAuthorizationV1alpha1ClusterRoleBinding",
78358        "parameters": [
78359          {
78360            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
78361            "in": "query",
78362            "name": "allowWatchBookmarks",
78363            "type": "boolean",
78364            "uniqueItems": true
78365          },
78366          {
78367            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
78368            "in": "query",
78369            "name": "continue",
78370            "type": "string",
78371            "uniqueItems": true
78372          },
78373          {
78374            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
78375            "in": "query",
78376            "name": "fieldSelector",
78377            "type": "string",
78378            "uniqueItems": true
78379          },
78380          {
78381            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
78382            "in": "query",
78383            "name": "labelSelector",
78384            "type": "string",
78385            "uniqueItems": true
78386          },
78387          {
78388            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
78389            "in": "query",
78390            "name": "limit",
78391            "type": "integer",
78392            "uniqueItems": true
78393          },
78394          {
78395            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
78396            "in": "query",
78397            "name": "resourceVersion",
78398            "type": "string",
78399            "uniqueItems": true
78400          },
78401          {
78402            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
78403            "in": "query",
78404            "name": "resourceVersionMatch",
78405            "type": "string",
78406            "uniqueItems": true
78407          },
78408          {
78409            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
78410            "in": "query",
78411            "name": "timeoutSeconds",
78412            "type": "integer",
78413            "uniqueItems": true
78414          },
78415          {
78416            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
78417            "in": "query",
78418            "name": "watch",
78419            "type": "boolean",
78420            "uniqueItems": true
78421          }
78422        ],
78423        "produces": [
78424          "application/json",
78425          "application/yaml",
78426          "application/vnd.kubernetes.protobuf",
78427          "application/json;stream=watch",
78428          "application/vnd.kubernetes.protobuf;stream=watch"
78429        ],
78430        "responses": {
78431          "200": {
78432            "description": "OK",
78433            "schema": {
78434              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.ClusterRoleBindingList"
78435            }
78436          },
78437          "401": {
78438            "description": "Unauthorized"
78439          }
78440        },
78441        "schemes": [
78442          "https"
78443        ],
78444        "tags": [
78445          "rbacAuthorization_v1alpha1"
78446        ],
78447        "x-kubernetes-action": "list",
78448        "x-kubernetes-group-version-kind": {
78449          "group": "rbac.authorization.k8s.io",
78450          "kind": "ClusterRoleBinding",
78451          "version": "v1alpha1"
78452        }
78453      },
78454      "parameters": [
78455        {
78456          "description": "If 'true', then the output is pretty printed.",
78457          "in": "query",
78458          "name": "pretty",
78459          "type": "string",
78460          "uniqueItems": true
78461        }
78462      ],
78463      "post": {
78464        "consumes": [
78465          "*/*"
78466        ],
78467        "description": "create a ClusterRoleBinding",
78468        "operationId": "createRbacAuthorizationV1alpha1ClusterRoleBinding",
78469        "parameters": [
78470          {
78471            "in": "body",
78472            "name": "body",
78473            "required": true,
78474            "schema": {
78475              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.ClusterRoleBinding"
78476            }
78477          },
78478          {
78479            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
78480            "in": "query",
78481            "name": "dryRun",
78482            "type": "string",
78483            "uniqueItems": true
78484          },
78485          {
78486            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
78487            "in": "query",
78488            "name": "fieldManager",
78489            "type": "string",
78490            "uniqueItems": true
78491          }
78492        ],
78493        "produces": [
78494          "application/json",
78495          "application/yaml",
78496          "application/vnd.kubernetes.protobuf"
78497        ],
78498        "responses": {
78499          "200": {
78500            "description": "OK",
78501            "schema": {
78502              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.ClusterRoleBinding"
78503            }
78504          },
78505          "201": {
78506            "description": "Created",
78507            "schema": {
78508              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.ClusterRoleBinding"
78509            }
78510          },
78511          "202": {
78512            "description": "Accepted",
78513            "schema": {
78514              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.ClusterRoleBinding"
78515            }
78516          },
78517          "401": {
78518            "description": "Unauthorized"
78519          }
78520        },
78521        "schemes": [
78522          "https"
78523        ],
78524        "tags": [
78525          "rbacAuthorization_v1alpha1"
78526        ],
78527        "x-kubernetes-action": "post",
78528        "x-kubernetes-group-version-kind": {
78529          "group": "rbac.authorization.k8s.io",
78530          "kind": "ClusterRoleBinding",
78531          "version": "v1alpha1"
78532        }
78533      }
78534    },
78535    "/apis/rbac.authorization.k8s.io/v1alpha1/clusterrolebindings/{name}": {
78536      "delete": {
78537        "consumes": [
78538          "*/*"
78539        ],
78540        "description": "delete a ClusterRoleBinding",
78541        "operationId": "deleteRbacAuthorizationV1alpha1ClusterRoleBinding",
78542        "parameters": [
78543          {
78544            "in": "body",
78545            "name": "body",
78546            "schema": {
78547              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
78548            }
78549          },
78550          {
78551            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
78552            "in": "query",
78553            "name": "dryRun",
78554            "type": "string",
78555            "uniqueItems": true
78556          },
78557          {
78558            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
78559            "in": "query",
78560            "name": "gracePeriodSeconds",
78561            "type": "integer",
78562            "uniqueItems": true
78563          },
78564          {
78565            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
78566            "in": "query",
78567            "name": "orphanDependents",
78568            "type": "boolean",
78569            "uniqueItems": true
78570          },
78571          {
78572            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
78573            "in": "query",
78574            "name": "propagationPolicy",
78575            "type": "string",
78576            "uniqueItems": true
78577          }
78578        ],
78579        "produces": [
78580          "application/json",
78581          "application/yaml",
78582          "application/vnd.kubernetes.protobuf"
78583        ],
78584        "responses": {
78585          "200": {
78586            "description": "OK",
78587            "schema": {
78588              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
78589            }
78590          },
78591          "202": {
78592            "description": "Accepted",
78593            "schema": {
78594              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
78595            }
78596          },
78597          "401": {
78598            "description": "Unauthorized"
78599          }
78600        },
78601        "schemes": [
78602          "https"
78603        ],
78604        "tags": [
78605          "rbacAuthorization_v1alpha1"
78606        ],
78607        "x-kubernetes-action": "delete",
78608        "x-kubernetes-group-version-kind": {
78609          "group": "rbac.authorization.k8s.io",
78610          "kind": "ClusterRoleBinding",
78611          "version": "v1alpha1"
78612        }
78613      },
78614      "get": {
78615        "consumes": [
78616          "*/*"
78617        ],
78618        "description": "read the specified ClusterRoleBinding",
78619        "operationId": "readRbacAuthorizationV1alpha1ClusterRoleBinding",
78620        "produces": [
78621          "application/json",
78622          "application/yaml",
78623          "application/vnd.kubernetes.protobuf"
78624        ],
78625        "responses": {
78626          "200": {
78627            "description": "OK",
78628            "schema": {
78629              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.ClusterRoleBinding"
78630            }
78631          },
78632          "401": {
78633            "description": "Unauthorized"
78634          }
78635        },
78636        "schemes": [
78637          "https"
78638        ],
78639        "tags": [
78640          "rbacAuthorization_v1alpha1"
78641        ],
78642        "x-kubernetes-action": "get",
78643        "x-kubernetes-group-version-kind": {
78644          "group": "rbac.authorization.k8s.io",
78645          "kind": "ClusterRoleBinding",
78646          "version": "v1alpha1"
78647        }
78648      },
78649      "parameters": [
78650        {
78651          "description": "name of the ClusterRoleBinding",
78652          "in": "path",
78653          "name": "name",
78654          "required": true,
78655          "type": "string",
78656          "uniqueItems": true
78657        },
78658        {
78659          "description": "If 'true', then the output is pretty printed.",
78660          "in": "query",
78661          "name": "pretty",
78662          "type": "string",
78663          "uniqueItems": true
78664        }
78665      ],
78666      "patch": {
78667        "consumes": [
78668          "application/json-patch+json",
78669          "application/merge-patch+json",
78670          "application/strategic-merge-patch+json",
78671          "application/apply-patch+yaml"
78672        ],
78673        "description": "partially update the specified ClusterRoleBinding",
78674        "operationId": "patchRbacAuthorizationV1alpha1ClusterRoleBinding",
78675        "parameters": [
78676          {
78677            "in": "body",
78678            "name": "body",
78679            "required": true,
78680            "schema": {
78681              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
78682            }
78683          },
78684          {
78685            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
78686            "in": "query",
78687            "name": "dryRun",
78688            "type": "string",
78689            "uniqueItems": true
78690          },
78691          {
78692            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
78693            "in": "query",
78694            "name": "fieldManager",
78695            "type": "string",
78696            "uniqueItems": true
78697          },
78698          {
78699            "description": "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.",
78700            "in": "query",
78701            "name": "force",
78702            "type": "boolean",
78703            "uniqueItems": true
78704          }
78705        ],
78706        "produces": [
78707          "application/json",
78708          "application/yaml",
78709          "application/vnd.kubernetes.protobuf"
78710        ],
78711        "responses": {
78712          "200": {
78713            "description": "OK",
78714            "schema": {
78715              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.ClusterRoleBinding"
78716            }
78717          },
78718          "201": {
78719            "description": "Created",
78720            "schema": {
78721              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.ClusterRoleBinding"
78722            }
78723          },
78724          "401": {
78725            "description": "Unauthorized"
78726          }
78727        },
78728        "schemes": [
78729          "https"
78730        ],
78731        "tags": [
78732          "rbacAuthorization_v1alpha1"
78733        ],
78734        "x-kubernetes-action": "patch",
78735        "x-kubernetes-group-version-kind": {
78736          "group": "rbac.authorization.k8s.io",
78737          "kind": "ClusterRoleBinding",
78738          "version": "v1alpha1"
78739        }
78740      },
78741      "put": {
78742        "consumes": [
78743          "*/*"
78744        ],
78745        "description": "replace the specified ClusterRoleBinding",
78746        "operationId": "replaceRbacAuthorizationV1alpha1ClusterRoleBinding",
78747        "parameters": [
78748          {
78749            "in": "body",
78750            "name": "body",
78751            "required": true,
78752            "schema": {
78753              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.ClusterRoleBinding"
78754            }
78755          },
78756          {
78757            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
78758            "in": "query",
78759            "name": "dryRun",
78760            "type": "string",
78761            "uniqueItems": true
78762          },
78763          {
78764            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
78765            "in": "query",
78766            "name": "fieldManager",
78767            "type": "string",
78768            "uniqueItems": true
78769          }
78770        ],
78771        "produces": [
78772          "application/json",
78773          "application/yaml",
78774          "application/vnd.kubernetes.protobuf"
78775        ],
78776        "responses": {
78777          "200": {
78778            "description": "OK",
78779            "schema": {
78780              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.ClusterRoleBinding"
78781            }
78782          },
78783          "201": {
78784            "description": "Created",
78785            "schema": {
78786              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.ClusterRoleBinding"
78787            }
78788          },
78789          "401": {
78790            "description": "Unauthorized"
78791          }
78792        },
78793        "schemes": [
78794          "https"
78795        ],
78796        "tags": [
78797          "rbacAuthorization_v1alpha1"
78798        ],
78799        "x-kubernetes-action": "put",
78800        "x-kubernetes-group-version-kind": {
78801          "group": "rbac.authorization.k8s.io",
78802          "kind": "ClusterRoleBinding",
78803          "version": "v1alpha1"
78804        }
78805      }
78806    },
78807    "/apis/rbac.authorization.k8s.io/v1alpha1/clusterroles": {
78808      "delete": {
78809        "consumes": [
78810          "*/*"
78811        ],
78812        "description": "delete collection of ClusterRole",
78813        "operationId": "deleteRbacAuthorizationV1alpha1CollectionClusterRole",
78814        "parameters": [
78815          {
78816            "in": "body",
78817            "name": "body",
78818            "schema": {
78819              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
78820            }
78821          },
78822          {
78823            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
78824            "in": "query",
78825            "name": "continue",
78826            "type": "string",
78827            "uniqueItems": true
78828          },
78829          {
78830            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
78831            "in": "query",
78832            "name": "dryRun",
78833            "type": "string",
78834            "uniqueItems": true
78835          },
78836          {
78837            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
78838            "in": "query",
78839            "name": "fieldSelector",
78840            "type": "string",
78841            "uniqueItems": true
78842          },
78843          {
78844            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
78845            "in": "query",
78846            "name": "gracePeriodSeconds",
78847            "type": "integer",
78848            "uniqueItems": true
78849          },
78850          {
78851            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
78852            "in": "query",
78853            "name": "labelSelector",
78854            "type": "string",
78855            "uniqueItems": true
78856          },
78857          {
78858            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
78859            "in": "query",
78860            "name": "limit",
78861            "type": "integer",
78862            "uniqueItems": true
78863          },
78864          {
78865            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
78866            "in": "query",
78867            "name": "orphanDependents",
78868            "type": "boolean",
78869            "uniqueItems": true
78870          },
78871          {
78872            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
78873            "in": "query",
78874            "name": "propagationPolicy",
78875            "type": "string",
78876            "uniqueItems": true
78877          },
78878          {
78879            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
78880            "in": "query",
78881            "name": "resourceVersion",
78882            "type": "string",
78883            "uniqueItems": true
78884          },
78885          {
78886            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
78887            "in": "query",
78888            "name": "resourceVersionMatch",
78889            "type": "string",
78890            "uniqueItems": true
78891          },
78892          {
78893            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
78894            "in": "query",
78895            "name": "timeoutSeconds",
78896            "type": "integer",
78897            "uniqueItems": true
78898          }
78899        ],
78900        "produces": [
78901          "application/json",
78902          "application/yaml",
78903          "application/vnd.kubernetes.protobuf"
78904        ],
78905        "responses": {
78906          "200": {
78907            "description": "OK",
78908            "schema": {
78909              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
78910            }
78911          },
78912          "401": {
78913            "description": "Unauthorized"
78914          }
78915        },
78916        "schemes": [
78917          "https"
78918        ],
78919        "tags": [
78920          "rbacAuthorization_v1alpha1"
78921        ],
78922        "x-kubernetes-action": "deletecollection",
78923        "x-kubernetes-group-version-kind": {
78924          "group": "rbac.authorization.k8s.io",
78925          "kind": "ClusterRole",
78926          "version": "v1alpha1"
78927        }
78928      },
78929      "get": {
78930        "consumes": [
78931          "*/*"
78932        ],
78933        "description": "list or watch objects of kind ClusterRole",
78934        "operationId": "listRbacAuthorizationV1alpha1ClusterRole",
78935        "parameters": [
78936          {
78937            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
78938            "in": "query",
78939            "name": "allowWatchBookmarks",
78940            "type": "boolean",
78941            "uniqueItems": true
78942          },
78943          {
78944            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
78945            "in": "query",
78946            "name": "continue",
78947            "type": "string",
78948            "uniqueItems": true
78949          },
78950          {
78951            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
78952            "in": "query",
78953            "name": "fieldSelector",
78954            "type": "string",
78955            "uniqueItems": true
78956          },
78957          {
78958            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
78959            "in": "query",
78960            "name": "labelSelector",
78961            "type": "string",
78962            "uniqueItems": true
78963          },
78964          {
78965            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
78966            "in": "query",
78967            "name": "limit",
78968            "type": "integer",
78969            "uniqueItems": true
78970          },
78971          {
78972            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
78973            "in": "query",
78974            "name": "resourceVersion",
78975            "type": "string",
78976            "uniqueItems": true
78977          },
78978          {
78979            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
78980            "in": "query",
78981            "name": "resourceVersionMatch",
78982            "type": "string",
78983            "uniqueItems": true
78984          },
78985          {
78986            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
78987            "in": "query",
78988            "name": "timeoutSeconds",
78989            "type": "integer",
78990            "uniqueItems": true
78991          },
78992          {
78993            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
78994            "in": "query",
78995            "name": "watch",
78996            "type": "boolean",
78997            "uniqueItems": true
78998          }
78999        ],
79000        "produces": [
79001          "application/json",
79002          "application/yaml",
79003          "application/vnd.kubernetes.protobuf",
79004          "application/json;stream=watch",
79005          "application/vnd.kubernetes.protobuf;stream=watch"
79006        ],
79007        "responses": {
79008          "200": {
79009            "description": "OK",
79010            "schema": {
79011              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.ClusterRoleList"
79012            }
79013          },
79014          "401": {
79015            "description": "Unauthorized"
79016          }
79017        },
79018        "schemes": [
79019          "https"
79020        ],
79021        "tags": [
79022          "rbacAuthorization_v1alpha1"
79023        ],
79024        "x-kubernetes-action": "list",
79025        "x-kubernetes-group-version-kind": {
79026          "group": "rbac.authorization.k8s.io",
79027          "kind": "ClusterRole",
79028          "version": "v1alpha1"
79029        }
79030      },
79031      "parameters": [
79032        {
79033          "description": "If 'true', then the output is pretty printed.",
79034          "in": "query",
79035          "name": "pretty",
79036          "type": "string",
79037          "uniqueItems": true
79038        }
79039      ],
79040      "post": {
79041        "consumes": [
79042          "*/*"
79043        ],
79044        "description": "create a ClusterRole",
79045        "operationId": "createRbacAuthorizationV1alpha1ClusterRole",
79046        "parameters": [
79047          {
79048            "in": "body",
79049            "name": "body",
79050            "required": true,
79051            "schema": {
79052              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.ClusterRole"
79053            }
79054          },
79055          {
79056            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
79057            "in": "query",
79058            "name": "dryRun",
79059            "type": "string",
79060            "uniqueItems": true
79061          },
79062          {
79063            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
79064            "in": "query",
79065            "name": "fieldManager",
79066            "type": "string",
79067            "uniqueItems": true
79068          }
79069        ],
79070        "produces": [
79071          "application/json",
79072          "application/yaml",
79073          "application/vnd.kubernetes.protobuf"
79074        ],
79075        "responses": {
79076          "200": {
79077            "description": "OK",
79078            "schema": {
79079              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.ClusterRole"
79080            }
79081          },
79082          "201": {
79083            "description": "Created",
79084            "schema": {
79085              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.ClusterRole"
79086            }
79087          },
79088          "202": {
79089            "description": "Accepted",
79090            "schema": {
79091              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.ClusterRole"
79092            }
79093          },
79094          "401": {
79095            "description": "Unauthorized"
79096          }
79097        },
79098        "schemes": [
79099          "https"
79100        ],
79101        "tags": [
79102          "rbacAuthorization_v1alpha1"
79103        ],
79104        "x-kubernetes-action": "post",
79105        "x-kubernetes-group-version-kind": {
79106          "group": "rbac.authorization.k8s.io",
79107          "kind": "ClusterRole",
79108          "version": "v1alpha1"
79109        }
79110      }
79111    },
79112    "/apis/rbac.authorization.k8s.io/v1alpha1/clusterroles/{name}": {
79113      "delete": {
79114        "consumes": [
79115          "*/*"
79116        ],
79117        "description": "delete a ClusterRole",
79118        "operationId": "deleteRbacAuthorizationV1alpha1ClusterRole",
79119        "parameters": [
79120          {
79121            "in": "body",
79122            "name": "body",
79123            "schema": {
79124              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
79125            }
79126          },
79127          {
79128            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
79129            "in": "query",
79130            "name": "dryRun",
79131            "type": "string",
79132            "uniqueItems": true
79133          },
79134          {
79135            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
79136            "in": "query",
79137            "name": "gracePeriodSeconds",
79138            "type": "integer",
79139            "uniqueItems": true
79140          },
79141          {
79142            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
79143            "in": "query",
79144            "name": "orphanDependents",
79145            "type": "boolean",
79146            "uniqueItems": true
79147          },
79148          {
79149            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
79150            "in": "query",
79151            "name": "propagationPolicy",
79152            "type": "string",
79153            "uniqueItems": true
79154          }
79155        ],
79156        "produces": [
79157          "application/json",
79158          "application/yaml",
79159          "application/vnd.kubernetes.protobuf"
79160        ],
79161        "responses": {
79162          "200": {
79163            "description": "OK",
79164            "schema": {
79165              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
79166            }
79167          },
79168          "202": {
79169            "description": "Accepted",
79170            "schema": {
79171              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
79172            }
79173          },
79174          "401": {
79175            "description": "Unauthorized"
79176          }
79177        },
79178        "schemes": [
79179          "https"
79180        ],
79181        "tags": [
79182          "rbacAuthorization_v1alpha1"
79183        ],
79184        "x-kubernetes-action": "delete",
79185        "x-kubernetes-group-version-kind": {
79186          "group": "rbac.authorization.k8s.io",
79187          "kind": "ClusterRole",
79188          "version": "v1alpha1"
79189        }
79190      },
79191      "get": {
79192        "consumes": [
79193          "*/*"
79194        ],
79195        "description": "read the specified ClusterRole",
79196        "operationId": "readRbacAuthorizationV1alpha1ClusterRole",
79197        "produces": [
79198          "application/json",
79199          "application/yaml",
79200          "application/vnd.kubernetes.protobuf"
79201        ],
79202        "responses": {
79203          "200": {
79204            "description": "OK",
79205            "schema": {
79206              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.ClusterRole"
79207            }
79208          },
79209          "401": {
79210            "description": "Unauthorized"
79211          }
79212        },
79213        "schemes": [
79214          "https"
79215        ],
79216        "tags": [
79217          "rbacAuthorization_v1alpha1"
79218        ],
79219        "x-kubernetes-action": "get",
79220        "x-kubernetes-group-version-kind": {
79221          "group": "rbac.authorization.k8s.io",
79222          "kind": "ClusterRole",
79223          "version": "v1alpha1"
79224        }
79225      },
79226      "parameters": [
79227        {
79228          "description": "name of the ClusterRole",
79229          "in": "path",
79230          "name": "name",
79231          "required": true,
79232          "type": "string",
79233          "uniqueItems": true
79234        },
79235        {
79236          "description": "If 'true', then the output is pretty printed.",
79237          "in": "query",
79238          "name": "pretty",
79239          "type": "string",
79240          "uniqueItems": true
79241        }
79242      ],
79243      "patch": {
79244        "consumes": [
79245          "application/json-patch+json",
79246          "application/merge-patch+json",
79247          "application/strategic-merge-patch+json",
79248          "application/apply-patch+yaml"
79249        ],
79250        "description": "partially update the specified ClusterRole",
79251        "operationId": "patchRbacAuthorizationV1alpha1ClusterRole",
79252        "parameters": [
79253          {
79254            "in": "body",
79255            "name": "body",
79256            "required": true,
79257            "schema": {
79258              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
79259            }
79260          },
79261          {
79262            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
79263            "in": "query",
79264            "name": "dryRun",
79265            "type": "string",
79266            "uniqueItems": true
79267          },
79268          {
79269            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
79270            "in": "query",
79271            "name": "fieldManager",
79272            "type": "string",
79273            "uniqueItems": true
79274          },
79275          {
79276            "description": "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.",
79277            "in": "query",
79278            "name": "force",
79279            "type": "boolean",
79280            "uniqueItems": true
79281          }
79282        ],
79283        "produces": [
79284          "application/json",
79285          "application/yaml",
79286          "application/vnd.kubernetes.protobuf"
79287        ],
79288        "responses": {
79289          "200": {
79290            "description": "OK",
79291            "schema": {
79292              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.ClusterRole"
79293            }
79294          },
79295          "201": {
79296            "description": "Created",
79297            "schema": {
79298              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.ClusterRole"
79299            }
79300          },
79301          "401": {
79302            "description": "Unauthorized"
79303          }
79304        },
79305        "schemes": [
79306          "https"
79307        ],
79308        "tags": [
79309          "rbacAuthorization_v1alpha1"
79310        ],
79311        "x-kubernetes-action": "patch",
79312        "x-kubernetes-group-version-kind": {
79313          "group": "rbac.authorization.k8s.io",
79314          "kind": "ClusterRole",
79315          "version": "v1alpha1"
79316        }
79317      },
79318      "put": {
79319        "consumes": [
79320          "*/*"
79321        ],
79322        "description": "replace the specified ClusterRole",
79323        "operationId": "replaceRbacAuthorizationV1alpha1ClusterRole",
79324        "parameters": [
79325          {
79326            "in": "body",
79327            "name": "body",
79328            "required": true,
79329            "schema": {
79330              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.ClusterRole"
79331            }
79332          },
79333          {
79334            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
79335            "in": "query",
79336            "name": "dryRun",
79337            "type": "string",
79338            "uniqueItems": true
79339          },
79340          {
79341            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
79342            "in": "query",
79343            "name": "fieldManager",
79344            "type": "string",
79345            "uniqueItems": true
79346          }
79347        ],
79348        "produces": [
79349          "application/json",
79350          "application/yaml",
79351          "application/vnd.kubernetes.protobuf"
79352        ],
79353        "responses": {
79354          "200": {
79355            "description": "OK",
79356            "schema": {
79357              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.ClusterRole"
79358            }
79359          },
79360          "201": {
79361            "description": "Created",
79362            "schema": {
79363              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.ClusterRole"
79364            }
79365          },
79366          "401": {
79367            "description": "Unauthorized"
79368          }
79369        },
79370        "schemes": [
79371          "https"
79372        ],
79373        "tags": [
79374          "rbacAuthorization_v1alpha1"
79375        ],
79376        "x-kubernetes-action": "put",
79377        "x-kubernetes-group-version-kind": {
79378          "group": "rbac.authorization.k8s.io",
79379          "kind": "ClusterRole",
79380          "version": "v1alpha1"
79381        }
79382      }
79383    },
79384    "/apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/rolebindings": {
79385      "delete": {
79386        "consumes": [
79387          "*/*"
79388        ],
79389        "description": "delete collection of RoleBinding",
79390        "operationId": "deleteRbacAuthorizationV1alpha1CollectionNamespacedRoleBinding",
79391        "parameters": [
79392          {
79393            "in": "body",
79394            "name": "body",
79395            "schema": {
79396              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
79397            }
79398          },
79399          {
79400            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
79401            "in": "query",
79402            "name": "continue",
79403            "type": "string",
79404            "uniqueItems": true
79405          },
79406          {
79407            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
79408            "in": "query",
79409            "name": "dryRun",
79410            "type": "string",
79411            "uniqueItems": true
79412          },
79413          {
79414            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
79415            "in": "query",
79416            "name": "fieldSelector",
79417            "type": "string",
79418            "uniqueItems": true
79419          },
79420          {
79421            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
79422            "in": "query",
79423            "name": "gracePeriodSeconds",
79424            "type": "integer",
79425            "uniqueItems": true
79426          },
79427          {
79428            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
79429            "in": "query",
79430            "name": "labelSelector",
79431            "type": "string",
79432            "uniqueItems": true
79433          },
79434          {
79435            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
79436            "in": "query",
79437            "name": "limit",
79438            "type": "integer",
79439            "uniqueItems": true
79440          },
79441          {
79442            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
79443            "in": "query",
79444            "name": "orphanDependents",
79445            "type": "boolean",
79446            "uniqueItems": true
79447          },
79448          {
79449            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
79450            "in": "query",
79451            "name": "propagationPolicy",
79452            "type": "string",
79453            "uniqueItems": true
79454          },
79455          {
79456            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
79457            "in": "query",
79458            "name": "resourceVersion",
79459            "type": "string",
79460            "uniqueItems": true
79461          },
79462          {
79463            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
79464            "in": "query",
79465            "name": "resourceVersionMatch",
79466            "type": "string",
79467            "uniqueItems": true
79468          },
79469          {
79470            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
79471            "in": "query",
79472            "name": "timeoutSeconds",
79473            "type": "integer",
79474            "uniqueItems": true
79475          }
79476        ],
79477        "produces": [
79478          "application/json",
79479          "application/yaml",
79480          "application/vnd.kubernetes.protobuf"
79481        ],
79482        "responses": {
79483          "200": {
79484            "description": "OK",
79485            "schema": {
79486              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
79487            }
79488          },
79489          "401": {
79490            "description": "Unauthorized"
79491          }
79492        },
79493        "schemes": [
79494          "https"
79495        ],
79496        "tags": [
79497          "rbacAuthorization_v1alpha1"
79498        ],
79499        "x-kubernetes-action": "deletecollection",
79500        "x-kubernetes-group-version-kind": {
79501          "group": "rbac.authorization.k8s.io",
79502          "kind": "RoleBinding",
79503          "version": "v1alpha1"
79504        }
79505      },
79506      "get": {
79507        "consumes": [
79508          "*/*"
79509        ],
79510        "description": "list or watch objects of kind RoleBinding",
79511        "operationId": "listRbacAuthorizationV1alpha1NamespacedRoleBinding",
79512        "parameters": [
79513          {
79514            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
79515            "in": "query",
79516            "name": "allowWatchBookmarks",
79517            "type": "boolean",
79518            "uniqueItems": true
79519          },
79520          {
79521            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
79522            "in": "query",
79523            "name": "continue",
79524            "type": "string",
79525            "uniqueItems": true
79526          },
79527          {
79528            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
79529            "in": "query",
79530            "name": "fieldSelector",
79531            "type": "string",
79532            "uniqueItems": true
79533          },
79534          {
79535            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
79536            "in": "query",
79537            "name": "labelSelector",
79538            "type": "string",
79539            "uniqueItems": true
79540          },
79541          {
79542            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
79543            "in": "query",
79544            "name": "limit",
79545            "type": "integer",
79546            "uniqueItems": true
79547          },
79548          {
79549            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
79550            "in": "query",
79551            "name": "resourceVersion",
79552            "type": "string",
79553            "uniqueItems": true
79554          },
79555          {
79556            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
79557            "in": "query",
79558            "name": "resourceVersionMatch",
79559            "type": "string",
79560            "uniqueItems": true
79561          },
79562          {
79563            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
79564            "in": "query",
79565            "name": "timeoutSeconds",
79566            "type": "integer",
79567            "uniqueItems": true
79568          },
79569          {
79570            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
79571            "in": "query",
79572            "name": "watch",
79573            "type": "boolean",
79574            "uniqueItems": true
79575          }
79576        ],
79577        "produces": [
79578          "application/json",
79579          "application/yaml",
79580          "application/vnd.kubernetes.protobuf",
79581          "application/json;stream=watch",
79582          "application/vnd.kubernetes.protobuf;stream=watch"
79583        ],
79584        "responses": {
79585          "200": {
79586            "description": "OK",
79587            "schema": {
79588              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.RoleBindingList"
79589            }
79590          },
79591          "401": {
79592            "description": "Unauthorized"
79593          }
79594        },
79595        "schemes": [
79596          "https"
79597        ],
79598        "tags": [
79599          "rbacAuthorization_v1alpha1"
79600        ],
79601        "x-kubernetes-action": "list",
79602        "x-kubernetes-group-version-kind": {
79603          "group": "rbac.authorization.k8s.io",
79604          "kind": "RoleBinding",
79605          "version": "v1alpha1"
79606        }
79607      },
79608      "parameters": [
79609        {
79610          "description": "object name and auth scope, such as for teams and projects",
79611          "in": "path",
79612          "name": "namespace",
79613          "required": true,
79614          "type": "string",
79615          "uniqueItems": true
79616        },
79617        {
79618          "description": "If 'true', then the output is pretty printed.",
79619          "in": "query",
79620          "name": "pretty",
79621          "type": "string",
79622          "uniqueItems": true
79623        }
79624      ],
79625      "post": {
79626        "consumes": [
79627          "*/*"
79628        ],
79629        "description": "create a RoleBinding",
79630        "operationId": "createRbacAuthorizationV1alpha1NamespacedRoleBinding",
79631        "parameters": [
79632          {
79633            "in": "body",
79634            "name": "body",
79635            "required": true,
79636            "schema": {
79637              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.RoleBinding"
79638            }
79639          },
79640          {
79641            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
79642            "in": "query",
79643            "name": "dryRun",
79644            "type": "string",
79645            "uniqueItems": true
79646          },
79647          {
79648            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
79649            "in": "query",
79650            "name": "fieldManager",
79651            "type": "string",
79652            "uniqueItems": true
79653          }
79654        ],
79655        "produces": [
79656          "application/json",
79657          "application/yaml",
79658          "application/vnd.kubernetes.protobuf"
79659        ],
79660        "responses": {
79661          "200": {
79662            "description": "OK",
79663            "schema": {
79664              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.RoleBinding"
79665            }
79666          },
79667          "201": {
79668            "description": "Created",
79669            "schema": {
79670              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.RoleBinding"
79671            }
79672          },
79673          "202": {
79674            "description": "Accepted",
79675            "schema": {
79676              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.RoleBinding"
79677            }
79678          },
79679          "401": {
79680            "description": "Unauthorized"
79681          }
79682        },
79683        "schemes": [
79684          "https"
79685        ],
79686        "tags": [
79687          "rbacAuthorization_v1alpha1"
79688        ],
79689        "x-kubernetes-action": "post",
79690        "x-kubernetes-group-version-kind": {
79691          "group": "rbac.authorization.k8s.io",
79692          "kind": "RoleBinding",
79693          "version": "v1alpha1"
79694        }
79695      }
79696    },
79697    "/apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/rolebindings/{name}": {
79698      "delete": {
79699        "consumes": [
79700          "*/*"
79701        ],
79702        "description": "delete a RoleBinding",
79703        "operationId": "deleteRbacAuthorizationV1alpha1NamespacedRoleBinding",
79704        "parameters": [
79705          {
79706            "in": "body",
79707            "name": "body",
79708            "schema": {
79709              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
79710            }
79711          },
79712          {
79713            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
79714            "in": "query",
79715            "name": "dryRun",
79716            "type": "string",
79717            "uniqueItems": true
79718          },
79719          {
79720            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
79721            "in": "query",
79722            "name": "gracePeriodSeconds",
79723            "type": "integer",
79724            "uniqueItems": true
79725          },
79726          {
79727            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
79728            "in": "query",
79729            "name": "orphanDependents",
79730            "type": "boolean",
79731            "uniqueItems": true
79732          },
79733          {
79734            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
79735            "in": "query",
79736            "name": "propagationPolicy",
79737            "type": "string",
79738            "uniqueItems": true
79739          }
79740        ],
79741        "produces": [
79742          "application/json",
79743          "application/yaml",
79744          "application/vnd.kubernetes.protobuf"
79745        ],
79746        "responses": {
79747          "200": {
79748            "description": "OK",
79749            "schema": {
79750              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
79751            }
79752          },
79753          "202": {
79754            "description": "Accepted",
79755            "schema": {
79756              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
79757            }
79758          },
79759          "401": {
79760            "description": "Unauthorized"
79761          }
79762        },
79763        "schemes": [
79764          "https"
79765        ],
79766        "tags": [
79767          "rbacAuthorization_v1alpha1"
79768        ],
79769        "x-kubernetes-action": "delete",
79770        "x-kubernetes-group-version-kind": {
79771          "group": "rbac.authorization.k8s.io",
79772          "kind": "RoleBinding",
79773          "version": "v1alpha1"
79774        }
79775      },
79776      "get": {
79777        "consumes": [
79778          "*/*"
79779        ],
79780        "description": "read the specified RoleBinding",
79781        "operationId": "readRbacAuthorizationV1alpha1NamespacedRoleBinding",
79782        "produces": [
79783          "application/json",
79784          "application/yaml",
79785          "application/vnd.kubernetes.protobuf"
79786        ],
79787        "responses": {
79788          "200": {
79789            "description": "OK",
79790            "schema": {
79791              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.RoleBinding"
79792            }
79793          },
79794          "401": {
79795            "description": "Unauthorized"
79796          }
79797        },
79798        "schemes": [
79799          "https"
79800        ],
79801        "tags": [
79802          "rbacAuthorization_v1alpha1"
79803        ],
79804        "x-kubernetes-action": "get",
79805        "x-kubernetes-group-version-kind": {
79806          "group": "rbac.authorization.k8s.io",
79807          "kind": "RoleBinding",
79808          "version": "v1alpha1"
79809        }
79810      },
79811      "parameters": [
79812        {
79813          "description": "name of the RoleBinding",
79814          "in": "path",
79815          "name": "name",
79816          "required": true,
79817          "type": "string",
79818          "uniqueItems": true
79819        },
79820        {
79821          "description": "object name and auth scope, such as for teams and projects",
79822          "in": "path",
79823          "name": "namespace",
79824          "required": true,
79825          "type": "string",
79826          "uniqueItems": true
79827        },
79828        {
79829          "description": "If 'true', then the output is pretty printed.",
79830          "in": "query",
79831          "name": "pretty",
79832          "type": "string",
79833          "uniqueItems": true
79834        }
79835      ],
79836      "patch": {
79837        "consumes": [
79838          "application/json-patch+json",
79839          "application/merge-patch+json",
79840          "application/strategic-merge-patch+json",
79841          "application/apply-patch+yaml"
79842        ],
79843        "description": "partially update the specified RoleBinding",
79844        "operationId": "patchRbacAuthorizationV1alpha1NamespacedRoleBinding",
79845        "parameters": [
79846          {
79847            "in": "body",
79848            "name": "body",
79849            "required": true,
79850            "schema": {
79851              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
79852            }
79853          },
79854          {
79855            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
79856            "in": "query",
79857            "name": "dryRun",
79858            "type": "string",
79859            "uniqueItems": true
79860          },
79861          {
79862            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
79863            "in": "query",
79864            "name": "fieldManager",
79865            "type": "string",
79866            "uniqueItems": true
79867          },
79868          {
79869            "description": "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.",
79870            "in": "query",
79871            "name": "force",
79872            "type": "boolean",
79873            "uniqueItems": true
79874          }
79875        ],
79876        "produces": [
79877          "application/json",
79878          "application/yaml",
79879          "application/vnd.kubernetes.protobuf"
79880        ],
79881        "responses": {
79882          "200": {
79883            "description": "OK",
79884            "schema": {
79885              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.RoleBinding"
79886            }
79887          },
79888          "201": {
79889            "description": "Created",
79890            "schema": {
79891              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.RoleBinding"
79892            }
79893          },
79894          "401": {
79895            "description": "Unauthorized"
79896          }
79897        },
79898        "schemes": [
79899          "https"
79900        ],
79901        "tags": [
79902          "rbacAuthorization_v1alpha1"
79903        ],
79904        "x-kubernetes-action": "patch",
79905        "x-kubernetes-group-version-kind": {
79906          "group": "rbac.authorization.k8s.io",
79907          "kind": "RoleBinding",
79908          "version": "v1alpha1"
79909        }
79910      },
79911      "put": {
79912        "consumes": [
79913          "*/*"
79914        ],
79915        "description": "replace the specified RoleBinding",
79916        "operationId": "replaceRbacAuthorizationV1alpha1NamespacedRoleBinding",
79917        "parameters": [
79918          {
79919            "in": "body",
79920            "name": "body",
79921            "required": true,
79922            "schema": {
79923              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.RoleBinding"
79924            }
79925          },
79926          {
79927            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
79928            "in": "query",
79929            "name": "dryRun",
79930            "type": "string",
79931            "uniqueItems": true
79932          },
79933          {
79934            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
79935            "in": "query",
79936            "name": "fieldManager",
79937            "type": "string",
79938            "uniqueItems": true
79939          }
79940        ],
79941        "produces": [
79942          "application/json",
79943          "application/yaml",
79944          "application/vnd.kubernetes.protobuf"
79945        ],
79946        "responses": {
79947          "200": {
79948            "description": "OK",
79949            "schema": {
79950              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.RoleBinding"
79951            }
79952          },
79953          "201": {
79954            "description": "Created",
79955            "schema": {
79956              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.RoleBinding"
79957            }
79958          },
79959          "401": {
79960            "description": "Unauthorized"
79961          }
79962        },
79963        "schemes": [
79964          "https"
79965        ],
79966        "tags": [
79967          "rbacAuthorization_v1alpha1"
79968        ],
79969        "x-kubernetes-action": "put",
79970        "x-kubernetes-group-version-kind": {
79971          "group": "rbac.authorization.k8s.io",
79972          "kind": "RoleBinding",
79973          "version": "v1alpha1"
79974        }
79975      }
79976    },
79977    "/apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/roles": {
79978      "delete": {
79979        "consumes": [
79980          "*/*"
79981        ],
79982        "description": "delete collection of Role",
79983        "operationId": "deleteRbacAuthorizationV1alpha1CollectionNamespacedRole",
79984        "parameters": [
79985          {
79986            "in": "body",
79987            "name": "body",
79988            "schema": {
79989              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
79990            }
79991          },
79992          {
79993            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
79994            "in": "query",
79995            "name": "continue",
79996            "type": "string",
79997            "uniqueItems": true
79998          },
79999          {
80000            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
80001            "in": "query",
80002            "name": "dryRun",
80003            "type": "string",
80004            "uniqueItems": true
80005          },
80006          {
80007            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
80008            "in": "query",
80009            "name": "fieldSelector",
80010            "type": "string",
80011            "uniqueItems": true
80012          },
80013          {
80014            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
80015            "in": "query",
80016            "name": "gracePeriodSeconds",
80017            "type": "integer",
80018            "uniqueItems": true
80019          },
80020          {
80021            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
80022            "in": "query",
80023            "name": "labelSelector",
80024            "type": "string",
80025            "uniqueItems": true
80026          },
80027          {
80028            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
80029            "in": "query",
80030            "name": "limit",
80031            "type": "integer",
80032            "uniqueItems": true
80033          },
80034          {
80035            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
80036            "in": "query",
80037            "name": "orphanDependents",
80038            "type": "boolean",
80039            "uniqueItems": true
80040          },
80041          {
80042            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
80043            "in": "query",
80044            "name": "propagationPolicy",
80045            "type": "string",
80046            "uniqueItems": true
80047          },
80048          {
80049            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
80050            "in": "query",
80051            "name": "resourceVersion",
80052            "type": "string",
80053            "uniqueItems": true
80054          },
80055          {
80056            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
80057            "in": "query",
80058            "name": "resourceVersionMatch",
80059            "type": "string",
80060            "uniqueItems": true
80061          },
80062          {
80063            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
80064            "in": "query",
80065            "name": "timeoutSeconds",
80066            "type": "integer",
80067            "uniqueItems": true
80068          }
80069        ],
80070        "produces": [
80071          "application/json",
80072          "application/yaml",
80073          "application/vnd.kubernetes.protobuf"
80074        ],
80075        "responses": {
80076          "200": {
80077            "description": "OK",
80078            "schema": {
80079              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
80080            }
80081          },
80082          "401": {
80083            "description": "Unauthorized"
80084          }
80085        },
80086        "schemes": [
80087          "https"
80088        ],
80089        "tags": [
80090          "rbacAuthorization_v1alpha1"
80091        ],
80092        "x-kubernetes-action": "deletecollection",
80093        "x-kubernetes-group-version-kind": {
80094          "group": "rbac.authorization.k8s.io",
80095          "kind": "Role",
80096          "version": "v1alpha1"
80097        }
80098      },
80099      "get": {
80100        "consumes": [
80101          "*/*"
80102        ],
80103        "description": "list or watch objects of kind Role",
80104        "operationId": "listRbacAuthorizationV1alpha1NamespacedRole",
80105        "parameters": [
80106          {
80107            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
80108            "in": "query",
80109            "name": "allowWatchBookmarks",
80110            "type": "boolean",
80111            "uniqueItems": true
80112          },
80113          {
80114            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
80115            "in": "query",
80116            "name": "continue",
80117            "type": "string",
80118            "uniqueItems": true
80119          },
80120          {
80121            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
80122            "in": "query",
80123            "name": "fieldSelector",
80124            "type": "string",
80125            "uniqueItems": true
80126          },
80127          {
80128            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
80129            "in": "query",
80130            "name": "labelSelector",
80131            "type": "string",
80132            "uniqueItems": true
80133          },
80134          {
80135            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
80136            "in": "query",
80137            "name": "limit",
80138            "type": "integer",
80139            "uniqueItems": true
80140          },
80141          {
80142            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
80143            "in": "query",
80144            "name": "resourceVersion",
80145            "type": "string",
80146            "uniqueItems": true
80147          },
80148          {
80149            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
80150            "in": "query",
80151            "name": "resourceVersionMatch",
80152            "type": "string",
80153            "uniqueItems": true
80154          },
80155          {
80156            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
80157            "in": "query",
80158            "name": "timeoutSeconds",
80159            "type": "integer",
80160            "uniqueItems": true
80161          },
80162          {
80163            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
80164            "in": "query",
80165            "name": "watch",
80166            "type": "boolean",
80167            "uniqueItems": true
80168          }
80169        ],
80170        "produces": [
80171          "application/json",
80172          "application/yaml",
80173          "application/vnd.kubernetes.protobuf",
80174          "application/json;stream=watch",
80175          "application/vnd.kubernetes.protobuf;stream=watch"
80176        ],
80177        "responses": {
80178          "200": {
80179            "description": "OK",
80180            "schema": {
80181              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.RoleList"
80182            }
80183          },
80184          "401": {
80185            "description": "Unauthorized"
80186          }
80187        },
80188        "schemes": [
80189          "https"
80190        ],
80191        "tags": [
80192          "rbacAuthorization_v1alpha1"
80193        ],
80194        "x-kubernetes-action": "list",
80195        "x-kubernetes-group-version-kind": {
80196          "group": "rbac.authorization.k8s.io",
80197          "kind": "Role",
80198          "version": "v1alpha1"
80199        }
80200      },
80201      "parameters": [
80202        {
80203          "description": "object name and auth scope, such as for teams and projects",
80204          "in": "path",
80205          "name": "namespace",
80206          "required": true,
80207          "type": "string",
80208          "uniqueItems": true
80209        },
80210        {
80211          "description": "If 'true', then the output is pretty printed.",
80212          "in": "query",
80213          "name": "pretty",
80214          "type": "string",
80215          "uniqueItems": true
80216        }
80217      ],
80218      "post": {
80219        "consumes": [
80220          "*/*"
80221        ],
80222        "description": "create a Role",
80223        "operationId": "createRbacAuthorizationV1alpha1NamespacedRole",
80224        "parameters": [
80225          {
80226            "in": "body",
80227            "name": "body",
80228            "required": true,
80229            "schema": {
80230              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.Role"
80231            }
80232          },
80233          {
80234            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
80235            "in": "query",
80236            "name": "dryRun",
80237            "type": "string",
80238            "uniqueItems": true
80239          },
80240          {
80241            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
80242            "in": "query",
80243            "name": "fieldManager",
80244            "type": "string",
80245            "uniqueItems": true
80246          }
80247        ],
80248        "produces": [
80249          "application/json",
80250          "application/yaml",
80251          "application/vnd.kubernetes.protobuf"
80252        ],
80253        "responses": {
80254          "200": {
80255            "description": "OK",
80256            "schema": {
80257              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.Role"
80258            }
80259          },
80260          "201": {
80261            "description": "Created",
80262            "schema": {
80263              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.Role"
80264            }
80265          },
80266          "202": {
80267            "description": "Accepted",
80268            "schema": {
80269              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.Role"
80270            }
80271          },
80272          "401": {
80273            "description": "Unauthorized"
80274          }
80275        },
80276        "schemes": [
80277          "https"
80278        ],
80279        "tags": [
80280          "rbacAuthorization_v1alpha1"
80281        ],
80282        "x-kubernetes-action": "post",
80283        "x-kubernetes-group-version-kind": {
80284          "group": "rbac.authorization.k8s.io",
80285          "kind": "Role",
80286          "version": "v1alpha1"
80287        }
80288      }
80289    },
80290    "/apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/roles/{name}": {
80291      "delete": {
80292        "consumes": [
80293          "*/*"
80294        ],
80295        "description": "delete a Role",
80296        "operationId": "deleteRbacAuthorizationV1alpha1NamespacedRole",
80297        "parameters": [
80298          {
80299            "in": "body",
80300            "name": "body",
80301            "schema": {
80302              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
80303            }
80304          },
80305          {
80306            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
80307            "in": "query",
80308            "name": "dryRun",
80309            "type": "string",
80310            "uniqueItems": true
80311          },
80312          {
80313            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
80314            "in": "query",
80315            "name": "gracePeriodSeconds",
80316            "type": "integer",
80317            "uniqueItems": true
80318          },
80319          {
80320            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
80321            "in": "query",
80322            "name": "orphanDependents",
80323            "type": "boolean",
80324            "uniqueItems": true
80325          },
80326          {
80327            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
80328            "in": "query",
80329            "name": "propagationPolicy",
80330            "type": "string",
80331            "uniqueItems": true
80332          }
80333        ],
80334        "produces": [
80335          "application/json",
80336          "application/yaml",
80337          "application/vnd.kubernetes.protobuf"
80338        ],
80339        "responses": {
80340          "200": {
80341            "description": "OK",
80342            "schema": {
80343              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
80344            }
80345          },
80346          "202": {
80347            "description": "Accepted",
80348            "schema": {
80349              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
80350            }
80351          },
80352          "401": {
80353            "description": "Unauthorized"
80354          }
80355        },
80356        "schemes": [
80357          "https"
80358        ],
80359        "tags": [
80360          "rbacAuthorization_v1alpha1"
80361        ],
80362        "x-kubernetes-action": "delete",
80363        "x-kubernetes-group-version-kind": {
80364          "group": "rbac.authorization.k8s.io",
80365          "kind": "Role",
80366          "version": "v1alpha1"
80367        }
80368      },
80369      "get": {
80370        "consumes": [
80371          "*/*"
80372        ],
80373        "description": "read the specified Role",
80374        "operationId": "readRbacAuthorizationV1alpha1NamespacedRole",
80375        "produces": [
80376          "application/json",
80377          "application/yaml",
80378          "application/vnd.kubernetes.protobuf"
80379        ],
80380        "responses": {
80381          "200": {
80382            "description": "OK",
80383            "schema": {
80384              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.Role"
80385            }
80386          },
80387          "401": {
80388            "description": "Unauthorized"
80389          }
80390        },
80391        "schemes": [
80392          "https"
80393        ],
80394        "tags": [
80395          "rbacAuthorization_v1alpha1"
80396        ],
80397        "x-kubernetes-action": "get",
80398        "x-kubernetes-group-version-kind": {
80399          "group": "rbac.authorization.k8s.io",
80400          "kind": "Role",
80401          "version": "v1alpha1"
80402        }
80403      },
80404      "parameters": [
80405        {
80406          "description": "name of the Role",
80407          "in": "path",
80408          "name": "name",
80409          "required": true,
80410          "type": "string",
80411          "uniqueItems": true
80412        },
80413        {
80414          "description": "object name and auth scope, such as for teams and projects",
80415          "in": "path",
80416          "name": "namespace",
80417          "required": true,
80418          "type": "string",
80419          "uniqueItems": true
80420        },
80421        {
80422          "description": "If 'true', then the output is pretty printed.",
80423          "in": "query",
80424          "name": "pretty",
80425          "type": "string",
80426          "uniqueItems": true
80427        }
80428      ],
80429      "patch": {
80430        "consumes": [
80431          "application/json-patch+json",
80432          "application/merge-patch+json",
80433          "application/strategic-merge-patch+json",
80434          "application/apply-patch+yaml"
80435        ],
80436        "description": "partially update the specified Role",
80437        "operationId": "patchRbacAuthorizationV1alpha1NamespacedRole",
80438        "parameters": [
80439          {
80440            "in": "body",
80441            "name": "body",
80442            "required": true,
80443            "schema": {
80444              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
80445            }
80446          },
80447          {
80448            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
80449            "in": "query",
80450            "name": "dryRun",
80451            "type": "string",
80452            "uniqueItems": true
80453          },
80454          {
80455            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
80456            "in": "query",
80457            "name": "fieldManager",
80458            "type": "string",
80459            "uniqueItems": true
80460          },
80461          {
80462            "description": "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.",
80463            "in": "query",
80464            "name": "force",
80465            "type": "boolean",
80466            "uniqueItems": true
80467          }
80468        ],
80469        "produces": [
80470          "application/json",
80471          "application/yaml",
80472          "application/vnd.kubernetes.protobuf"
80473        ],
80474        "responses": {
80475          "200": {
80476            "description": "OK",
80477            "schema": {
80478              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.Role"
80479            }
80480          },
80481          "201": {
80482            "description": "Created",
80483            "schema": {
80484              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.Role"
80485            }
80486          },
80487          "401": {
80488            "description": "Unauthorized"
80489          }
80490        },
80491        "schemes": [
80492          "https"
80493        ],
80494        "tags": [
80495          "rbacAuthorization_v1alpha1"
80496        ],
80497        "x-kubernetes-action": "patch",
80498        "x-kubernetes-group-version-kind": {
80499          "group": "rbac.authorization.k8s.io",
80500          "kind": "Role",
80501          "version": "v1alpha1"
80502        }
80503      },
80504      "put": {
80505        "consumes": [
80506          "*/*"
80507        ],
80508        "description": "replace the specified Role",
80509        "operationId": "replaceRbacAuthorizationV1alpha1NamespacedRole",
80510        "parameters": [
80511          {
80512            "in": "body",
80513            "name": "body",
80514            "required": true,
80515            "schema": {
80516              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.Role"
80517            }
80518          },
80519          {
80520            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
80521            "in": "query",
80522            "name": "dryRun",
80523            "type": "string",
80524            "uniqueItems": true
80525          },
80526          {
80527            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
80528            "in": "query",
80529            "name": "fieldManager",
80530            "type": "string",
80531            "uniqueItems": true
80532          }
80533        ],
80534        "produces": [
80535          "application/json",
80536          "application/yaml",
80537          "application/vnd.kubernetes.protobuf"
80538        ],
80539        "responses": {
80540          "200": {
80541            "description": "OK",
80542            "schema": {
80543              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.Role"
80544            }
80545          },
80546          "201": {
80547            "description": "Created",
80548            "schema": {
80549              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.Role"
80550            }
80551          },
80552          "401": {
80553            "description": "Unauthorized"
80554          }
80555        },
80556        "schemes": [
80557          "https"
80558        ],
80559        "tags": [
80560          "rbacAuthorization_v1alpha1"
80561        ],
80562        "x-kubernetes-action": "put",
80563        "x-kubernetes-group-version-kind": {
80564          "group": "rbac.authorization.k8s.io",
80565          "kind": "Role",
80566          "version": "v1alpha1"
80567        }
80568      }
80569    },
80570    "/apis/rbac.authorization.k8s.io/v1alpha1/rolebindings": {
80571      "get": {
80572        "consumes": [
80573          "*/*"
80574        ],
80575        "description": "list or watch objects of kind RoleBinding",
80576        "operationId": "listRbacAuthorizationV1alpha1RoleBindingForAllNamespaces",
80577        "produces": [
80578          "application/json",
80579          "application/yaml",
80580          "application/vnd.kubernetes.protobuf",
80581          "application/json;stream=watch",
80582          "application/vnd.kubernetes.protobuf;stream=watch"
80583        ],
80584        "responses": {
80585          "200": {
80586            "description": "OK",
80587            "schema": {
80588              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.RoleBindingList"
80589            }
80590          },
80591          "401": {
80592            "description": "Unauthorized"
80593          }
80594        },
80595        "schemes": [
80596          "https"
80597        ],
80598        "tags": [
80599          "rbacAuthorization_v1alpha1"
80600        ],
80601        "x-kubernetes-action": "list",
80602        "x-kubernetes-group-version-kind": {
80603          "group": "rbac.authorization.k8s.io",
80604          "kind": "RoleBinding",
80605          "version": "v1alpha1"
80606        }
80607      },
80608      "parameters": [
80609        {
80610          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
80611          "in": "query",
80612          "name": "allowWatchBookmarks",
80613          "type": "boolean",
80614          "uniqueItems": true
80615        },
80616        {
80617          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
80618          "in": "query",
80619          "name": "continue",
80620          "type": "string",
80621          "uniqueItems": true
80622        },
80623        {
80624          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
80625          "in": "query",
80626          "name": "fieldSelector",
80627          "type": "string",
80628          "uniqueItems": true
80629        },
80630        {
80631          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
80632          "in": "query",
80633          "name": "labelSelector",
80634          "type": "string",
80635          "uniqueItems": true
80636        },
80637        {
80638          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
80639          "in": "query",
80640          "name": "limit",
80641          "type": "integer",
80642          "uniqueItems": true
80643        },
80644        {
80645          "description": "If 'true', then the output is pretty printed.",
80646          "in": "query",
80647          "name": "pretty",
80648          "type": "string",
80649          "uniqueItems": true
80650        },
80651        {
80652          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
80653          "in": "query",
80654          "name": "resourceVersion",
80655          "type": "string",
80656          "uniqueItems": true
80657        },
80658        {
80659          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
80660          "in": "query",
80661          "name": "resourceVersionMatch",
80662          "type": "string",
80663          "uniqueItems": true
80664        },
80665        {
80666          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
80667          "in": "query",
80668          "name": "timeoutSeconds",
80669          "type": "integer",
80670          "uniqueItems": true
80671        },
80672        {
80673          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
80674          "in": "query",
80675          "name": "watch",
80676          "type": "boolean",
80677          "uniqueItems": true
80678        }
80679      ]
80680    },
80681    "/apis/rbac.authorization.k8s.io/v1alpha1/roles": {
80682      "get": {
80683        "consumes": [
80684          "*/*"
80685        ],
80686        "description": "list or watch objects of kind Role",
80687        "operationId": "listRbacAuthorizationV1alpha1RoleForAllNamespaces",
80688        "produces": [
80689          "application/json",
80690          "application/yaml",
80691          "application/vnd.kubernetes.protobuf",
80692          "application/json;stream=watch",
80693          "application/vnd.kubernetes.protobuf;stream=watch"
80694        ],
80695        "responses": {
80696          "200": {
80697            "description": "OK",
80698            "schema": {
80699              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.RoleList"
80700            }
80701          },
80702          "401": {
80703            "description": "Unauthorized"
80704          }
80705        },
80706        "schemes": [
80707          "https"
80708        ],
80709        "tags": [
80710          "rbacAuthorization_v1alpha1"
80711        ],
80712        "x-kubernetes-action": "list",
80713        "x-kubernetes-group-version-kind": {
80714          "group": "rbac.authorization.k8s.io",
80715          "kind": "Role",
80716          "version": "v1alpha1"
80717        }
80718      },
80719      "parameters": [
80720        {
80721          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
80722          "in": "query",
80723          "name": "allowWatchBookmarks",
80724          "type": "boolean",
80725          "uniqueItems": true
80726        },
80727        {
80728          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
80729          "in": "query",
80730          "name": "continue",
80731          "type": "string",
80732          "uniqueItems": true
80733        },
80734        {
80735          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
80736          "in": "query",
80737          "name": "fieldSelector",
80738          "type": "string",
80739          "uniqueItems": true
80740        },
80741        {
80742          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
80743          "in": "query",
80744          "name": "labelSelector",
80745          "type": "string",
80746          "uniqueItems": true
80747        },
80748        {
80749          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
80750          "in": "query",
80751          "name": "limit",
80752          "type": "integer",
80753          "uniqueItems": true
80754        },
80755        {
80756          "description": "If 'true', then the output is pretty printed.",
80757          "in": "query",
80758          "name": "pretty",
80759          "type": "string",
80760          "uniqueItems": true
80761        },
80762        {
80763          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
80764          "in": "query",
80765          "name": "resourceVersion",
80766          "type": "string",
80767          "uniqueItems": true
80768        },
80769        {
80770          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
80771          "in": "query",
80772          "name": "resourceVersionMatch",
80773          "type": "string",
80774          "uniqueItems": true
80775        },
80776        {
80777          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
80778          "in": "query",
80779          "name": "timeoutSeconds",
80780          "type": "integer",
80781          "uniqueItems": true
80782        },
80783        {
80784          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
80785          "in": "query",
80786          "name": "watch",
80787          "type": "boolean",
80788          "uniqueItems": true
80789        }
80790      ]
80791    },
80792    "/apis/rbac.authorization.k8s.io/v1alpha1/watch/clusterrolebindings": {
80793      "get": {
80794        "consumes": [
80795          "*/*"
80796        ],
80797        "description": "watch individual changes to a list of ClusterRoleBinding. deprecated: use the 'watch' parameter with a list operation instead.",
80798        "operationId": "watchRbacAuthorizationV1alpha1ClusterRoleBindingList",
80799        "produces": [
80800          "application/json",
80801          "application/yaml",
80802          "application/vnd.kubernetes.protobuf",
80803          "application/json;stream=watch",
80804          "application/vnd.kubernetes.protobuf;stream=watch"
80805        ],
80806        "responses": {
80807          "200": {
80808            "description": "OK",
80809            "schema": {
80810              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
80811            }
80812          },
80813          "401": {
80814            "description": "Unauthorized"
80815          }
80816        },
80817        "schemes": [
80818          "https"
80819        ],
80820        "tags": [
80821          "rbacAuthorization_v1alpha1"
80822        ],
80823        "x-kubernetes-action": "watchlist",
80824        "x-kubernetes-group-version-kind": {
80825          "group": "rbac.authorization.k8s.io",
80826          "kind": "ClusterRoleBinding",
80827          "version": "v1alpha1"
80828        }
80829      },
80830      "parameters": [
80831        {
80832          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
80833          "in": "query",
80834          "name": "allowWatchBookmarks",
80835          "type": "boolean",
80836          "uniqueItems": true
80837        },
80838        {
80839          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
80840          "in": "query",
80841          "name": "continue",
80842          "type": "string",
80843          "uniqueItems": true
80844        },
80845        {
80846          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
80847          "in": "query",
80848          "name": "fieldSelector",
80849          "type": "string",
80850          "uniqueItems": true
80851        },
80852        {
80853          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
80854          "in": "query",
80855          "name": "labelSelector",
80856          "type": "string",
80857          "uniqueItems": true
80858        },
80859        {
80860          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
80861          "in": "query",
80862          "name": "limit",
80863          "type": "integer",
80864          "uniqueItems": true
80865        },
80866        {
80867          "description": "If 'true', then the output is pretty printed.",
80868          "in": "query",
80869          "name": "pretty",
80870          "type": "string",
80871          "uniqueItems": true
80872        },
80873        {
80874          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
80875          "in": "query",
80876          "name": "resourceVersion",
80877          "type": "string",
80878          "uniqueItems": true
80879        },
80880        {
80881          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
80882          "in": "query",
80883          "name": "resourceVersionMatch",
80884          "type": "string",
80885          "uniqueItems": true
80886        },
80887        {
80888          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
80889          "in": "query",
80890          "name": "timeoutSeconds",
80891          "type": "integer",
80892          "uniqueItems": true
80893        },
80894        {
80895          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
80896          "in": "query",
80897          "name": "watch",
80898          "type": "boolean",
80899          "uniqueItems": true
80900        }
80901      ]
80902    },
80903    "/apis/rbac.authorization.k8s.io/v1alpha1/watch/clusterrolebindings/{name}": {
80904      "get": {
80905        "consumes": [
80906          "*/*"
80907        ],
80908        "description": "watch changes to an object of kind ClusterRoleBinding. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.",
80909        "operationId": "watchRbacAuthorizationV1alpha1ClusterRoleBinding",
80910        "produces": [
80911          "application/json",
80912          "application/yaml",
80913          "application/vnd.kubernetes.protobuf",
80914          "application/json;stream=watch",
80915          "application/vnd.kubernetes.protobuf;stream=watch"
80916        ],
80917        "responses": {
80918          "200": {
80919            "description": "OK",
80920            "schema": {
80921              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
80922            }
80923          },
80924          "401": {
80925            "description": "Unauthorized"
80926          }
80927        },
80928        "schemes": [
80929          "https"
80930        ],
80931        "tags": [
80932          "rbacAuthorization_v1alpha1"
80933        ],
80934        "x-kubernetes-action": "watch",
80935        "x-kubernetes-group-version-kind": {
80936          "group": "rbac.authorization.k8s.io",
80937          "kind": "ClusterRoleBinding",
80938          "version": "v1alpha1"
80939        }
80940      },
80941      "parameters": [
80942        {
80943          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
80944          "in": "query",
80945          "name": "allowWatchBookmarks",
80946          "type": "boolean",
80947          "uniqueItems": true
80948        },
80949        {
80950          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
80951          "in": "query",
80952          "name": "continue",
80953          "type": "string",
80954          "uniqueItems": true
80955        },
80956        {
80957          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
80958          "in": "query",
80959          "name": "fieldSelector",
80960          "type": "string",
80961          "uniqueItems": true
80962        },
80963        {
80964          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
80965          "in": "query",
80966          "name": "labelSelector",
80967          "type": "string",
80968          "uniqueItems": true
80969        },
80970        {
80971          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
80972          "in": "query",
80973          "name": "limit",
80974          "type": "integer",
80975          "uniqueItems": true
80976        },
80977        {
80978          "description": "name of the ClusterRoleBinding",
80979          "in": "path",
80980          "name": "name",
80981          "required": true,
80982          "type": "string",
80983          "uniqueItems": true
80984        },
80985        {
80986          "description": "If 'true', then the output is pretty printed.",
80987          "in": "query",
80988          "name": "pretty",
80989          "type": "string",
80990          "uniqueItems": true
80991        },
80992        {
80993          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
80994          "in": "query",
80995          "name": "resourceVersion",
80996          "type": "string",
80997          "uniqueItems": true
80998        },
80999        {
81000          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
81001          "in": "query",
81002          "name": "resourceVersionMatch",
81003          "type": "string",
81004          "uniqueItems": true
81005        },
81006        {
81007          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
81008          "in": "query",
81009          "name": "timeoutSeconds",
81010          "type": "integer",
81011          "uniqueItems": true
81012        },
81013        {
81014          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
81015          "in": "query",
81016          "name": "watch",
81017          "type": "boolean",
81018          "uniqueItems": true
81019        }
81020      ]
81021    },
81022    "/apis/rbac.authorization.k8s.io/v1alpha1/watch/clusterroles": {
81023      "get": {
81024        "consumes": [
81025          "*/*"
81026        ],
81027        "description": "watch individual changes to a list of ClusterRole. deprecated: use the 'watch' parameter with a list operation instead.",
81028        "operationId": "watchRbacAuthorizationV1alpha1ClusterRoleList",
81029        "produces": [
81030          "application/json",
81031          "application/yaml",
81032          "application/vnd.kubernetes.protobuf",
81033          "application/json;stream=watch",
81034          "application/vnd.kubernetes.protobuf;stream=watch"
81035        ],
81036        "responses": {
81037          "200": {
81038            "description": "OK",
81039            "schema": {
81040              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
81041            }
81042          },
81043          "401": {
81044            "description": "Unauthorized"
81045          }
81046        },
81047        "schemes": [
81048          "https"
81049        ],
81050        "tags": [
81051          "rbacAuthorization_v1alpha1"
81052        ],
81053        "x-kubernetes-action": "watchlist",
81054        "x-kubernetes-group-version-kind": {
81055          "group": "rbac.authorization.k8s.io",
81056          "kind": "ClusterRole",
81057          "version": "v1alpha1"
81058        }
81059      },
81060      "parameters": [
81061        {
81062          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
81063          "in": "query",
81064          "name": "allowWatchBookmarks",
81065          "type": "boolean",
81066          "uniqueItems": true
81067        },
81068        {
81069          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
81070          "in": "query",
81071          "name": "continue",
81072          "type": "string",
81073          "uniqueItems": true
81074        },
81075        {
81076          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
81077          "in": "query",
81078          "name": "fieldSelector",
81079          "type": "string",
81080          "uniqueItems": true
81081        },
81082        {
81083          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
81084          "in": "query",
81085          "name": "labelSelector",
81086          "type": "string",
81087          "uniqueItems": true
81088        },
81089        {
81090          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
81091          "in": "query",
81092          "name": "limit",
81093          "type": "integer",
81094          "uniqueItems": true
81095        },
81096        {
81097          "description": "If 'true', then the output is pretty printed.",
81098          "in": "query",
81099          "name": "pretty",
81100          "type": "string",
81101          "uniqueItems": true
81102        },
81103        {
81104          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
81105          "in": "query",
81106          "name": "resourceVersion",
81107          "type": "string",
81108          "uniqueItems": true
81109        },
81110        {
81111          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
81112          "in": "query",
81113          "name": "resourceVersionMatch",
81114          "type": "string",
81115          "uniqueItems": true
81116        },
81117        {
81118          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
81119          "in": "query",
81120          "name": "timeoutSeconds",
81121          "type": "integer",
81122          "uniqueItems": true
81123        },
81124        {
81125          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
81126          "in": "query",
81127          "name": "watch",
81128          "type": "boolean",
81129          "uniqueItems": true
81130        }
81131      ]
81132    },
81133    "/apis/rbac.authorization.k8s.io/v1alpha1/watch/clusterroles/{name}": {
81134      "get": {
81135        "consumes": [
81136          "*/*"
81137        ],
81138        "description": "watch changes to an object of kind ClusterRole. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.",
81139        "operationId": "watchRbacAuthorizationV1alpha1ClusterRole",
81140        "produces": [
81141          "application/json",
81142          "application/yaml",
81143          "application/vnd.kubernetes.protobuf",
81144          "application/json;stream=watch",
81145          "application/vnd.kubernetes.protobuf;stream=watch"
81146        ],
81147        "responses": {
81148          "200": {
81149            "description": "OK",
81150            "schema": {
81151              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
81152            }
81153          },
81154          "401": {
81155            "description": "Unauthorized"
81156          }
81157        },
81158        "schemes": [
81159          "https"
81160        ],
81161        "tags": [
81162          "rbacAuthorization_v1alpha1"
81163        ],
81164        "x-kubernetes-action": "watch",
81165        "x-kubernetes-group-version-kind": {
81166          "group": "rbac.authorization.k8s.io",
81167          "kind": "ClusterRole",
81168          "version": "v1alpha1"
81169        }
81170      },
81171      "parameters": [
81172        {
81173          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
81174          "in": "query",
81175          "name": "allowWatchBookmarks",
81176          "type": "boolean",
81177          "uniqueItems": true
81178        },
81179        {
81180          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
81181          "in": "query",
81182          "name": "continue",
81183          "type": "string",
81184          "uniqueItems": true
81185        },
81186        {
81187          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
81188          "in": "query",
81189          "name": "fieldSelector",
81190          "type": "string",
81191          "uniqueItems": true
81192        },
81193        {
81194          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
81195          "in": "query",
81196          "name": "labelSelector",
81197          "type": "string",
81198          "uniqueItems": true
81199        },
81200        {
81201          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
81202          "in": "query",
81203          "name": "limit",
81204          "type": "integer",
81205          "uniqueItems": true
81206        },
81207        {
81208          "description": "name of the ClusterRole",
81209          "in": "path",
81210          "name": "name",
81211          "required": true,
81212          "type": "string",
81213          "uniqueItems": true
81214        },
81215        {
81216          "description": "If 'true', then the output is pretty printed.",
81217          "in": "query",
81218          "name": "pretty",
81219          "type": "string",
81220          "uniqueItems": true
81221        },
81222        {
81223          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
81224          "in": "query",
81225          "name": "resourceVersion",
81226          "type": "string",
81227          "uniqueItems": true
81228        },
81229        {
81230          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
81231          "in": "query",
81232          "name": "resourceVersionMatch",
81233          "type": "string",
81234          "uniqueItems": true
81235        },
81236        {
81237          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
81238          "in": "query",
81239          "name": "timeoutSeconds",
81240          "type": "integer",
81241          "uniqueItems": true
81242        },
81243        {
81244          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
81245          "in": "query",
81246          "name": "watch",
81247          "type": "boolean",
81248          "uniqueItems": true
81249        }
81250      ]
81251    },
81252    "/apis/rbac.authorization.k8s.io/v1alpha1/watch/namespaces/{namespace}/rolebindings": {
81253      "get": {
81254        "consumes": [
81255          "*/*"
81256        ],
81257        "description": "watch individual changes to a list of RoleBinding. deprecated: use the 'watch' parameter with a list operation instead.",
81258        "operationId": "watchRbacAuthorizationV1alpha1NamespacedRoleBindingList",
81259        "produces": [
81260          "application/json",
81261          "application/yaml",
81262          "application/vnd.kubernetes.protobuf",
81263          "application/json;stream=watch",
81264          "application/vnd.kubernetes.protobuf;stream=watch"
81265        ],
81266        "responses": {
81267          "200": {
81268            "description": "OK",
81269            "schema": {
81270              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
81271            }
81272          },
81273          "401": {
81274            "description": "Unauthorized"
81275          }
81276        },
81277        "schemes": [
81278          "https"
81279        ],
81280        "tags": [
81281          "rbacAuthorization_v1alpha1"
81282        ],
81283        "x-kubernetes-action": "watchlist",
81284        "x-kubernetes-group-version-kind": {
81285          "group": "rbac.authorization.k8s.io",
81286          "kind": "RoleBinding",
81287          "version": "v1alpha1"
81288        }
81289      },
81290      "parameters": [
81291        {
81292          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
81293          "in": "query",
81294          "name": "allowWatchBookmarks",
81295          "type": "boolean",
81296          "uniqueItems": true
81297        },
81298        {
81299          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
81300          "in": "query",
81301          "name": "continue",
81302          "type": "string",
81303          "uniqueItems": true
81304        },
81305        {
81306          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
81307          "in": "query",
81308          "name": "fieldSelector",
81309          "type": "string",
81310          "uniqueItems": true
81311        },
81312        {
81313          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
81314          "in": "query",
81315          "name": "labelSelector",
81316          "type": "string",
81317          "uniqueItems": true
81318        },
81319        {
81320          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
81321          "in": "query",
81322          "name": "limit",
81323          "type": "integer",
81324          "uniqueItems": true
81325        },
81326        {
81327          "description": "object name and auth scope, such as for teams and projects",
81328          "in": "path",
81329          "name": "namespace",
81330          "required": true,
81331          "type": "string",
81332          "uniqueItems": true
81333        },
81334        {
81335          "description": "If 'true', then the output is pretty printed.",
81336          "in": "query",
81337          "name": "pretty",
81338          "type": "string",
81339          "uniqueItems": true
81340        },
81341        {
81342          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
81343          "in": "query",
81344          "name": "resourceVersion",
81345          "type": "string",
81346          "uniqueItems": true
81347        },
81348        {
81349          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
81350          "in": "query",
81351          "name": "resourceVersionMatch",
81352          "type": "string",
81353          "uniqueItems": true
81354        },
81355        {
81356          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
81357          "in": "query",
81358          "name": "timeoutSeconds",
81359          "type": "integer",
81360          "uniqueItems": true
81361        },
81362        {
81363          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
81364          "in": "query",
81365          "name": "watch",
81366          "type": "boolean",
81367          "uniqueItems": true
81368        }
81369      ]
81370    },
81371    "/apis/rbac.authorization.k8s.io/v1alpha1/watch/namespaces/{namespace}/rolebindings/{name}": {
81372      "get": {
81373        "consumes": [
81374          "*/*"
81375        ],
81376        "description": "watch changes to an object of kind RoleBinding. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.",
81377        "operationId": "watchRbacAuthorizationV1alpha1NamespacedRoleBinding",
81378        "produces": [
81379          "application/json",
81380          "application/yaml",
81381          "application/vnd.kubernetes.protobuf",
81382          "application/json;stream=watch",
81383          "application/vnd.kubernetes.protobuf;stream=watch"
81384        ],
81385        "responses": {
81386          "200": {
81387            "description": "OK",
81388            "schema": {
81389              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
81390            }
81391          },
81392          "401": {
81393            "description": "Unauthorized"
81394          }
81395        },
81396        "schemes": [
81397          "https"
81398        ],
81399        "tags": [
81400          "rbacAuthorization_v1alpha1"
81401        ],
81402        "x-kubernetes-action": "watch",
81403        "x-kubernetes-group-version-kind": {
81404          "group": "rbac.authorization.k8s.io",
81405          "kind": "RoleBinding",
81406          "version": "v1alpha1"
81407        }
81408      },
81409      "parameters": [
81410        {
81411          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
81412          "in": "query",
81413          "name": "allowWatchBookmarks",
81414          "type": "boolean",
81415          "uniqueItems": true
81416        },
81417        {
81418          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
81419          "in": "query",
81420          "name": "continue",
81421          "type": "string",
81422          "uniqueItems": true
81423        },
81424        {
81425          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
81426          "in": "query",
81427          "name": "fieldSelector",
81428          "type": "string",
81429          "uniqueItems": true
81430        },
81431        {
81432          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
81433          "in": "query",
81434          "name": "labelSelector",
81435          "type": "string",
81436          "uniqueItems": true
81437        },
81438        {
81439          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
81440          "in": "query",
81441          "name": "limit",
81442          "type": "integer",
81443          "uniqueItems": true
81444        },
81445        {
81446          "description": "name of the RoleBinding",
81447          "in": "path",
81448          "name": "name",
81449          "required": true,
81450          "type": "string",
81451          "uniqueItems": true
81452        },
81453        {
81454          "description": "object name and auth scope, such as for teams and projects",
81455          "in": "path",
81456          "name": "namespace",
81457          "required": true,
81458          "type": "string",
81459          "uniqueItems": true
81460        },
81461        {
81462          "description": "If 'true', then the output is pretty printed.",
81463          "in": "query",
81464          "name": "pretty",
81465          "type": "string",
81466          "uniqueItems": true
81467        },
81468        {
81469          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
81470          "in": "query",
81471          "name": "resourceVersion",
81472          "type": "string",
81473          "uniqueItems": true
81474        },
81475        {
81476          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
81477          "in": "query",
81478          "name": "resourceVersionMatch",
81479          "type": "string",
81480          "uniqueItems": true
81481        },
81482        {
81483          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
81484          "in": "query",
81485          "name": "timeoutSeconds",
81486          "type": "integer",
81487          "uniqueItems": true
81488        },
81489        {
81490          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
81491          "in": "query",
81492          "name": "watch",
81493          "type": "boolean",
81494          "uniqueItems": true
81495        }
81496      ]
81497    },
81498    "/apis/rbac.authorization.k8s.io/v1alpha1/watch/namespaces/{namespace}/roles": {
81499      "get": {
81500        "consumes": [
81501          "*/*"
81502        ],
81503        "description": "watch individual changes to a list of Role. deprecated: use the 'watch' parameter with a list operation instead.",
81504        "operationId": "watchRbacAuthorizationV1alpha1NamespacedRoleList",
81505        "produces": [
81506          "application/json",
81507          "application/yaml",
81508          "application/vnd.kubernetes.protobuf",
81509          "application/json;stream=watch",
81510          "application/vnd.kubernetes.protobuf;stream=watch"
81511        ],
81512        "responses": {
81513          "200": {
81514            "description": "OK",
81515            "schema": {
81516              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
81517            }
81518          },
81519          "401": {
81520            "description": "Unauthorized"
81521          }
81522        },
81523        "schemes": [
81524          "https"
81525        ],
81526        "tags": [
81527          "rbacAuthorization_v1alpha1"
81528        ],
81529        "x-kubernetes-action": "watchlist",
81530        "x-kubernetes-group-version-kind": {
81531          "group": "rbac.authorization.k8s.io",
81532          "kind": "Role",
81533          "version": "v1alpha1"
81534        }
81535      },
81536      "parameters": [
81537        {
81538          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
81539          "in": "query",
81540          "name": "allowWatchBookmarks",
81541          "type": "boolean",
81542          "uniqueItems": true
81543        },
81544        {
81545          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
81546          "in": "query",
81547          "name": "continue",
81548          "type": "string",
81549          "uniqueItems": true
81550        },
81551        {
81552          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
81553          "in": "query",
81554          "name": "fieldSelector",
81555          "type": "string",
81556          "uniqueItems": true
81557        },
81558        {
81559          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
81560          "in": "query",
81561          "name": "labelSelector",
81562          "type": "string",
81563          "uniqueItems": true
81564        },
81565        {
81566          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
81567          "in": "query",
81568          "name": "limit",
81569          "type": "integer",
81570          "uniqueItems": true
81571        },
81572        {
81573          "description": "object name and auth scope, such as for teams and projects",
81574          "in": "path",
81575          "name": "namespace",
81576          "required": true,
81577          "type": "string",
81578          "uniqueItems": true
81579        },
81580        {
81581          "description": "If 'true', then the output is pretty printed.",
81582          "in": "query",
81583          "name": "pretty",
81584          "type": "string",
81585          "uniqueItems": true
81586        },
81587        {
81588          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
81589          "in": "query",
81590          "name": "resourceVersion",
81591          "type": "string",
81592          "uniqueItems": true
81593        },
81594        {
81595          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
81596          "in": "query",
81597          "name": "resourceVersionMatch",
81598          "type": "string",
81599          "uniqueItems": true
81600        },
81601        {
81602          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
81603          "in": "query",
81604          "name": "timeoutSeconds",
81605          "type": "integer",
81606          "uniqueItems": true
81607        },
81608        {
81609          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
81610          "in": "query",
81611          "name": "watch",
81612          "type": "boolean",
81613          "uniqueItems": true
81614        }
81615      ]
81616    },
81617    "/apis/rbac.authorization.k8s.io/v1alpha1/watch/namespaces/{namespace}/roles/{name}": {
81618      "get": {
81619        "consumes": [
81620          "*/*"
81621        ],
81622        "description": "watch changes to an object of kind Role. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.",
81623        "operationId": "watchRbacAuthorizationV1alpha1NamespacedRole",
81624        "produces": [
81625          "application/json",
81626          "application/yaml",
81627          "application/vnd.kubernetes.protobuf",
81628          "application/json;stream=watch",
81629          "application/vnd.kubernetes.protobuf;stream=watch"
81630        ],
81631        "responses": {
81632          "200": {
81633            "description": "OK",
81634            "schema": {
81635              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
81636            }
81637          },
81638          "401": {
81639            "description": "Unauthorized"
81640          }
81641        },
81642        "schemes": [
81643          "https"
81644        ],
81645        "tags": [
81646          "rbacAuthorization_v1alpha1"
81647        ],
81648        "x-kubernetes-action": "watch",
81649        "x-kubernetes-group-version-kind": {
81650          "group": "rbac.authorization.k8s.io",
81651          "kind": "Role",
81652          "version": "v1alpha1"
81653        }
81654      },
81655      "parameters": [
81656        {
81657          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
81658          "in": "query",
81659          "name": "allowWatchBookmarks",
81660          "type": "boolean",
81661          "uniqueItems": true
81662        },
81663        {
81664          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
81665          "in": "query",
81666          "name": "continue",
81667          "type": "string",
81668          "uniqueItems": true
81669        },
81670        {
81671          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
81672          "in": "query",
81673          "name": "fieldSelector",
81674          "type": "string",
81675          "uniqueItems": true
81676        },
81677        {
81678          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
81679          "in": "query",
81680          "name": "labelSelector",
81681          "type": "string",
81682          "uniqueItems": true
81683        },
81684        {
81685          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
81686          "in": "query",
81687          "name": "limit",
81688          "type": "integer",
81689          "uniqueItems": true
81690        },
81691        {
81692          "description": "name of the Role",
81693          "in": "path",
81694          "name": "name",
81695          "required": true,
81696          "type": "string",
81697          "uniqueItems": true
81698        },
81699        {
81700          "description": "object name and auth scope, such as for teams and projects",
81701          "in": "path",
81702          "name": "namespace",
81703          "required": true,
81704          "type": "string",
81705          "uniqueItems": true
81706        },
81707        {
81708          "description": "If 'true', then the output is pretty printed.",
81709          "in": "query",
81710          "name": "pretty",
81711          "type": "string",
81712          "uniqueItems": true
81713        },
81714        {
81715          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
81716          "in": "query",
81717          "name": "resourceVersion",
81718          "type": "string",
81719          "uniqueItems": true
81720        },
81721        {
81722          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
81723          "in": "query",
81724          "name": "resourceVersionMatch",
81725          "type": "string",
81726          "uniqueItems": true
81727        },
81728        {
81729          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
81730          "in": "query",
81731          "name": "timeoutSeconds",
81732          "type": "integer",
81733          "uniqueItems": true
81734        },
81735        {
81736          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
81737          "in": "query",
81738          "name": "watch",
81739          "type": "boolean",
81740          "uniqueItems": true
81741        }
81742      ]
81743    },
81744    "/apis/rbac.authorization.k8s.io/v1alpha1/watch/rolebindings": {
81745      "get": {
81746        "consumes": [
81747          "*/*"
81748        ],
81749        "description": "watch individual changes to a list of RoleBinding. deprecated: use the 'watch' parameter with a list operation instead.",
81750        "operationId": "watchRbacAuthorizationV1alpha1RoleBindingListForAllNamespaces",
81751        "produces": [
81752          "application/json",
81753          "application/yaml",
81754          "application/vnd.kubernetes.protobuf",
81755          "application/json;stream=watch",
81756          "application/vnd.kubernetes.protobuf;stream=watch"
81757        ],
81758        "responses": {
81759          "200": {
81760            "description": "OK",
81761            "schema": {
81762              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
81763            }
81764          },
81765          "401": {
81766            "description": "Unauthorized"
81767          }
81768        },
81769        "schemes": [
81770          "https"
81771        ],
81772        "tags": [
81773          "rbacAuthorization_v1alpha1"
81774        ],
81775        "x-kubernetes-action": "watchlist",
81776        "x-kubernetes-group-version-kind": {
81777          "group": "rbac.authorization.k8s.io",
81778          "kind": "RoleBinding",
81779          "version": "v1alpha1"
81780        }
81781      },
81782      "parameters": [
81783        {
81784          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
81785          "in": "query",
81786          "name": "allowWatchBookmarks",
81787          "type": "boolean",
81788          "uniqueItems": true
81789        },
81790        {
81791          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
81792          "in": "query",
81793          "name": "continue",
81794          "type": "string",
81795          "uniqueItems": true
81796        },
81797        {
81798          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
81799          "in": "query",
81800          "name": "fieldSelector",
81801          "type": "string",
81802          "uniqueItems": true
81803        },
81804        {
81805          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
81806          "in": "query",
81807          "name": "labelSelector",
81808          "type": "string",
81809          "uniqueItems": true
81810        },
81811        {
81812          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
81813          "in": "query",
81814          "name": "limit",
81815          "type": "integer",
81816          "uniqueItems": true
81817        },
81818        {
81819          "description": "If 'true', then the output is pretty printed.",
81820          "in": "query",
81821          "name": "pretty",
81822          "type": "string",
81823          "uniqueItems": true
81824        },
81825        {
81826          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
81827          "in": "query",
81828          "name": "resourceVersion",
81829          "type": "string",
81830          "uniqueItems": true
81831        },
81832        {
81833          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
81834          "in": "query",
81835          "name": "resourceVersionMatch",
81836          "type": "string",
81837          "uniqueItems": true
81838        },
81839        {
81840          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
81841          "in": "query",
81842          "name": "timeoutSeconds",
81843          "type": "integer",
81844          "uniqueItems": true
81845        },
81846        {
81847          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
81848          "in": "query",
81849          "name": "watch",
81850          "type": "boolean",
81851          "uniqueItems": true
81852        }
81853      ]
81854    },
81855    "/apis/rbac.authorization.k8s.io/v1alpha1/watch/roles": {
81856      "get": {
81857        "consumes": [
81858          "*/*"
81859        ],
81860        "description": "watch individual changes to a list of Role. deprecated: use the 'watch' parameter with a list operation instead.",
81861        "operationId": "watchRbacAuthorizationV1alpha1RoleListForAllNamespaces",
81862        "produces": [
81863          "application/json",
81864          "application/yaml",
81865          "application/vnd.kubernetes.protobuf",
81866          "application/json;stream=watch",
81867          "application/vnd.kubernetes.protobuf;stream=watch"
81868        ],
81869        "responses": {
81870          "200": {
81871            "description": "OK",
81872            "schema": {
81873              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
81874            }
81875          },
81876          "401": {
81877            "description": "Unauthorized"
81878          }
81879        },
81880        "schemes": [
81881          "https"
81882        ],
81883        "tags": [
81884          "rbacAuthorization_v1alpha1"
81885        ],
81886        "x-kubernetes-action": "watchlist",
81887        "x-kubernetes-group-version-kind": {
81888          "group": "rbac.authorization.k8s.io",
81889          "kind": "Role",
81890          "version": "v1alpha1"
81891        }
81892      },
81893      "parameters": [
81894        {
81895          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
81896          "in": "query",
81897          "name": "allowWatchBookmarks",
81898          "type": "boolean",
81899          "uniqueItems": true
81900        },
81901        {
81902          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
81903          "in": "query",
81904          "name": "continue",
81905          "type": "string",
81906          "uniqueItems": true
81907        },
81908        {
81909          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
81910          "in": "query",
81911          "name": "fieldSelector",
81912          "type": "string",
81913          "uniqueItems": true
81914        },
81915        {
81916          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
81917          "in": "query",
81918          "name": "labelSelector",
81919          "type": "string",
81920          "uniqueItems": true
81921        },
81922        {
81923          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
81924          "in": "query",
81925          "name": "limit",
81926          "type": "integer",
81927          "uniqueItems": true
81928        },
81929        {
81930          "description": "If 'true', then the output is pretty printed.",
81931          "in": "query",
81932          "name": "pretty",
81933          "type": "string",
81934          "uniqueItems": true
81935        },
81936        {
81937          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
81938          "in": "query",
81939          "name": "resourceVersion",
81940          "type": "string",
81941          "uniqueItems": true
81942        },
81943        {
81944          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
81945          "in": "query",
81946          "name": "resourceVersionMatch",
81947          "type": "string",
81948          "uniqueItems": true
81949        },
81950        {
81951          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
81952          "in": "query",
81953          "name": "timeoutSeconds",
81954          "type": "integer",
81955          "uniqueItems": true
81956        },
81957        {
81958          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
81959          "in": "query",
81960          "name": "watch",
81961          "type": "boolean",
81962          "uniqueItems": true
81963        }
81964      ]
81965    },
81966    "/apis/scheduling.k8s.io/": {
81967      "get": {
81968        "consumes": [
81969          "application/json",
81970          "application/yaml",
81971          "application/vnd.kubernetes.protobuf"
81972        ],
81973        "description": "get information of a group",
81974        "operationId": "getSchedulingAPIGroup",
81975        "produces": [
81976          "application/json",
81977          "application/yaml",
81978          "application/vnd.kubernetes.protobuf"
81979        ],
81980        "responses": {
81981          "200": {
81982            "description": "OK",
81983            "schema": {
81984              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup"
81985            }
81986          },
81987          "401": {
81988            "description": "Unauthorized"
81989          }
81990        },
81991        "schemes": [
81992          "https"
81993        ],
81994        "tags": [
81995          "scheduling"
81996        ]
81997      }
81998    },
81999    "/apis/scheduling.k8s.io/v1/": {
82000      "get": {
82001        "consumes": [
82002          "application/json",
82003          "application/yaml",
82004          "application/vnd.kubernetes.protobuf"
82005        ],
82006        "description": "get available resources",
82007        "operationId": "getSchedulingV1APIResources",
82008        "produces": [
82009          "application/json",
82010          "application/yaml",
82011          "application/vnd.kubernetes.protobuf"
82012        ],
82013        "responses": {
82014          "200": {
82015            "description": "OK",
82016            "schema": {
82017              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
82018            }
82019          },
82020          "401": {
82021            "description": "Unauthorized"
82022          }
82023        },
82024        "schemes": [
82025          "https"
82026        ],
82027        "tags": [
82028          "scheduling_v1"
82029        ]
82030      }
82031    },
82032    "/apis/scheduling.k8s.io/v1/priorityclasses": {
82033      "delete": {
82034        "consumes": [
82035          "*/*"
82036        ],
82037        "description": "delete collection of PriorityClass",
82038        "operationId": "deleteSchedulingV1CollectionPriorityClass",
82039        "parameters": [
82040          {
82041            "in": "body",
82042            "name": "body",
82043            "schema": {
82044              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
82045            }
82046          },
82047          {
82048            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
82049            "in": "query",
82050            "name": "continue",
82051            "type": "string",
82052            "uniqueItems": true
82053          },
82054          {
82055            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
82056            "in": "query",
82057            "name": "dryRun",
82058            "type": "string",
82059            "uniqueItems": true
82060          },
82061          {
82062            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
82063            "in": "query",
82064            "name": "fieldSelector",
82065            "type": "string",
82066            "uniqueItems": true
82067          },
82068          {
82069            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
82070            "in": "query",
82071            "name": "gracePeriodSeconds",
82072            "type": "integer",
82073            "uniqueItems": true
82074          },
82075          {
82076            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
82077            "in": "query",
82078            "name": "labelSelector",
82079            "type": "string",
82080            "uniqueItems": true
82081          },
82082          {
82083            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
82084            "in": "query",
82085            "name": "limit",
82086            "type": "integer",
82087            "uniqueItems": true
82088          },
82089          {
82090            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
82091            "in": "query",
82092            "name": "orphanDependents",
82093            "type": "boolean",
82094            "uniqueItems": true
82095          },
82096          {
82097            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
82098            "in": "query",
82099            "name": "propagationPolicy",
82100            "type": "string",
82101            "uniqueItems": true
82102          },
82103          {
82104            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
82105            "in": "query",
82106            "name": "resourceVersion",
82107            "type": "string",
82108            "uniqueItems": true
82109          },
82110          {
82111            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
82112            "in": "query",
82113            "name": "resourceVersionMatch",
82114            "type": "string",
82115            "uniqueItems": true
82116          },
82117          {
82118            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
82119            "in": "query",
82120            "name": "timeoutSeconds",
82121            "type": "integer",
82122            "uniqueItems": true
82123          }
82124        ],
82125        "produces": [
82126          "application/json",
82127          "application/yaml",
82128          "application/vnd.kubernetes.protobuf"
82129        ],
82130        "responses": {
82131          "200": {
82132            "description": "OK",
82133            "schema": {
82134              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
82135            }
82136          },
82137          "401": {
82138            "description": "Unauthorized"
82139          }
82140        },
82141        "schemes": [
82142          "https"
82143        ],
82144        "tags": [
82145          "scheduling_v1"
82146        ],
82147        "x-kubernetes-action": "deletecollection",
82148        "x-kubernetes-group-version-kind": {
82149          "group": "scheduling.k8s.io",
82150          "kind": "PriorityClass",
82151          "version": "v1"
82152        }
82153      },
82154      "get": {
82155        "consumes": [
82156          "*/*"
82157        ],
82158        "description": "list or watch objects of kind PriorityClass",
82159        "operationId": "listSchedulingV1PriorityClass",
82160        "parameters": [
82161          {
82162            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
82163            "in": "query",
82164            "name": "allowWatchBookmarks",
82165            "type": "boolean",
82166            "uniqueItems": true
82167          },
82168          {
82169            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
82170            "in": "query",
82171            "name": "continue",
82172            "type": "string",
82173            "uniqueItems": true
82174          },
82175          {
82176            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
82177            "in": "query",
82178            "name": "fieldSelector",
82179            "type": "string",
82180            "uniqueItems": true
82181          },
82182          {
82183            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
82184            "in": "query",
82185            "name": "labelSelector",
82186            "type": "string",
82187            "uniqueItems": true
82188          },
82189          {
82190            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
82191            "in": "query",
82192            "name": "limit",
82193            "type": "integer",
82194            "uniqueItems": true
82195          },
82196          {
82197            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
82198            "in": "query",
82199            "name": "resourceVersion",
82200            "type": "string",
82201            "uniqueItems": true
82202          },
82203          {
82204            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
82205            "in": "query",
82206            "name": "resourceVersionMatch",
82207            "type": "string",
82208            "uniqueItems": true
82209          },
82210          {
82211            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
82212            "in": "query",
82213            "name": "timeoutSeconds",
82214            "type": "integer",
82215            "uniqueItems": true
82216          },
82217          {
82218            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
82219            "in": "query",
82220            "name": "watch",
82221            "type": "boolean",
82222            "uniqueItems": true
82223          }
82224        ],
82225        "produces": [
82226          "application/json",
82227          "application/yaml",
82228          "application/vnd.kubernetes.protobuf",
82229          "application/json;stream=watch",
82230          "application/vnd.kubernetes.protobuf;stream=watch"
82231        ],
82232        "responses": {
82233          "200": {
82234            "description": "OK",
82235            "schema": {
82236              "$ref": "#/definitions/io.k8s.api.scheduling.v1.PriorityClassList"
82237            }
82238          },
82239          "401": {
82240            "description": "Unauthorized"
82241          }
82242        },
82243        "schemes": [
82244          "https"
82245        ],
82246        "tags": [
82247          "scheduling_v1"
82248        ],
82249        "x-kubernetes-action": "list",
82250        "x-kubernetes-group-version-kind": {
82251          "group": "scheduling.k8s.io",
82252          "kind": "PriorityClass",
82253          "version": "v1"
82254        }
82255      },
82256      "parameters": [
82257        {
82258          "description": "If 'true', then the output is pretty printed.",
82259          "in": "query",
82260          "name": "pretty",
82261          "type": "string",
82262          "uniqueItems": true
82263        }
82264      ],
82265      "post": {
82266        "consumes": [
82267          "*/*"
82268        ],
82269        "description": "create a PriorityClass",
82270        "operationId": "createSchedulingV1PriorityClass",
82271        "parameters": [
82272          {
82273            "in": "body",
82274            "name": "body",
82275            "required": true,
82276            "schema": {
82277              "$ref": "#/definitions/io.k8s.api.scheduling.v1.PriorityClass"
82278            }
82279          },
82280          {
82281            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
82282            "in": "query",
82283            "name": "dryRun",
82284            "type": "string",
82285            "uniqueItems": true
82286          },
82287          {
82288            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
82289            "in": "query",
82290            "name": "fieldManager",
82291            "type": "string",
82292            "uniqueItems": true
82293          }
82294        ],
82295        "produces": [
82296          "application/json",
82297          "application/yaml",
82298          "application/vnd.kubernetes.protobuf"
82299        ],
82300        "responses": {
82301          "200": {
82302            "description": "OK",
82303            "schema": {
82304              "$ref": "#/definitions/io.k8s.api.scheduling.v1.PriorityClass"
82305            }
82306          },
82307          "201": {
82308            "description": "Created",
82309            "schema": {
82310              "$ref": "#/definitions/io.k8s.api.scheduling.v1.PriorityClass"
82311            }
82312          },
82313          "202": {
82314            "description": "Accepted",
82315            "schema": {
82316              "$ref": "#/definitions/io.k8s.api.scheduling.v1.PriorityClass"
82317            }
82318          },
82319          "401": {
82320            "description": "Unauthorized"
82321          }
82322        },
82323        "schemes": [
82324          "https"
82325        ],
82326        "tags": [
82327          "scheduling_v1"
82328        ],
82329        "x-kubernetes-action": "post",
82330        "x-kubernetes-group-version-kind": {
82331          "group": "scheduling.k8s.io",
82332          "kind": "PriorityClass",
82333          "version": "v1"
82334        }
82335      }
82336    },
82337    "/apis/scheduling.k8s.io/v1/priorityclasses/{name}": {
82338      "delete": {
82339        "consumes": [
82340          "*/*"
82341        ],
82342        "description": "delete a PriorityClass",
82343        "operationId": "deleteSchedulingV1PriorityClass",
82344        "parameters": [
82345          {
82346            "in": "body",
82347            "name": "body",
82348            "schema": {
82349              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
82350            }
82351          },
82352          {
82353            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
82354            "in": "query",
82355            "name": "dryRun",
82356            "type": "string",
82357            "uniqueItems": true
82358          },
82359          {
82360            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
82361            "in": "query",
82362            "name": "gracePeriodSeconds",
82363            "type": "integer",
82364            "uniqueItems": true
82365          },
82366          {
82367            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
82368            "in": "query",
82369            "name": "orphanDependents",
82370            "type": "boolean",
82371            "uniqueItems": true
82372          },
82373          {
82374            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
82375            "in": "query",
82376            "name": "propagationPolicy",
82377            "type": "string",
82378            "uniqueItems": true
82379          }
82380        ],
82381        "produces": [
82382          "application/json",
82383          "application/yaml",
82384          "application/vnd.kubernetes.protobuf"
82385        ],
82386        "responses": {
82387          "200": {
82388            "description": "OK",
82389            "schema": {
82390              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
82391            }
82392          },
82393          "202": {
82394            "description": "Accepted",
82395            "schema": {
82396              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
82397            }
82398          },
82399          "401": {
82400            "description": "Unauthorized"
82401          }
82402        },
82403        "schemes": [
82404          "https"
82405        ],
82406        "tags": [
82407          "scheduling_v1"
82408        ],
82409        "x-kubernetes-action": "delete",
82410        "x-kubernetes-group-version-kind": {
82411          "group": "scheduling.k8s.io",
82412          "kind": "PriorityClass",
82413          "version": "v1"
82414        }
82415      },
82416      "get": {
82417        "consumes": [
82418          "*/*"
82419        ],
82420        "description": "read the specified PriorityClass",
82421        "operationId": "readSchedulingV1PriorityClass",
82422        "produces": [
82423          "application/json",
82424          "application/yaml",
82425          "application/vnd.kubernetes.protobuf"
82426        ],
82427        "responses": {
82428          "200": {
82429            "description": "OK",
82430            "schema": {
82431              "$ref": "#/definitions/io.k8s.api.scheduling.v1.PriorityClass"
82432            }
82433          },
82434          "401": {
82435            "description": "Unauthorized"
82436          }
82437        },
82438        "schemes": [
82439          "https"
82440        ],
82441        "tags": [
82442          "scheduling_v1"
82443        ],
82444        "x-kubernetes-action": "get",
82445        "x-kubernetes-group-version-kind": {
82446          "group": "scheduling.k8s.io",
82447          "kind": "PriorityClass",
82448          "version": "v1"
82449        }
82450      },
82451      "parameters": [
82452        {
82453          "description": "name of the PriorityClass",
82454          "in": "path",
82455          "name": "name",
82456          "required": true,
82457          "type": "string",
82458          "uniqueItems": true
82459        },
82460        {
82461          "description": "If 'true', then the output is pretty printed.",
82462          "in": "query",
82463          "name": "pretty",
82464          "type": "string",
82465          "uniqueItems": true
82466        }
82467      ],
82468      "patch": {
82469        "consumes": [
82470          "application/json-patch+json",
82471          "application/merge-patch+json",
82472          "application/strategic-merge-patch+json",
82473          "application/apply-patch+yaml"
82474        ],
82475        "description": "partially update the specified PriorityClass",
82476        "operationId": "patchSchedulingV1PriorityClass",
82477        "parameters": [
82478          {
82479            "in": "body",
82480            "name": "body",
82481            "required": true,
82482            "schema": {
82483              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
82484            }
82485          },
82486          {
82487            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
82488            "in": "query",
82489            "name": "dryRun",
82490            "type": "string",
82491            "uniqueItems": true
82492          },
82493          {
82494            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
82495            "in": "query",
82496            "name": "fieldManager",
82497            "type": "string",
82498            "uniqueItems": true
82499          },
82500          {
82501            "description": "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.",
82502            "in": "query",
82503            "name": "force",
82504            "type": "boolean",
82505            "uniqueItems": true
82506          }
82507        ],
82508        "produces": [
82509          "application/json",
82510          "application/yaml",
82511          "application/vnd.kubernetes.protobuf"
82512        ],
82513        "responses": {
82514          "200": {
82515            "description": "OK",
82516            "schema": {
82517              "$ref": "#/definitions/io.k8s.api.scheduling.v1.PriorityClass"
82518            }
82519          },
82520          "201": {
82521            "description": "Created",
82522            "schema": {
82523              "$ref": "#/definitions/io.k8s.api.scheduling.v1.PriorityClass"
82524            }
82525          },
82526          "401": {
82527            "description": "Unauthorized"
82528          }
82529        },
82530        "schemes": [
82531          "https"
82532        ],
82533        "tags": [
82534          "scheduling_v1"
82535        ],
82536        "x-kubernetes-action": "patch",
82537        "x-kubernetes-group-version-kind": {
82538          "group": "scheduling.k8s.io",
82539          "kind": "PriorityClass",
82540          "version": "v1"
82541        }
82542      },
82543      "put": {
82544        "consumes": [
82545          "*/*"
82546        ],
82547        "description": "replace the specified PriorityClass",
82548        "operationId": "replaceSchedulingV1PriorityClass",
82549        "parameters": [
82550          {
82551            "in": "body",
82552            "name": "body",
82553            "required": true,
82554            "schema": {
82555              "$ref": "#/definitions/io.k8s.api.scheduling.v1.PriorityClass"
82556            }
82557          },
82558          {
82559            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
82560            "in": "query",
82561            "name": "dryRun",
82562            "type": "string",
82563            "uniqueItems": true
82564          },
82565          {
82566            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
82567            "in": "query",
82568            "name": "fieldManager",
82569            "type": "string",
82570            "uniqueItems": true
82571          }
82572        ],
82573        "produces": [
82574          "application/json",
82575          "application/yaml",
82576          "application/vnd.kubernetes.protobuf"
82577        ],
82578        "responses": {
82579          "200": {
82580            "description": "OK",
82581            "schema": {
82582              "$ref": "#/definitions/io.k8s.api.scheduling.v1.PriorityClass"
82583            }
82584          },
82585          "201": {
82586            "description": "Created",
82587            "schema": {
82588              "$ref": "#/definitions/io.k8s.api.scheduling.v1.PriorityClass"
82589            }
82590          },
82591          "401": {
82592            "description": "Unauthorized"
82593          }
82594        },
82595        "schemes": [
82596          "https"
82597        ],
82598        "tags": [
82599          "scheduling_v1"
82600        ],
82601        "x-kubernetes-action": "put",
82602        "x-kubernetes-group-version-kind": {
82603          "group": "scheduling.k8s.io",
82604          "kind": "PriorityClass",
82605          "version": "v1"
82606        }
82607      }
82608    },
82609    "/apis/scheduling.k8s.io/v1/watch/priorityclasses": {
82610      "get": {
82611        "consumes": [
82612          "*/*"
82613        ],
82614        "description": "watch individual changes to a list of PriorityClass. deprecated: use the 'watch' parameter with a list operation instead.",
82615        "operationId": "watchSchedulingV1PriorityClassList",
82616        "produces": [
82617          "application/json",
82618          "application/yaml",
82619          "application/vnd.kubernetes.protobuf",
82620          "application/json;stream=watch",
82621          "application/vnd.kubernetes.protobuf;stream=watch"
82622        ],
82623        "responses": {
82624          "200": {
82625            "description": "OK",
82626            "schema": {
82627              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
82628            }
82629          },
82630          "401": {
82631            "description": "Unauthorized"
82632          }
82633        },
82634        "schemes": [
82635          "https"
82636        ],
82637        "tags": [
82638          "scheduling_v1"
82639        ],
82640        "x-kubernetes-action": "watchlist",
82641        "x-kubernetes-group-version-kind": {
82642          "group": "scheduling.k8s.io",
82643          "kind": "PriorityClass",
82644          "version": "v1"
82645        }
82646      },
82647      "parameters": [
82648        {
82649          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
82650          "in": "query",
82651          "name": "allowWatchBookmarks",
82652          "type": "boolean",
82653          "uniqueItems": true
82654        },
82655        {
82656          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
82657          "in": "query",
82658          "name": "continue",
82659          "type": "string",
82660          "uniqueItems": true
82661        },
82662        {
82663          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
82664          "in": "query",
82665          "name": "fieldSelector",
82666          "type": "string",
82667          "uniqueItems": true
82668        },
82669        {
82670          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
82671          "in": "query",
82672          "name": "labelSelector",
82673          "type": "string",
82674          "uniqueItems": true
82675        },
82676        {
82677          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
82678          "in": "query",
82679          "name": "limit",
82680          "type": "integer",
82681          "uniqueItems": true
82682        },
82683        {
82684          "description": "If 'true', then the output is pretty printed.",
82685          "in": "query",
82686          "name": "pretty",
82687          "type": "string",
82688          "uniqueItems": true
82689        },
82690        {
82691          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
82692          "in": "query",
82693          "name": "resourceVersion",
82694          "type": "string",
82695          "uniqueItems": true
82696        },
82697        {
82698          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
82699          "in": "query",
82700          "name": "resourceVersionMatch",
82701          "type": "string",
82702          "uniqueItems": true
82703        },
82704        {
82705          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
82706          "in": "query",
82707          "name": "timeoutSeconds",
82708          "type": "integer",
82709          "uniqueItems": true
82710        },
82711        {
82712          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
82713          "in": "query",
82714          "name": "watch",
82715          "type": "boolean",
82716          "uniqueItems": true
82717        }
82718      ]
82719    },
82720    "/apis/scheduling.k8s.io/v1/watch/priorityclasses/{name}": {
82721      "get": {
82722        "consumes": [
82723          "*/*"
82724        ],
82725        "description": "watch changes to an object of kind PriorityClass. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.",
82726        "operationId": "watchSchedulingV1PriorityClass",
82727        "produces": [
82728          "application/json",
82729          "application/yaml",
82730          "application/vnd.kubernetes.protobuf",
82731          "application/json;stream=watch",
82732          "application/vnd.kubernetes.protobuf;stream=watch"
82733        ],
82734        "responses": {
82735          "200": {
82736            "description": "OK",
82737            "schema": {
82738              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
82739            }
82740          },
82741          "401": {
82742            "description": "Unauthorized"
82743          }
82744        },
82745        "schemes": [
82746          "https"
82747        ],
82748        "tags": [
82749          "scheduling_v1"
82750        ],
82751        "x-kubernetes-action": "watch",
82752        "x-kubernetes-group-version-kind": {
82753          "group": "scheduling.k8s.io",
82754          "kind": "PriorityClass",
82755          "version": "v1"
82756        }
82757      },
82758      "parameters": [
82759        {
82760          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
82761          "in": "query",
82762          "name": "allowWatchBookmarks",
82763          "type": "boolean",
82764          "uniqueItems": true
82765        },
82766        {
82767          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
82768          "in": "query",
82769          "name": "continue",
82770          "type": "string",
82771          "uniqueItems": true
82772        },
82773        {
82774          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
82775          "in": "query",
82776          "name": "fieldSelector",
82777          "type": "string",
82778          "uniqueItems": true
82779        },
82780        {
82781          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
82782          "in": "query",
82783          "name": "labelSelector",
82784          "type": "string",
82785          "uniqueItems": true
82786        },
82787        {
82788          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
82789          "in": "query",
82790          "name": "limit",
82791          "type": "integer",
82792          "uniqueItems": true
82793        },
82794        {
82795          "description": "name of the PriorityClass",
82796          "in": "path",
82797          "name": "name",
82798          "required": true,
82799          "type": "string",
82800          "uniqueItems": true
82801        },
82802        {
82803          "description": "If 'true', then the output is pretty printed.",
82804          "in": "query",
82805          "name": "pretty",
82806          "type": "string",
82807          "uniqueItems": true
82808        },
82809        {
82810          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
82811          "in": "query",
82812          "name": "resourceVersion",
82813          "type": "string",
82814          "uniqueItems": true
82815        },
82816        {
82817          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
82818          "in": "query",
82819          "name": "resourceVersionMatch",
82820          "type": "string",
82821          "uniqueItems": true
82822        },
82823        {
82824          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
82825          "in": "query",
82826          "name": "timeoutSeconds",
82827          "type": "integer",
82828          "uniqueItems": true
82829        },
82830        {
82831          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
82832          "in": "query",
82833          "name": "watch",
82834          "type": "boolean",
82835          "uniqueItems": true
82836        }
82837      ]
82838    },
82839    "/apis/scheduling.k8s.io/v1alpha1/": {
82840      "get": {
82841        "consumes": [
82842          "application/json",
82843          "application/yaml",
82844          "application/vnd.kubernetes.protobuf"
82845        ],
82846        "description": "get available resources",
82847        "operationId": "getSchedulingV1alpha1APIResources",
82848        "produces": [
82849          "application/json",
82850          "application/yaml",
82851          "application/vnd.kubernetes.protobuf"
82852        ],
82853        "responses": {
82854          "200": {
82855            "description": "OK",
82856            "schema": {
82857              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
82858            }
82859          },
82860          "401": {
82861            "description": "Unauthorized"
82862          }
82863        },
82864        "schemes": [
82865          "https"
82866        ],
82867        "tags": [
82868          "scheduling_v1alpha1"
82869        ]
82870      }
82871    },
82872    "/apis/scheduling.k8s.io/v1alpha1/priorityclasses": {
82873      "delete": {
82874        "consumes": [
82875          "*/*"
82876        ],
82877        "description": "delete collection of PriorityClass",
82878        "operationId": "deleteSchedulingV1alpha1CollectionPriorityClass",
82879        "parameters": [
82880          {
82881            "in": "body",
82882            "name": "body",
82883            "schema": {
82884              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
82885            }
82886          },
82887          {
82888            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
82889            "in": "query",
82890            "name": "continue",
82891            "type": "string",
82892            "uniqueItems": true
82893          },
82894          {
82895            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
82896            "in": "query",
82897            "name": "dryRun",
82898            "type": "string",
82899            "uniqueItems": true
82900          },
82901          {
82902            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
82903            "in": "query",
82904            "name": "fieldSelector",
82905            "type": "string",
82906            "uniqueItems": true
82907          },
82908          {
82909            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
82910            "in": "query",
82911            "name": "gracePeriodSeconds",
82912            "type": "integer",
82913            "uniqueItems": true
82914          },
82915          {
82916            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
82917            "in": "query",
82918            "name": "labelSelector",
82919            "type": "string",
82920            "uniqueItems": true
82921          },
82922          {
82923            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
82924            "in": "query",
82925            "name": "limit",
82926            "type": "integer",
82927            "uniqueItems": true
82928          },
82929          {
82930            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
82931            "in": "query",
82932            "name": "orphanDependents",
82933            "type": "boolean",
82934            "uniqueItems": true
82935          },
82936          {
82937            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
82938            "in": "query",
82939            "name": "propagationPolicy",
82940            "type": "string",
82941            "uniqueItems": true
82942          },
82943          {
82944            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
82945            "in": "query",
82946            "name": "resourceVersion",
82947            "type": "string",
82948            "uniqueItems": true
82949          },
82950          {
82951            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
82952            "in": "query",
82953            "name": "resourceVersionMatch",
82954            "type": "string",
82955            "uniqueItems": true
82956          },
82957          {
82958            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
82959            "in": "query",
82960            "name": "timeoutSeconds",
82961            "type": "integer",
82962            "uniqueItems": true
82963          }
82964        ],
82965        "produces": [
82966          "application/json",
82967          "application/yaml",
82968          "application/vnd.kubernetes.protobuf"
82969        ],
82970        "responses": {
82971          "200": {
82972            "description": "OK",
82973            "schema": {
82974              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
82975            }
82976          },
82977          "401": {
82978            "description": "Unauthorized"
82979          }
82980        },
82981        "schemes": [
82982          "https"
82983        ],
82984        "tags": [
82985          "scheduling_v1alpha1"
82986        ],
82987        "x-kubernetes-action": "deletecollection",
82988        "x-kubernetes-group-version-kind": {
82989          "group": "scheduling.k8s.io",
82990          "kind": "PriorityClass",
82991          "version": "v1alpha1"
82992        }
82993      },
82994      "get": {
82995        "consumes": [
82996          "*/*"
82997        ],
82998        "description": "list or watch objects of kind PriorityClass",
82999        "operationId": "listSchedulingV1alpha1PriorityClass",
83000        "parameters": [
83001          {
83002            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
83003            "in": "query",
83004            "name": "allowWatchBookmarks",
83005            "type": "boolean",
83006            "uniqueItems": true
83007          },
83008          {
83009            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
83010            "in": "query",
83011            "name": "continue",
83012            "type": "string",
83013            "uniqueItems": true
83014          },
83015          {
83016            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
83017            "in": "query",
83018            "name": "fieldSelector",
83019            "type": "string",
83020            "uniqueItems": true
83021          },
83022          {
83023            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
83024            "in": "query",
83025            "name": "labelSelector",
83026            "type": "string",
83027            "uniqueItems": true
83028          },
83029          {
83030            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
83031            "in": "query",
83032            "name": "limit",
83033            "type": "integer",
83034            "uniqueItems": true
83035          },
83036          {
83037            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
83038            "in": "query",
83039            "name": "resourceVersion",
83040            "type": "string",
83041            "uniqueItems": true
83042          },
83043          {
83044            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
83045            "in": "query",
83046            "name": "resourceVersionMatch",
83047            "type": "string",
83048            "uniqueItems": true
83049          },
83050          {
83051            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
83052            "in": "query",
83053            "name": "timeoutSeconds",
83054            "type": "integer",
83055            "uniqueItems": true
83056          },
83057          {
83058            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
83059            "in": "query",
83060            "name": "watch",
83061            "type": "boolean",
83062            "uniqueItems": true
83063          }
83064        ],
83065        "produces": [
83066          "application/json",
83067          "application/yaml",
83068          "application/vnd.kubernetes.protobuf",
83069          "application/json;stream=watch",
83070          "application/vnd.kubernetes.protobuf;stream=watch"
83071        ],
83072        "responses": {
83073          "200": {
83074            "description": "OK",
83075            "schema": {
83076              "$ref": "#/definitions/io.k8s.api.scheduling.v1alpha1.PriorityClassList"
83077            }
83078          },
83079          "401": {
83080            "description": "Unauthorized"
83081          }
83082        },
83083        "schemes": [
83084          "https"
83085        ],
83086        "tags": [
83087          "scheduling_v1alpha1"
83088        ],
83089        "x-kubernetes-action": "list",
83090        "x-kubernetes-group-version-kind": {
83091          "group": "scheduling.k8s.io",
83092          "kind": "PriorityClass",
83093          "version": "v1alpha1"
83094        }
83095      },
83096      "parameters": [
83097        {
83098          "description": "If 'true', then the output is pretty printed.",
83099          "in": "query",
83100          "name": "pretty",
83101          "type": "string",
83102          "uniqueItems": true
83103        }
83104      ],
83105      "post": {
83106        "consumes": [
83107          "*/*"
83108        ],
83109        "description": "create a PriorityClass",
83110        "operationId": "createSchedulingV1alpha1PriorityClass",
83111        "parameters": [
83112          {
83113            "in": "body",
83114            "name": "body",
83115            "required": true,
83116            "schema": {
83117              "$ref": "#/definitions/io.k8s.api.scheduling.v1alpha1.PriorityClass"
83118            }
83119          },
83120          {
83121            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
83122            "in": "query",
83123            "name": "dryRun",
83124            "type": "string",
83125            "uniqueItems": true
83126          },
83127          {
83128            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
83129            "in": "query",
83130            "name": "fieldManager",
83131            "type": "string",
83132            "uniqueItems": true
83133          }
83134        ],
83135        "produces": [
83136          "application/json",
83137          "application/yaml",
83138          "application/vnd.kubernetes.protobuf"
83139        ],
83140        "responses": {
83141          "200": {
83142            "description": "OK",
83143            "schema": {
83144              "$ref": "#/definitions/io.k8s.api.scheduling.v1alpha1.PriorityClass"
83145            }
83146          },
83147          "201": {
83148            "description": "Created",
83149            "schema": {
83150              "$ref": "#/definitions/io.k8s.api.scheduling.v1alpha1.PriorityClass"
83151            }
83152          },
83153          "202": {
83154            "description": "Accepted",
83155            "schema": {
83156              "$ref": "#/definitions/io.k8s.api.scheduling.v1alpha1.PriorityClass"
83157            }
83158          },
83159          "401": {
83160            "description": "Unauthorized"
83161          }
83162        },
83163        "schemes": [
83164          "https"
83165        ],
83166        "tags": [
83167          "scheduling_v1alpha1"
83168        ],
83169        "x-kubernetes-action": "post",
83170        "x-kubernetes-group-version-kind": {
83171          "group": "scheduling.k8s.io",
83172          "kind": "PriorityClass",
83173          "version": "v1alpha1"
83174        }
83175      }
83176    },
83177    "/apis/scheduling.k8s.io/v1alpha1/priorityclasses/{name}": {
83178      "delete": {
83179        "consumes": [
83180          "*/*"
83181        ],
83182        "description": "delete a PriorityClass",
83183        "operationId": "deleteSchedulingV1alpha1PriorityClass",
83184        "parameters": [
83185          {
83186            "in": "body",
83187            "name": "body",
83188            "schema": {
83189              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
83190            }
83191          },
83192          {
83193            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
83194            "in": "query",
83195            "name": "dryRun",
83196            "type": "string",
83197            "uniqueItems": true
83198          },
83199          {
83200            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
83201            "in": "query",
83202            "name": "gracePeriodSeconds",
83203            "type": "integer",
83204            "uniqueItems": true
83205          },
83206          {
83207            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
83208            "in": "query",
83209            "name": "orphanDependents",
83210            "type": "boolean",
83211            "uniqueItems": true
83212          },
83213          {
83214            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
83215            "in": "query",
83216            "name": "propagationPolicy",
83217            "type": "string",
83218            "uniqueItems": true
83219          }
83220        ],
83221        "produces": [
83222          "application/json",
83223          "application/yaml",
83224          "application/vnd.kubernetes.protobuf"
83225        ],
83226        "responses": {
83227          "200": {
83228            "description": "OK",
83229            "schema": {
83230              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
83231            }
83232          },
83233          "202": {
83234            "description": "Accepted",
83235            "schema": {
83236              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
83237            }
83238          },
83239          "401": {
83240            "description": "Unauthorized"
83241          }
83242        },
83243        "schemes": [
83244          "https"
83245        ],
83246        "tags": [
83247          "scheduling_v1alpha1"
83248        ],
83249        "x-kubernetes-action": "delete",
83250        "x-kubernetes-group-version-kind": {
83251          "group": "scheduling.k8s.io",
83252          "kind": "PriorityClass",
83253          "version": "v1alpha1"
83254        }
83255      },
83256      "get": {
83257        "consumes": [
83258          "*/*"
83259        ],
83260        "description": "read the specified PriorityClass",
83261        "operationId": "readSchedulingV1alpha1PriorityClass",
83262        "produces": [
83263          "application/json",
83264          "application/yaml",
83265          "application/vnd.kubernetes.protobuf"
83266        ],
83267        "responses": {
83268          "200": {
83269            "description": "OK",
83270            "schema": {
83271              "$ref": "#/definitions/io.k8s.api.scheduling.v1alpha1.PriorityClass"
83272            }
83273          },
83274          "401": {
83275            "description": "Unauthorized"
83276          }
83277        },
83278        "schemes": [
83279          "https"
83280        ],
83281        "tags": [
83282          "scheduling_v1alpha1"
83283        ],
83284        "x-kubernetes-action": "get",
83285        "x-kubernetes-group-version-kind": {
83286          "group": "scheduling.k8s.io",
83287          "kind": "PriorityClass",
83288          "version": "v1alpha1"
83289        }
83290      },
83291      "parameters": [
83292        {
83293          "description": "name of the PriorityClass",
83294          "in": "path",
83295          "name": "name",
83296          "required": true,
83297          "type": "string",
83298          "uniqueItems": true
83299        },
83300        {
83301          "description": "If 'true', then the output is pretty printed.",
83302          "in": "query",
83303          "name": "pretty",
83304          "type": "string",
83305          "uniqueItems": true
83306        }
83307      ],
83308      "patch": {
83309        "consumes": [
83310          "application/json-patch+json",
83311          "application/merge-patch+json",
83312          "application/strategic-merge-patch+json",
83313          "application/apply-patch+yaml"
83314        ],
83315        "description": "partially update the specified PriorityClass",
83316        "operationId": "patchSchedulingV1alpha1PriorityClass",
83317        "parameters": [
83318          {
83319            "in": "body",
83320            "name": "body",
83321            "required": true,
83322            "schema": {
83323              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
83324            }
83325          },
83326          {
83327            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
83328            "in": "query",
83329            "name": "dryRun",
83330            "type": "string",
83331            "uniqueItems": true
83332          },
83333          {
83334            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
83335            "in": "query",
83336            "name": "fieldManager",
83337            "type": "string",
83338            "uniqueItems": true
83339          },
83340          {
83341            "description": "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.",
83342            "in": "query",
83343            "name": "force",
83344            "type": "boolean",
83345            "uniqueItems": true
83346          }
83347        ],
83348        "produces": [
83349          "application/json",
83350          "application/yaml",
83351          "application/vnd.kubernetes.protobuf"
83352        ],
83353        "responses": {
83354          "200": {
83355            "description": "OK",
83356            "schema": {
83357              "$ref": "#/definitions/io.k8s.api.scheduling.v1alpha1.PriorityClass"
83358            }
83359          },
83360          "201": {
83361            "description": "Created",
83362            "schema": {
83363              "$ref": "#/definitions/io.k8s.api.scheduling.v1alpha1.PriorityClass"
83364            }
83365          },
83366          "401": {
83367            "description": "Unauthorized"
83368          }
83369        },
83370        "schemes": [
83371          "https"
83372        ],
83373        "tags": [
83374          "scheduling_v1alpha1"
83375        ],
83376        "x-kubernetes-action": "patch",
83377        "x-kubernetes-group-version-kind": {
83378          "group": "scheduling.k8s.io",
83379          "kind": "PriorityClass",
83380          "version": "v1alpha1"
83381        }
83382      },
83383      "put": {
83384        "consumes": [
83385          "*/*"
83386        ],
83387        "description": "replace the specified PriorityClass",
83388        "operationId": "replaceSchedulingV1alpha1PriorityClass",
83389        "parameters": [
83390          {
83391            "in": "body",
83392            "name": "body",
83393            "required": true,
83394            "schema": {
83395              "$ref": "#/definitions/io.k8s.api.scheduling.v1alpha1.PriorityClass"
83396            }
83397          },
83398          {
83399            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
83400            "in": "query",
83401            "name": "dryRun",
83402            "type": "string",
83403            "uniqueItems": true
83404          },
83405          {
83406            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
83407            "in": "query",
83408            "name": "fieldManager",
83409            "type": "string",
83410            "uniqueItems": true
83411          }
83412        ],
83413        "produces": [
83414          "application/json",
83415          "application/yaml",
83416          "application/vnd.kubernetes.protobuf"
83417        ],
83418        "responses": {
83419          "200": {
83420            "description": "OK",
83421            "schema": {
83422              "$ref": "#/definitions/io.k8s.api.scheduling.v1alpha1.PriorityClass"
83423            }
83424          },
83425          "201": {
83426            "description": "Created",
83427            "schema": {
83428              "$ref": "#/definitions/io.k8s.api.scheduling.v1alpha1.PriorityClass"
83429            }
83430          },
83431          "401": {
83432            "description": "Unauthorized"
83433          }
83434        },
83435        "schemes": [
83436          "https"
83437        ],
83438        "tags": [
83439          "scheduling_v1alpha1"
83440        ],
83441        "x-kubernetes-action": "put",
83442        "x-kubernetes-group-version-kind": {
83443          "group": "scheduling.k8s.io",
83444          "kind": "PriorityClass",
83445          "version": "v1alpha1"
83446        }
83447      }
83448    },
83449    "/apis/scheduling.k8s.io/v1alpha1/watch/priorityclasses": {
83450      "get": {
83451        "consumes": [
83452          "*/*"
83453        ],
83454        "description": "watch individual changes to a list of PriorityClass. deprecated: use the 'watch' parameter with a list operation instead.",
83455        "operationId": "watchSchedulingV1alpha1PriorityClassList",
83456        "produces": [
83457          "application/json",
83458          "application/yaml",
83459          "application/vnd.kubernetes.protobuf",
83460          "application/json;stream=watch",
83461          "application/vnd.kubernetes.protobuf;stream=watch"
83462        ],
83463        "responses": {
83464          "200": {
83465            "description": "OK",
83466            "schema": {
83467              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
83468            }
83469          },
83470          "401": {
83471            "description": "Unauthorized"
83472          }
83473        },
83474        "schemes": [
83475          "https"
83476        ],
83477        "tags": [
83478          "scheduling_v1alpha1"
83479        ],
83480        "x-kubernetes-action": "watchlist",
83481        "x-kubernetes-group-version-kind": {
83482          "group": "scheduling.k8s.io",
83483          "kind": "PriorityClass",
83484          "version": "v1alpha1"
83485        }
83486      },
83487      "parameters": [
83488        {
83489          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
83490          "in": "query",
83491          "name": "allowWatchBookmarks",
83492          "type": "boolean",
83493          "uniqueItems": true
83494        },
83495        {
83496          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
83497          "in": "query",
83498          "name": "continue",
83499          "type": "string",
83500          "uniqueItems": true
83501        },
83502        {
83503          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
83504          "in": "query",
83505          "name": "fieldSelector",
83506          "type": "string",
83507          "uniqueItems": true
83508        },
83509        {
83510          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
83511          "in": "query",
83512          "name": "labelSelector",
83513          "type": "string",
83514          "uniqueItems": true
83515        },
83516        {
83517          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
83518          "in": "query",
83519          "name": "limit",
83520          "type": "integer",
83521          "uniqueItems": true
83522        },
83523        {
83524          "description": "If 'true', then the output is pretty printed.",
83525          "in": "query",
83526          "name": "pretty",
83527          "type": "string",
83528          "uniqueItems": true
83529        },
83530        {
83531          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
83532          "in": "query",
83533          "name": "resourceVersion",
83534          "type": "string",
83535          "uniqueItems": true
83536        },
83537        {
83538          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
83539          "in": "query",
83540          "name": "resourceVersionMatch",
83541          "type": "string",
83542          "uniqueItems": true
83543        },
83544        {
83545          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
83546          "in": "query",
83547          "name": "timeoutSeconds",
83548          "type": "integer",
83549          "uniqueItems": true
83550        },
83551        {
83552          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
83553          "in": "query",
83554          "name": "watch",
83555          "type": "boolean",
83556          "uniqueItems": true
83557        }
83558      ]
83559    },
83560    "/apis/scheduling.k8s.io/v1alpha1/watch/priorityclasses/{name}": {
83561      "get": {
83562        "consumes": [
83563          "*/*"
83564        ],
83565        "description": "watch changes to an object of kind PriorityClass. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.",
83566        "operationId": "watchSchedulingV1alpha1PriorityClass",
83567        "produces": [
83568          "application/json",
83569          "application/yaml",
83570          "application/vnd.kubernetes.protobuf",
83571          "application/json;stream=watch",
83572          "application/vnd.kubernetes.protobuf;stream=watch"
83573        ],
83574        "responses": {
83575          "200": {
83576            "description": "OK",
83577            "schema": {
83578              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
83579            }
83580          },
83581          "401": {
83582            "description": "Unauthorized"
83583          }
83584        },
83585        "schemes": [
83586          "https"
83587        ],
83588        "tags": [
83589          "scheduling_v1alpha1"
83590        ],
83591        "x-kubernetes-action": "watch",
83592        "x-kubernetes-group-version-kind": {
83593          "group": "scheduling.k8s.io",
83594          "kind": "PriorityClass",
83595          "version": "v1alpha1"
83596        }
83597      },
83598      "parameters": [
83599        {
83600          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
83601          "in": "query",
83602          "name": "allowWatchBookmarks",
83603          "type": "boolean",
83604          "uniqueItems": true
83605        },
83606        {
83607          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
83608          "in": "query",
83609          "name": "continue",
83610          "type": "string",
83611          "uniqueItems": true
83612        },
83613        {
83614          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
83615          "in": "query",
83616          "name": "fieldSelector",
83617          "type": "string",
83618          "uniqueItems": true
83619        },
83620        {
83621          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
83622          "in": "query",
83623          "name": "labelSelector",
83624          "type": "string",
83625          "uniqueItems": true
83626        },
83627        {
83628          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
83629          "in": "query",
83630          "name": "limit",
83631          "type": "integer",
83632          "uniqueItems": true
83633        },
83634        {
83635          "description": "name of the PriorityClass",
83636          "in": "path",
83637          "name": "name",
83638          "required": true,
83639          "type": "string",
83640          "uniqueItems": true
83641        },
83642        {
83643          "description": "If 'true', then the output is pretty printed.",
83644          "in": "query",
83645          "name": "pretty",
83646          "type": "string",
83647          "uniqueItems": true
83648        },
83649        {
83650          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
83651          "in": "query",
83652          "name": "resourceVersion",
83653          "type": "string",
83654          "uniqueItems": true
83655        },
83656        {
83657          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
83658          "in": "query",
83659          "name": "resourceVersionMatch",
83660          "type": "string",
83661          "uniqueItems": true
83662        },
83663        {
83664          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
83665          "in": "query",
83666          "name": "timeoutSeconds",
83667          "type": "integer",
83668          "uniqueItems": true
83669        },
83670        {
83671          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
83672          "in": "query",
83673          "name": "watch",
83674          "type": "boolean",
83675          "uniqueItems": true
83676        }
83677      ]
83678    },
83679    "/apis/storage.k8s.io/": {
83680      "get": {
83681        "consumes": [
83682          "application/json",
83683          "application/yaml",
83684          "application/vnd.kubernetes.protobuf"
83685        ],
83686        "description": "get information of a group",
83687        "operationId": "getStorageAPIGroup",
83688        "produces": [
83689          "application/json",
83690          "application/yaml",
83691          "application/vnd.kubernetes.protobuf"
83692        ],
83693        "responses": {
83694          "200": {
83695            "description": "OK",
83696            "schema": {
83697              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup"
83698            }
83699          },
83700          "401": {
83701            "description": "Unauthorized"
83702          }
83703        },
83704        "schemes": [
83705          "https"
83706        ],
83707        "tags": [
83708          "storage"
83709        ]
83710      }
83711    },
83712    "/apis/storage.k8s.io/v1/": {
83713      "get": {
83714        "consumes": [
83715          "application/json",
83716          "application/yaml",
83717          "application/vnd.kubernetes.protobuf"
83718        ],
83719        "description": "get available resources",
83720        "operationId": "getStorageV1APIResources",
83721        "produces": [
83722          "application/json",
83723          "application/yaml",
83724          "application/vnd.kubernetes.protobuf"
83725        ],
83726        "responses": {
83727          "200": {
83728            "description": "OK",
83729            "schema": {
83730              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
83731            }
83732          },
83733          "401": {
83734            "description": "Unauthorized"
83735          }
83736        },
83737        "schemes": [
83738          "https"
83739        ],
83740        "tags": [
83741          "storage_v1"
83742        ]
83743      }
83744    },
83745    "/apis/storage.k8s.io/v1/csidrivers": {
83746      "delete": {
83747        "consumes": [
83748          "*/*"
83749        ],
83750        "description": "delete collection of CSIDriver",
83751        "operationId": "deleteStorageV1CollectionCSIDriver",
83752        "parameters": [
83753          {
83754            "in": "body",
83755            "name": "body",
83756            "schema": {
83757              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
83758            }
83759          },
83760          {
83761            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
83762            "in": "query",
83763            "name": "continue",
83764            "type": "string",
83765            "uniqueItems": true
83766          },
83767          {
83768            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
83769            "in": "query",
83770            "name": "dryRun",
83771            "type": "string",
83772            "uniqueItems": true
83773          },
83774          {
83775            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
83776            "in": "query",
83777            "name": "fieldSelector",
83778            "type": "string",
83779            "uniqueItems": true
83780          },
83781          {
83782            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
83783            "in": "query",
83784            "name": "gracePeriodSeconds",
83785            "type": "integer",
83786            "uniqueItems": true
83787          },
83788          {
83789            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
83790            "in": "query",
83791            "name": "labelSelector",
83792            "type": "string",
83793            "uniqueItems": true
83794          },
83795          {
83796            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
83797            "in": "query",
83798            "name": "limit",
83799            "type": "integer",
83800            "uniqueItems": true
83801          },
83802          {
83803            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
83804            "in": "query",
83805            "name": "orphanDependents",
83806            "type": "boolean",
83807            "uniqueItems": true
83808          },
83809          {
83810            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
83811            "in": "query",
83812            "name": "propagationPolicy",
83813            "type": "string",
83814            "uniqueItems": true
83815          },
83816          {
83817            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
83818            "in": "query",
83819            "name": "resourceVersion",
83820            "type": "string",
83821            "uniqueItems": true
83822          },
83823          {
83824            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
83825            "in": "query",
83826            "name": "resourceVersionMatch",
83827            "type": "string",
83828            "uniqueItems": true
83829          },
83830          {
83831            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
83832            "in": "query",
83833            "name": "timeoutSeconds",
83834            "type": "integer",
83835            "uniqueItems": true
83836          }
83837        ],
83838        "produces": [
83839          "application/json",
83840          "application/yaml",
83841          "application/vnd.kubernetes.protobuf"
83842        ],
83843        "responses": {
83844          "200": {
83845            "description": "OK",
83846            "schema": {
83847              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
83848            }
83849          },
83850          "401": {
83851            "description": "Unauthorized"
83852          }
83853        },
83854        "schemes": [
83855          "https"
83856        ],
83857        "tags": [
83858          "storage_v1"
83859        ],
83860        "x-kubernetes-action": "deletecollection",
83861        "x-kubernetes-group-version-kind": {
83862          "group": "storage.k8s.io",
83863          "kind": "CSIDriver",
83864          "version": "v1"
83865        }
83866      },
83867      "get": {
83868        "consumes": [
83869          "*/*"
83870        ],
83871        "description": "list or watch objects of kind CSIDriver",
83872        "operationId": "listStorageV1CSIDriver",
83873        "parameters": [
83874          {
83875            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
83876            "in": "query",
83877            "name": "allowWatchBookmarks",
83878            "type": "boolean",
83879            "uniqueItems": true
83880          },
83881          {
83882            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
83883            "in": "query",
83884            "name": "continue",
83885            "type": "string",
83886            "uniqueItems": true
83887          },
83888          {
83889            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
83890            "in": "query",
83891            "name": "fieldSelector",
83892            "type": "string",
83893            "uniqueItems": true
83894          },
83895          {
83896            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
83897            "in": "query",
83898            "name": "labelSelector",
83899            "type": "string",
83900            "uniqueItems": true
83901          },
83902          {
83903            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
83904            "in": "query",
83905            "name": "limit",
83906            "type": "integer",
83907            "uniqueItems": true
83908          },
83909          {
83910            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
83911            "in": "query",
83912            "name": "resourceVersion",
83913            "type": "string",
83914            "uniqueItems": true
83915          },
83916          {
83917            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
83918            "in": "query",
83919            "name": "resourceVersionMatch",
83920            "type": "string",
83921            "uniqueItems": true
83922          },
83923          {
83924            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
83925            "in": "query",
83926            "name": "timeoutSeconds",
83927            "type": "integer",
83928            "uniqueItems": true
83929          },
83930          {
83931            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
83932            "in": "query",
83933            "name": "watch",
83934            "type": "boolean",
83935            "uniqueItems": true
83936          }
83937        ],
83938        "produces": [
83939          "application/json",
83940          "application/yaml",
83941          "application/vnd.kubernetes.protobuf",
83942          "application/json;stream=watch",
83943          "application/vnd.kubernetes.protobuf;stream=watch"
83944        ],
83945        "responses": {
83946          "200": {
83947            "description": "OK",
83948            "schema": {
83949              "$ref": "#/definitions/io.k8s.api.storage.v1.CSIDriverList"
83950            }
83951          },
83952          "401": {
83953            "description": "Unauthorized"
83954          }
83955        },
83956        "schemes": [
83957          "https"
83958        ],
83959        "tags": [
83960          "storage_v1"
83961        ],
83962        "x-kubernetes-action": "list",
83963        "x-kubernetes-group-version-kind": {
83964          "group": "storage.k8s.io",
83965          "kind": "CSIDriver",
83966          "version": "v1"
83967        }
83968      },
83969      "parameters": [
83970        {
83971          "description": "If 'true', then the output is pretty printed.",
83972          "in": "query",
83973          "name": "pretty",
83974          "type": "string",
83975          "uniqueItems": true
83976        }
83977      ],
83978      "post": {
83979        "consumes": [
83980          "*/*"
83981        ],
83982        "description": "create a CSIDriver",
83983        "operationId": "createStorageV1CSIDriver",
83984        "parameters": [
83985          {
83986            "in": "body",
83987            "name": "body",
83988            "required": true,
83989            "schema": {
83990              "$ref": "#/definitions/io.k8s.api.storage.v1.CSIDriver"
83991            }
83992          },
83993          {
83994            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
83995            "in": "query",
83996            "name": "dryRun",
83997            "type": "string",
83998            "uniqueItems": true
83999          },
84000          {
84001            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
84002            "in": "query",
84003            "name": "fieldManager",
84004            "type": "string",
84005            "uniqueItems": true
84006          }
84007        ],
84008        "produces": [
84009          "application/json",
84010          "application/yaml",
84011          "application/vnd.kubernetes.protobuf"
84012        ],
84013        "responses": {
84014          "200": {
84015            "description": "OK",
84016            "schema": {
84017              "$ref": "#/definitions/io.k8s.api.storage.v1.CSIDriver"
84018            }
84019          },
84020          "201": {
84021            "description": "Created",
84022            "schema": {
84023              "$ref": "#/definitions/io.k8s.api.storage.v1.CSIDriver"
84024            }
84025          },
84026          "202": {
84027            "description": "Accepted",
84028            "schema": {
84029              "$ref": "#/definitions/io.k8s.api.storage.v1.CSIDriver"
84030            }
84031          },
84032          "401": {
84033            "description": "Unauthorized"
84034          }
84035        },
84036        "schemes": [
84037          "https"
84038        ],
84039        "tags": [
84040          "storage_v1"
84041        ],
84042        "x-kubernetes-action": "post",
84043        "x-kubernetes-group-version-kind": {
84044          "group": "storage.k8s.io",
84045          "kind": "CSIDriver",
84046          "version": "v1"
84047        }
84048      }
84049    },
84050    "/apis/storage.k8s.io/v1/csidrivers/{name}": {
84051      "delete": {
84052        "consumes": [
84053          "*/*"
84054        ],
84055        "description": "delete a CSIDriver",
84056        "operationId": "deleteStorageV1CSIDriver",
84057        "parameters": [
84058          {
84059            "in": "body",
84060            "name": "body",
84061            "schema": {
84062              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
84063            }
84064          },
84065          {
84066            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
84067            "in": "query",
84068            "name": "dryRun",
84069            "type": "string",
84070            "uniqueItems": true
84071          },
84072          {
84073            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
84074            "in": "query",
84075            "name": "gracePeriodSeconds",
84076            "type": "integer",
84077            "uniqueItems": true
84078          },
84079          {
84080            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
84081            "in": "query",
84082            "name": "orphanDependents",
84083            "type": "boolean",
84084            "uniqueItems": true
84085          },
84086          {
84087            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
84088            "in": "query",
84089            "name": "propagationPolicy",
84090            "type": "string",
84091            "uniqueItems": true
84092          }
84093        ],
84094        "produces": [
84095          "application/json",
84096          "application/yaml",
84097          "application/vnd.kubernetes.protobuf"
84098        ],
84099        "responses": {
84100          "200": {
84101            "description": "OK",
84102            "schema": {
84103              "$ref": "#/definitions/io.k8s.api.storage.v1.CSIDriver"
84104            }
84105          },
84106          "202": {
84107            "description": "Accepted",
84108            "schema": {
84109              "$ref": "#/definitions/io.k8s.api.storage.v1.CSIDriver"
84110            }
84111          },
84112          "401": {
84113            "description": "Unauthorized"
84114          }
84115        },
84116        "schemes": [
84117          "https"
84118        ],
84119        "tags": [
84120          "storage_v1"
84121        ],
84122        "x-kubernetes-action": "delete",
84123        "x-kubernetes-group-version-kind": {
84124          "group": "storage.k8s.io",
84125          "kind": "CSIDriver",
84126          "version": "v1"
84127        }
84128      },
84129      "get": {
84130        "consumes": [
84131          "*/*"
84132        ],
84133        "description": "read the specified CSIDriver",
84134        "operationId": "readStorageV1CSIDriver",
84135        "produces": [
84136          "application/json",
84137          "application/yaml",
84138          "application/vnd.kubernetes.protobuf"
84139        ],
84140        "responses": {
84141          "200": {
84142            "description": "OK",
84143            "schema": {
84144              "$ref": "#/definitions/io.k8s.api.storage.v1.CSIDriver"
84145            }
84146          },
84147          "401": {
84148            "description": "Unauthorized"
84149          }
84150        },
84151        "schemes": [
84152          "https"
84153        ],
84154        "tags": [
84155          "storage_v1"
84156        ],
84157        "x-kubernetes-action": "get",
84158        "x-kubernetes-group-version-kind": {
84159          "group": "storage.k8s.io",
84160          "kind": "CSIDriver",
84161          "version": "v1"
84162        }
84163      },
84164      "parameters": [
84165        {
84166          "description": "name of the CSIDriver",
84167          "in": "path",
84168          "name": "name",
84169          "required": true,
84170          "type": "string",
84171          "uniqueItems": true
84172        },
84173        {
84174          "description": "If 'true', then the output is pretty printed.",
84175          "in": "query",
84176          "name": "pretty",
84177          "type": "string",
84178          "uniqueItems": true
84179        }
84180      ],
84181      "patch": {
84182        "consumes": [
84183          "application/json-patch+json",
84184          "application/merge-patch+json",
84185          "application/strategic-merge-patch+json",
84186          "application/apply-patch+yaml"
84187        ],
84188        "description": "partially update the specified CSIDriver",
84189        "operationId": "patchStorageV1CSIDriver",
84190        "parameters": [
84191          {
84192            "in": "body",
84193            "name": "body",
84194            "required": true,
84195            "schema": {
84196              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
84197            }
84198          },
84199          {
84200            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
84201            "in": "query",
84202            "name": "dryRun",
84203            "type": "string",
84204            "uniqueItems": true
84205          },
84206          {
84207            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
84208            "in": "query",
84209            "name": "fieldManager",
84210            "type": "string",
84211            "uniqueItems": true
84212          },
84213          {
84214            "description": "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.",
84215            "in": "query",
84216            "name": "force",
84217            "type": "boolean",
84218            "uniqueItems": true
84219          }
84220        ],
84221        "produces": [
84222          "application/json",
84223          "application/yaml",
84224          "application/vnd.kubernetes.protobuf"
84225        ],
84226        "responses": {
84227          "200": {
84228            "description": "OK",
84229            "schema": {
84230              "$ref": "#/definitions/io.k8s.api.storage.v1.CSIDriver"
84231            }
84232          },
84233          "201": {
84234            "description": "Created",
84235            "schema": {
84236              "$ref": "#/definitions/io.k8s.api.storage.v1.CSIDriver"
84237            }
84238          },
84239          "401": {
84240            "description": "Unauthorized"
84241          }
84242        },
84243        "schemes": [
84244          "https"
84245        ],
84246        "tags": [
84247          "storage_v1"
84248        ],
84249        "x-kubernetes-action": "patch",
84250        "x-kubernetes-group-version-kind": {
84251          "group": "storage.k8s.io",
84252          "kind": "CSIDriver",
84253          "version": "v1"
84254        }
84255      },
84256      "put": {
84257        "consumes": [
84258          "*/*"
84259        ],
84260        "description": "replace the specified CSIDriver",
84261        "operationId": "replaceStorageV1CSIDriver",
84262        "parameters": [
84263          {
84264            "in": "body",
84265            "name": "body",
84266            "required": true,
84267            "schema": {
84268              "$ref": "#/definitions/io.k8s.api.storage.v1.CSIDriver"
84269            }
84270          },
84271          {
84272            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
84273            "in": "query",
84274            "name": "dryRun",
84275            "type": "string",
84276            "uniqueItems": true
84277          },
84278          {
84279            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
84280            "in": "query",
84281            "name": "fieldManager",
84282            "type": "string",
84283            "uniqueItems": true
84284          }
84285        ],
84286        "produces": [
84287          "application/json",
84288          "application/yaml",
84289          "application/vnd.kubernetes.protobuf"
84290        ],
84291        "responses": {
84292          "200": {
84293            "description": "OK",
84294            "schema": {
84295              "$ref": "#/definitions/io.k8s.api.storage.v1.CSIDriver"
84296            }
84297          },
84298          "201": {
84299            "description": "Created",
84300            "schema": {
84301              "$ref": "#/definitions/io.k8s.api.storage.v1.CSIDriver"
84302            }
84303          },
84304          "401": {
84305            "description": "Unauthorized"
84306          }
84307        },
84308        "schemes": [
84309          "https"
84310        ],
84311        "tags": [
84312          "storage_v1"
84313        ],
84314        "x-kubernetes-action": "put",
84315        "x-kubernetes-group-version-kind": {
84316          "group": "storage.k8s.io",
84317          "kind": "CSIDriver",
84318          "version": "v1"
84319        }
84320      }
84321    },
84322    "/apis/storage.k8s.io/v1/csinodes": {
84323      "delete": {
84324        "consumes": [
84325          "*/*"
84326        ],
84327        "description": "delete collection of CSINode",
84328        "operationId": "deleteStorageV1CollectionCSINode",
84329        "parameters": [
84330          {
84331            "in": "body",
84332            "name": "body",
84333            "schema": {
84334              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
84335            }
84336          },
84337          {
84338            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
84339            "in": "query",
84340            "name": "continue",
84341            "type": "string",
84342            "uniqueItems": true
84343          },
84344          {
84345            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
84346            "in": "query",
84347            "name": "dryRun",
84348            "type": "string",
84349            "uniqueItems": true
84350          },
84351          {
84352            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
84353            "in": "query",
84354            "name": "fieldSelector",
84355            "type": "string",
84356            "uniqueItems": true
84357          },
84358          {
84359            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
84360            "in": "query",
84361            "name": "gracePeriodSeconds",
84362            "type": "integer",
84363            "uniqueItems": true
84364          },
84365          {
84366            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
84367            "in": "query",
84368            "name": "labelSelector",
84369            "type": "string",
84370            "uniqueItems": true
84371          },
84372          {
84373            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
84374            "in": "query",
84375            "name": "limit",
84376            "type": "integer",
84377            "uniqueItems": true
84378          },
84379          {
84380            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
84381            "in": "query",
84382            "name": "orphanDependents",
84383            "type": "boolean",
84384            "uniqueItems": true
84385          },
84386          {
84387            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
84388            "in": "query",
84389            "name": "propagationPolicy",
84390            "type": "string",
84391            "uniqueItems": true
84392          },
84393          {
84394            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
84395            "in": "query",
84396            "name": "resourceVersion",
84397            "type": "string",
84398            "uniqueItems": true
84399          },
84400          {
84401            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
84402            "in": "query",
84403            "name": "resourceVersionMatch",
84404            "type": "string",
84405            "uniqueItems": true
84406          },
84407          {
84408            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
84409            "in": "query",
84410            "name": "timeoutSeconds",
84411            "type": "integer",
84412            "uniqueItems": true
84413          }
84414        ],
84415        "produces": [
84416          "application/json",
84417          "application/yaml",
84418          "application/vnd.kubernetes.protobuf"
84419        ],
84420        "responses": {
84421          "200": {
84422            "description": "OK",
84423            "schema": {
84424              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
84425            }
84426          },
84427          "401": {
84428            "description": "Unauthorized"
84429          }
84430        },
84431        "schemes": [
84432          "https"
84433        ],
84434        "tags": [
84435          "storage_v1"
84436        ],
84437        "x-kubernetes-action": "deletecollection",
84438        "x-kubernetes-group-version-kind": {
84439          "group": "storage.k8s.io",
84440          "kind": "CSINode",
84441          "version": "v1"
84442        }
84443      },
84444      "get": {
84445        "consumes": [
84446          "*/*"
84447        ],
84448        "description": "list or watch objects of kind CSINode",
84449        "operationId": "listStorageV1CSINode",
84450        "parameters": [
84451          {
84452            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
84453            "in": "query",
84454            "name": "allowWatchBookmarks",
84455            "type": "boolean",
84456            "uniqueItems": true
84457          },
84458          {
84459            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
84460            "in": "query",
84461            "name": "continue",
84462            "type": "string",
84463            "uniqueItems": true
84464          },
84465          {
84466            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
84467            "in": "query",
84468            "name": "fieldSelector",
84469            "type": "string",
84470            "uniqueItems": true
84471          },
84472          {
84473            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
84474            "in": "query",
84475            "name": "labelSelector",
84476            "type": "string",
84477            "uniqueItems": true
84478          },
84479          {
84480            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
84481            "in": "query",
84482            "name": "limit",
84483            "type": "integer",
84484            "uniqueItems": true
84485          },
84486          {
84487            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
84488            "in": "query",
84489            "name": "resourceVersion",
84490            "type": "string",
84491            "uniqueItems": true
84492          },
84493          {
84494            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
84495            "in": "query",
84496            "name": "resourceVersionMatch",
84497            "type": "string",
84498            "uniqueItems": true
84499          },
84500          {
84501            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
84502            "in": "query",
84503            "name": "timeoutSeconds",
84504            "type": "integer",
84505            "uniqueItems": true
84506          },
84507          {
84508            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
84509            "in": "query",
84510            "name": "watch",
84511            "type": "boolean",
84512            "uniqueItems": true
84513          }
84514        ],
84515        "produces": [
84516          "application/json",
84517          "application/yaml",
84518          "application/vnd.kubernetes.protobuf",
84519          "application/json;stream=watch",
84520          "application/vnd.kubernetes.protobuf;stream=watch"
84521        ],
84522        "responses": {
84523          "200": {
84524            "description": "OK",
84525            "schema": {
84526              "$ref": "#/definitions/io.k8s.api.storage.v1.CSINodeList"
84527            }
84528          },
84529          "401": {
84530            "description": "Unauthorized"
84531          }
84532        },
84533        "schemes": [
84534          "https"
84535        ],
84536        "tags": [
84537          "storage_v1"
84538        ],
84539        "x-kubernetes-action": "list",
84540        "x-kubernetes-group-version-kind": {
84541          "group": "storage.k8s.io",
84542          "kind": "CSINode",
84543          "version": "v1"
84544        }
84545      },
84546      "parameters": [
84547        {
84548          "description": "If 'true', then the output is pretty printed.",
84549          "in": "query",
84550          "name": "pretty",
84551          "type": "string",
84552          "uniqueItems": true
84553        }
84554      ],
84555      "post": {
84556        "consumes": [
84557          "*/*"
84558        ],
84559        "description": "create a CSINode",
84560        "operationId": "createStorageV1CSINode",
84561        "parameters": [
84562          {
84563            "in": "body",
84564            "name": "body",
84565            "required": true,
84566            "schema": {
84567              "$ref": "#/definitions/io.k8s.api.storage.v1.CSINode"
84568            }
84569          },
84570          {
84571            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
84572            "in": "query",
84573            "name": "dryRun",
84574            "type": "string",
84575            "uniqueItems": true
84576          },
84577          {
84578            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
84579            "in": "query",
84580            "name": "fieldManager",
84581            "type": "string",
84582            "uniqueItems": true
84583          }
84584        ],
84585        "produces": [
84586          "application/json",
84587          "application/yaml",
84588          "application/vnd.kubernetes.protobuf"
84589        ],
84590        "responses": {
84591          "200": {
84592            "description": "OK",
84593            "schema": {
84594              "$ref": "#/definitions/io.k8s.api.storage.v1.CSINode"
84595            }
84596          },
84597          "201": {
84598            "description": "Created",
84599            "schema": {
84600              "$ref": "#/definitions/io.k8s.api.storage.v1.CSINode"
84601            }
84602          },
84603          "202": {
84604            "description": "Accepted",
84605            "schema": {
84606              "$ref": "#/definitions/io.k8s.api.storage.v1.CSINode"
84607            }
84608          },
84609          "401": {
84610            "description": "Unauthorized"
84611          }
84612        },
84613        "schemes": [
84614          "https"
84615        ],
84616        "tags": [
84617          "storage_v1"
84618        ],
84619        "x-kubernetes-action": "post",
84620        "x-kubernetes-group-version-kind": {
84621          "group": "storage.k8s.io",
84622          "kind": "CSINode",
84623          "version": "v1"
84624        }
84625      }
84626    },
84627    "/apis/storage.k8s.io/v1/csinodes/{name}": {
84628      "delete": {
84629        "consumes": [
84630          "*/*"
84631        ],
84632        "description": "delete a CSINode",
84633        "operationId": "deleteStorageV1CSINode",
84634        "parameters": [
84635          {
84636            "in": "body",
84637            "name": "body",
84638            "schema": {
84639              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
84640            }
84641          },
84642          {
84643            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
84644            "in": "query",
84645            "name": "dryRun",
84646            "type": "string",
84647            "uniqueItems": true
84648          },
84649          {
84650            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
84651            "in": "query",
84652            "name": "gracePeriodSeconds",
84653            "type": "integer",
84654            "uniqueItems": true
84655          },
84656          {
84657            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
84658            "in": "query",
84659            "name": "orphanDependents",
84660            "type": "boolean",
84661            "uniqueItems": true
84662          },
84663          {
84664            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
84665            "in": "query",
84666            "name": "propagationPolicy",
84667            "type": "string",
84668            "uniqueItems": true
84669          }
84670        ],
84671        "produces": [
84672          "application/json",
84673          "application/yaml",
84674          "application/vnd.kubernetes.protobuf"
84675        ],
84676        "responses": {
84677          "200": {
84678            "description": "OK",
84679            "schema": {
84680              "$ref": "#/definitions/io.k8s.api.storage.v1.CSINode"
84681            }
84682          },
84683          "202": {
84684            "description": "Accepted",
84685            "schema": {
84686              "$ref": "#/definitions/io.k8s.api.storage.v1.CSINode"
84687            }
84688          },
84689          "401": {
84690            "description": "Unauthorized"
84691          }
84692        },
84693        "schemes": [
84694          "https"
84695        ],
84696        "tags": [
84697          "storage_v1"
84698        ],
84699        "x-kubernetes-action": "delete",
84700        "x-kubernetes-group-version-kind": {
84701          "group": "storage.k8s.io",
84702          "kind": "CSINode",
84703          "version": "v1"
84704        }
84705      },
84706      "get": {
84707        "consumes": [
84708          "*/*"
84709        ],
84710        "description": "read the specified CSINode",
84711        "operationId": "readStorageV1CSINode",
84712        "produces": [
84713          "application/json",
84714          "application/yaml",
84715          "application/vnd.kubernetes.protobuf"
84716        ],
84717        "responses": {
84718          "200": {
84719            "description": "OK",
84720            "schema": {
84721              "$ref": "#/definitions/io.k8s.api.storage.v1.CSINode"
84722            }
84723          },
84724          "401": {
84725            "description": "Unauthorized"
84726          }
84727        },
84728        "schemes": [
84729          "https"
84730        ],
84731        "tags": [
84732          "storage_v1"
84733        ],
84734        "x-kubernetes-action": "get",
84735        "x-kubernetes-group-version-kind": {
84736          "group": "storage.k8s.io",
84737          "kind": "CSINode",
84738          "version": "v1"
84739        }
84740      },
84741      "parameters": [
84742        {
84743          "description": "name of the CSINode",
84744          "in": "path",
84745          "name": "name",
84746          "required": true,
84747          "type": "string",
84748          "uniqueItems": true
84749        },
84750        {
84751          "description": "If 'true', then the output is pretty printed.",
84752          "in": "query",
84753          "name": "pretty",
84754          "type": "string",
84755          "uniqueItems": true
84756        }
84757      ],
84758      "patch": {
84759        "consumes": [
84760          "application/json-patch+json",
84761          "application/merge-patch+json",
84762          "application/strategic-merge-patch+json",
84763          "application/apply-patch+yaml"
84764        ],
84765        "description": "partially update the specified CSINode",
84766        "operationId": "patchStorageV1CSINode",
84767        "parameters": [
84768          {
84769            "in": "body",
84770            "name": "body",
84771            "required": true,
84772            "schema": {
84773              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
84774            }
84775          },
84776          {
84777            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
84778            "in": "query",
84779            "name": "dryRun",
84780            "type": "string",
84781            "uniqueItems": true
84782          },
84783          {
84784            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
84785            "in": "query",
84786            "name": "fieldManager",
84787            "type": "string",
84788            "uniqueItems": true
84789          },
84790          {
84791            "description": "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.",
84792            "in": "query",
84793            "name": "force",
84794            "type": "boolean",
84795            "uniqueItems": true
84796          }
84797        ],
84798        "produces": [
84799          "application/json",
84800          "application/yaml",
84801          "application/vnd.kubernetes.protobuf"
84802        ],
84803        "responses": {
84804          "200": {
84805            "description": "OK",
84806            "schema": {
84807              "$ref": "#/definitions/io.k8s.api.storage.v1.CSINode"
84808            }
84809          },
84810          "201": {
84811            "description": "Created",
84812            "schema": {
84813              "$ref": "#/definitions/io.k8s.api.storage.v1.CSINode"
84814            }
84815          },
84816          "401": {
84817            "description": "Unauthorized"
84818          }
84819        },
84820        "schemes": [
84821          "https"
84822        ],
84823        "tags": [
84824          "storage_v1"
84825        ],
84826        "x-kubernetes-action": "patch",
84827        "x-kubernetes-group-version-kind": {
84828          "group": "storage.k8s.io",
84829          "kind": "CSINode",
84830          "version": "v1"
84831        }
84832      },
84833      "put": {
84834        "consumes": [
84835          "*/*"
84836        ],
84837        "description": "replace the specified CSINode",
84838        "operationId": "replaceStorageV1CSINode",
84839        "parameters": [
84840          {
84841            "in": "body",
84842            "name": "body",
84843            "required": true,
84844            "schema": {
84845              "$ref": "#/definitions/io.k8s.api.storage.v1.CSINode"
84846            }
84847          },
84848          {
84849            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
84850            "in": "query",
84851            "name": "dryRun",
84852            "type": "string",
84853            "uniqueItems": true
84854          },
84855          {
84856            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
84857            "in": "query",
84858            "name": "fieldManager",
84859            "type": "string",
84860            "uniqueItems": true
84861          }
84862        ],
84863        "produces": [
84864          "application/json",
84865          "application/yaml",
84866          "application/vnd.kubernetes.protobuf"
84867        ],
84868        "responses": {
84869          "200": {
84870            "description": "OK",
84871            "schema": {
84872              "$ref": "#/definitions/io.k8s.api.storage.v1.CSINode"
84873            }
84874          },
84875          "201": {
84876            "description": "Created",
84877            "schema": {
84878              "$ref": "#/definitions/io.k8s.api.storage.v1.CSINode"
84879            }
84880          },
84881          "401": {
84882            "description": "Unauthorized"
84883          }
84884        },
84885        "schemes": [
84886          "https"
84887        ],
84888        "tags": [
84889          "storage_v1"
84890        ],
84891        "x-kubernetes-action": "put",
84892        "x-kubernetes-group-version-kind": {
84893          "group": "storage.k8s.io",
84894          "kind": "CSINode",
84895          "version": "v1"
84896        }
84897      }
84898    },
84899    "/apis/storage.k8s.io/v1/storageclasses": {
84900      "delete": {
84901        "consumes": [
84902          "*/*"
84903        ],
84904        "description": "delete collection of StorageClass",
84905        "operationId": "deleteStorageV1CollectionStorageClass",
84906        "parameters": [
84907          {
84908            "in": "body",
84909            "name": "body",
84910            "schema": {
84911              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
84912            }
84913          },
84914          {
84915            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
84916            "in": "query",
84917            "name": "continue",
84918            "type": "string",
84919            "uniqueItems": true
84920          },
84921          {
84922            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
84923            "in": "query",
84924            "name": "dryRun",
84925            "type": "string",
84926            "uniqueItems": true
84927          },
84928          {
84929            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
84930            "in": "query",
84931            "name": "fieldSelector",
84932            "type": "string",
84933            "uniqueItems": true
84934          },
84935          {
84936            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
84937            "in": "query",
84938            "name": "gracePeriodSeconds",
84939            "type": "integer",
84940            "uniqueItems": true
84941          },
84942          {
84943            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
84944            "in": "query",
84945            "name": "labelSelector",
84946            "type": "string",
84947            "uniqueItems": true
84948          },
84949          {
84950            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
84951            "in": "query",
84952            "name": "limit",
84953            "type": "integer",
84954            "uniqueItems": true
84955          },
84956          {
84957            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
84958            "in": "query",
84959            "name": "orphanDependents",
84960            "type": "boolean",
84961            "uniqueItems": true
84962          },
84963          {
84964            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
84965            "in": "query",
84966            "name": "propagationPolicy",
84967            "type": "string",
84968            "uniqueItems": true
84969          },
84970          {
84971            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
84972            "in": "query",
84973            "name": "resourceVersion",
84974            "type": "string",
84975            "uniqueItems": true
84976          },
84977          {
84978            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
84979            "in": "query",
84980            "name": "resourceVersionMatch",
84981            "type": "string",
84982            "uniqueItems": true
84983          },
84984          {
84985            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
84986            "in": "query",
84987            "name": "timeoutSeconds",
84988            "type": "integer",
84989            "uniqueItems": true
84990          }
84991        ],
84992        "produces": [
84993          "application/json",
84994          "application/yaml",
84995          "application/vnd.kubernetes.protobuf"
84996        ],
84997        "responses": {
84998          "200": {
84999            "description": "OK",
85000            "schema": {
85001              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
85002            }
85003          },
85004          "401": {
85005            "description": "Unauthorized"
85006          }
85007        },
85008        "schemes": [
85009          "https"
85010        ],
85011        "tags": [
85012          "storage_v1"
85013        ],
85014        "x-kubernetes-action": "deletecollection",
85015        "x-kubernetes-group-version-kind": {
85016          "group": "storage.k8s.io",
85017          "kind": "StorageClass",
85018          "version": "v1"
85019        }
85020      },
85021      "get": {
85022        "consumes": [
85023          "*/*"
85024        ],
85025        "description": "list or watch objects of kind StorageClass",
85026        "operationId": "listStorageV1StorageClass",
85027        "parameters": [
85028          {
85029            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
85030            "in": "query",
85031            "name": "allowWatchBookmarks",
85032            "type": "boolean",
85033            "uniqueItems": true
85034          },
85035          {
85036            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
85037            "in": "query",
85038            "name": "continue",
85039            "type": "string",
85040            "uniqueItems": true
85041          },
85042          {
85043            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
85044            "in": "query",
85045            "name": "fieldSelector",
85046            "type": "string",
85047            "uniqueItems": true
85048          },
85049          {
85050            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
85051            "in": "query",
85052            "name": "labelSelector",
85053            "type": "string",
85054            "uniqueItems": true
85055          },
85056          {
85057            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
85058            "in": "query",
85059            "name": "limit",
85060            "type": "integer",
85061            "uniqueItems": true
85062          },
85063          {
85064            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
85065            "in": "query",
85066            "name": "resourceVersion",
85067            "type": "string",
85068            "uniqueItems": true
85069          },
85070          {
85071            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
85072            "in": "query",
85073            "name": "resourceVersionMatch",
85074            "type": "string",
85075            "uniqueItems": true
85076          },
85077          {
85078            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
85079            "in": "query",
85080            "name": "timeoutSeconds",
85081            "type": "integer",
85082            "uniqueItems": true
85083          },
85084          {
85085            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
85086            "in": "query",
85087            "name": "watch",
85088            "type": "boolean",
85089            "uniqueItems": true
85090          }
85091        ],
85092        "produces": [
85093          "application/json",
85094          "application/yaml",
85095          "application/vnd.kubernetes.protobuf",
85096          "application/json;stream=watch",
85097          "application/vnd.kubernetes.protobuf;stream=watch"
85098        ],
85099        "responses": {
85100          "200": {
85101            "description": "OK",
85102            "schema": {
85103              "$ref": "#/definitions/io.k8s.api.storage.v1.StorageClassList"
85104            }
85105          },
85106          "401": {
85107            "description": "Unauthorized"
85108          }
85109        },
85110        "schemes": [
85111          "https"
85112        ],
85113        "tags": [
85114          "storage_v1"
85115        ],
85116        "x-kubernetes-action": "list",
85117        "x-kubernetes-group-version-kind": {
85118          "group": "storage.k8s.io",
85119          "kind": "StorageClass",
85120          "version": "v1"
85121        }
85122      },
85123      "parameters": [
85124        {
85125          "description": "If 'true', then the output is pretty printed.",
85126          "in": "query",
85127          "name": "pretty",
85128          "type": "string",
85129          "uniqueItems": true
85130        }
85131      ],
85132      "post": {
85133        "consumes": [
85134          "*/*"
85135        ],
85136        "description": "create a StorageClass",
85137        "operationId": "createStorageV1StorageClass",
85138        "parameters": [
85139          {
85140            "in": "body",
85141            "name": "body",
85142            "required": true,
85143            "schema": {
85144              "$ref": "#/definitions/io.k8s.api.storage.v1.StorageClass"
85145            }
85146          },
85147          {
85148            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
85149            "in": "query",
85150            "name": "dryRun",
85151            "type": "string",
85152            "uniqueItems": true
85153          },
85154          {
85155            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
85156            "in": "query",
85157            "name": "fieldManager",
85158            "type": "string",
85159            "uniqueItems": true
85160          }
85161        ],
85162        "produces": [
85163          "application/json",
85164          "application/yaml",
85165          "application/vnd.kubernetes.protobuf"
85166        ],
85167        "responses": {
85168          "200": {
85169            "description": "OK",
85170            "schema": {
85171              "$ref": "#/definitions/io.k8s.api.storage.v1.StorageClass"
85172            }
85173          },
85174          "201": {
85175            "description": "Created",
85176            "schema": {
85177              "$ref": "#/definitions/io.k8s.api.storage.v1.StorageClass"
85178            }
85179          },
85180          "202": {
85181            "description": "Accepted",
85182            "schema": {
85183              "$ref": "#/definitions/io.k8s.api.storage.v1.StorageClass"
85184            }
85185          },
85186          "401": {
85187            "description": "Unauthorized"
85188          }
85189        },
85190        "schemes": [
85191          "https"
85192        ],
85193        "tags": [
85194          "storage_v1"
85195        ],
85196        "x-kubernetes-action": "post",
85197        "x-kubernetes-group-version-kind": {
85198          "group": "storage.k8s.io",
85199          "kind": "StorageClass",
85200          "version": "v1"
85201        }
85202      }
85203    },
85204    "/apis/storage.k8s.io/v1/storageclasses/{name}": {
85205      "delete": {
85206        "consumes": [
85207          "*/*"
85208        ],
85209        "description": "delete a StorageClass",
85210        "operationId": "deleteStorageV1StorageClass",
85211        "parameters": [
85212          {
85213            "in": "body",
85214            "name": "body",
85215            "schema": {
85216              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
85217            }
85218          },
85219          {
85220            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
85221            "in": "query",
85222            "name": "dryRun",
85223            "type": "string",
85224            "uniqueItems": true
85225          },
85226          {
85227            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
85228            "in": "query",
85229            "name": "gracePeriodSeconds",
85230            "type": "integer",
85231            "uniqueItems": true
85232          },
85233          {
85234            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
85235            "in": "query",
85236            "name": "orphanDependents",
85237            "type": "boolean",
85238            "uniqueItems": true
85239          },
85240          {
85241            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
85242            "in": "query",
85243            "name": "propagationPolicy",
85244            "type": "string",
85245            "uniqueItems": true
85246          }
85247        ],
85248        "produces": [
85249          "application/json",
85250          "application/yaml",
85251          "application/vnd.kubernetes.protobuf"
85252        ],
85253        "responses": {
85254          "200": {
85255            "description": "OK",
85256            "schema": {
85257              "$ref": "#/definitions/io.k8s.api.storage.v1.StorageClass"
85258            }
85259          },
85260          "202": {
85261            "description": "Accepted",
85262            "schema": {
85263              "$ref": "#/definitions/io.k8s.api.storage.v1.StorageClass"
85264            }
85265          },
85266          "401": {
85267            "description": "Unauthorized"
85268          }
85269        },
85270        "schemes": [
85271          "https"
85272        ],
85273        "tags": [
85274          "storage_v1"
85275        ],
85276        "x-kubernetes-action": "delete",
85277        "x-kubernetes-group-version-kind": {
85278          "group": "storage.k8s.io",
85279          "kind": "StorageClass",
85280          "version": "v1"
85281        }
85282      },
85283      "get": {
85284        "consumes": [
85285          "*/*"
85286        ],
85287        "description": "read the specified StorageClass",
85288        "operationId": "readStorageV1StorageClass",
85289        "produces": [
85290          "application/json",
85291          "application/yaml",
85292          "application/vnd.kubernetes.protobuf"
85293        ],
85294        "responses": {
85295          "200": {
85296            "description": "OK",
85297            "schema": {
85298              "$ref": "#/definitions/io.k8s.api.storage.v1.StorageClass"
85299            }
85300          },
85301          "401": {
85302            "description": "Unauthorized"
85303          }
85304        },
85305        "schemes": [
85306          "https"
85307        ],
85308        "tags": [
85309          "storage_v1"
85310        ],
85311        "x-kubernetes-action": "get",
85312        "x-kubernetes-group-version-kind": {
85313          "group": "storage.k8s.io",
85314          "kind": "StorageClass",
85315          "version": "v1"
85316        }
85317      },
85318      "parameters": [
85319        {
85320          "description": "name of the StorageClass",
85321          "in": "path",
85322          "name": "name",
85323          "required": true,
85324          "type": "string",
85325          "uniqueItems": true
85326        },
85327        {
85328          "description": "If 'true', then the output is pretty printed.",
85329          "in": "query",
85330          "name": "pretty",
85331          "type": "string",
85332          "uniqueItems": true
85333        }
85334      ],
85335      "patch": {
85336        "consumes": [
85337          "application/json-patch+json",
85338          "application/merge-patch+json",
85339          "application/strategic-merge-patch+json",
85340          "application/apply-patch+yaml"
85341        ],
85342        "description": "partially update the specified StorageClass",
85343        "operationId": "patchStorageV1StorageClass",
85344        "parameters": [
85345          {
85346            "in": "body",
85347            "name": "body",
85348            "required": true,
85349            "schema": {
85350              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
85351            }
85352          },
85353          {
85354            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
85355            "in": "query",
85356            "name": "dryRun",
85357            "type": "string",
85358            "uniqueItems": true
85359          },
85360          {
85361            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
85362            "in": "query",
85363            "name": "fieldManager",
85364            "type": "string",
85365            "uniqueItems": true
85366          },
85367          {
85368            "description": "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.",
85369            "in": "query",
85370            "name": "force",
85371            "type": "boolean",
85372            "uniqueItems": true
85373          }
85374        ],
85375        "produces": [
85376          "application/json",
85377          "application/yaml",
85378          "application/vnd.kubernetes.protobuf"
85379        ],
85380        "responses": {
85381          "200": {
85382            "description": "OK",
85383            "schema": {
85384              "$ref": "#/definitions/io.k8s.api.storage.v1.StorageClass"
85385            }
85386          },
85387          "201": {
85388            "description": "Created",
85389            "schema": {
85390              "$ref": "#/definitions/io.k8s.api.storage.v1.StorageClass"
85391            }
85392          },
85393          "401": {
85394            "description": "Unauthorized"
85395          }
85396        },
85397        "schemes": [
85398          "https"
85399        ],
85400        "tags": [
85401          "storage_v1"
85402        ],
85403        "x-kubernetes-action": "patch",
85404        "x-kubernetes-group-version-kind": {
85405          "group": "storage.k8s.io",
85406          "kind": "StorageClass",
85407          "version": "v1"
85408        }
85409      },
85410      "put": {
85411        "consumes": [
85412          "*/*"
85413        ],
85414        "description": "replace the specified StorageClass",
85415        "operationId": "replaceStorageV1StorageClass",
85416        "parameters": [
85417          {
85418            "in": "body",
85419            "name": "body",
85420            "required": true,
85421            "schema": {
85422              "$ref": "#/definitions/io.k8s.api.storage.v1.StorageClass"
85423            }
85424          },
85425          {
85426            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
85427            "in": "query",
85428            "name": "dryRun",
85429            "type": "string",
85430            "uniqueItems": true
85431          },
85432          {
85433            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
85434            "in": "query",
85435            "name": "fieldManager",
85436            "type": "string",
85437            "uniqueItems": true
85438          }
85439        ],
85440        "produces": [
85441          "application/json",
85442          "application/yaml",
85443          "application/vnd.kubernetes.protobuf"
85444        ],
85445        "responses": {
85446          "200": {
85447            "description": "OK",
85448            "schema": {
85449              "$ref": "#/definitions/io.k8s.api.storage.v1.StorageClass"
85450            }
85451          },
85452          "201": {
85453            "description": "Created",
85454            "schema": {
85455              "$ref": "#/definitions/io.k8s.api.storage.v1.StorageClass"
85456            }
85457          },
85458          "401": {
85459            "description": "Unauthorized"
85460          }
85461        },
85462        "schemes": [
85463          "https"
85464        ],
85465        "tags": [
85466          "storage_v1"
85467        ],
85468        "x-kubernetes-action": "put",
85469        "x-kubernetes-group-version-kind": {
85470          "group": "storage.k8s.io",
85471          "kind": "StorageClass",
85472          "version": "v1"
85473        }
85474      }
85475    },
85476    "/apis/storage.k8s.io/v1/volumeattachments": {
85477      "delete": {
85478        "consumes": [
85479          "*/*"
85480        ],
85481        "description": "delete collection of VolumeAttachment",
85482        "operationId": "deleteStorageV1CollectionVolumeAttachment",
85483        "parameters": [
85484          {
85485            "in": "body",
85486            "name": "body",
85487            "schema": {
85488              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
85489            }
85490          },
85491          {
85492            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
85493            "in": "query",
85494            "name": "continue",
85495            "type": "string",
85496            "uniqueItems": true
85497          },
85498          {
85499            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
85500            "in": "query",
85501            "name": "dryRun",
85502            "type": "string",
85503            "uniqueItems": true
85504          },
85505          {
85506            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
85507            "in": "query",
85508            "name": "fieldSelector",
85509            "type": "string",
85510            "uniqueItems": true
85511          },
85512          {
85513            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
85514            "in": "query",
85515            "name": "gracePeriodSeconds",
85516            "type": "integer",
85517            "uniqueItems": true
85518          },
85519          {
85520            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
85521            "in": "query",
85522            "name": "labelSelector",
85523            "type": "string",
85524            "uniqueItems": true
85525          },
85526          {
85527            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
85528            "in": "query",
85529            "name": "limit",
85530            "type": "integer",
85531            "uniqueItems": true
85532          },
85533          {
85534            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
85535            "in": "query",
85536            "name": "orphanDependents",
85537            "type": "boolean",
85538            "uniqueItems": true
85539          },
85540          {
85541            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
85542            "in": "query",
85543            "name": "propagationPolicy",
85544            "type": "string",
85545            "uniqueItems": true
85546          },
85547          {
85548            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
85549            "in": "query",
85550            "name": "resourceVersion",
85551            "type": "string",
85552            "uniqueItems": true
85553          },
85554          {
85555            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
85556            "in": "query",
85557            "name": "resourceVersionMatch",
85558            "type": "string",
85559            "uniqueItems": true
85560          },
85561          {
85562            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
85563            "in": "query",
85564            "name": "timeoutSeconds",
85565            "type": "integer",
85566            "uniqueItems": true
85567          }
85568        ],
85569        "produces": [
85570          "application/json",
85571          "application/yaml",
85572          "application/vnd.kubernetes.protobuf"
85573        ],
85574        "responses": {
85575          "200": {
85576            "description": "OK",
85577            "schema": {
85578              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
85579            }
85580          },
85581          "401": {
85582            "description": "Unauthorized"
85583          }
85584        },
85585        "schemes": [
85586          "https"
85587        ],
85588        "tags": [
85589          "storage_v1"
85590        ],
85591        "x-kubernetes-action": "deletecollection",
85592        "x-kubernetes-group-version-kind": {
85593          "group": "storage.k8s.io",
85594          "kind": "VolumeAttachment",
85595          "version": "v1"
85596        }
85597      },
85598      "get": {
85599        "consumes": [
85600          "*/*"
85601        ],
85602        "description": "list or watch objects of kind VolumeAttachment",
85603        "operationId": "listStorageV1VolumeAttachment",
85604        "parameters": [
85605          {
85606            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
85607            "in": "query",
85608            "name": "allowWatchBookmarks",
85609            "type": "boolean",
85610            "uniqueItems": true
85611          },
85612          {
85613            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
85614            "in": "query",
85615            "name": "continue",
85616            "type": "string",
85617            "uniqueItems": true
85618          },
85619          {
85620            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
85621            "in": "query",
85622            "name": "fieldSelector",
85623            "type": "string",
85624            "uniqueItems": true
85625          },
85626          {
85627            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
85628            "in": "query",
85629            "name": "labelSelector",
85630            "type": "string",
85631            "uniqueItems": true
85632          },
85633          {
85634            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
85635            "in": "query",
85636            "name": "limit",
85637            "type": "integer",
85638            "uniqueItems": true
85639          },
85640          {
85641            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
85642            "in": "query",
85643            "name": "resourceVersion",
85644            "type": "string",
85645            "uniqueItems": true
85646          },
85647          {
85648            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
85649            "in": "query",
85650            "name": "resourceVersionMatch",
85651            "type": "string",
85652            "uniqueItems": true
85653          },
85654          {
85655            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
85656            "in": "query",
85657            "name": "timeoutSeconds",
85658            "type": "integer",
85659            "uniqueItems": true
85660          },
85661          {
85662            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
85663            "in": "query",
85664            "name": "watch",
85665            "type": "boolean",
85666            "uniqueItems": true
85667          }
85668        ],
85669        "produces": [
85670          "application/json",
85671          "application/yaml",
85672          "application/vnd.kubernetes.protobuf",
85673          "application/json;stream=watch",
85674          "application/vnd.kubernetes.protobuf;stream=watch"
85675        ],
85676        "responses": {
85677          "200": {
85678            "description": "OK",
85679            "schema": {
85680              "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeAttachmentList"
85681            }
85682          },
85683          "401": {
85684            "description": "Unauthorized"
85685          }
85686        },
85687        "schemes": [
85688          "https"
85689        ],
85690        "tags": [
85691          "storage_v1"
85692        ],
85693        "x-kubernetes-action": "list",
85694        "x-kubernetes-group-version-kind": {
85695          "group": "storage.k8s.io",
85696          "kind": "VolumeAttachment",
85697          "version": "v1"
85698        }
85699      },
85700      "parameters": [
85701        {
85702          "description": "If 'true', then the output is pretty printed.",
85703          "in": "query",
85704          "name": "pretty",
85705          "type": "string",
85706          "uniqueItems": true
85707        }
85708      ],
85709      "post": {
85710        "consumes": [
85711          "*/*"
85712        ],
85713        "description": "create a VolumeAttachment",
85714        "operationId": "createStorageV1VolumeAttachment",
85715        "parameters": [
85716          {
85717            "in": "body",
85718            "name": "body",
85719            "required": true,
85720            "schema": {
85721              "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeAttachment"
85722            }
85723          },
85724          {
85725            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
85726            "in": "query",
85727            "name": "dryRun",
85728            "type": "string",
85729            "uniqueItems": true
85730          },
85731          {
85732            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
85733            "in": "query",
85734            "name": "fieldManager",
85735            "type": "string",
85736            "uniqueItems": true
85737          }
85738        ],
85739        "produces": [
85740          "application/json",
85741          "application/yaml",
85742          "application/vnd.kubernetes.protobuf"
85743        ],
85744        "responses": {
85745          "200": {
85746            "description": "OK",
85747            "schema": {
85748              "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeAttachment"
85749            }
85750          },
85751          "201": {
85752            "description": "Created",
85753            "schema": {
85754              "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeAttachment"
85755            }
85756          },
85757          "202": {
85758            "description": "Accepted",
85759            "schema": {
85760              "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeAttachment"
85761            }
85762          },
85763          "401": {
85764            "description": "Unauthorized"
85765          }
85766        },
85767        "schemes": [
85768          "https"
85769        ],
85770        "tags": [
85771          "storage_v1"
85772        ],
85773        "x-kubernetes-action": "post",
85774        "x-kubernetes-group-version-kind": {
85775          "group": "storage.k8s.io",
85776          "kind": "VolumeAttachment",
85777          "version": "v1"
85778        }
85779      }
85780    },
85781    "/apis/storage.k8s.io/v1/volumeattachments/{name}": {
85782      "delete": {
85783        "consumes": [
85784          "*/*"
85785        ],
85786        "description": "delete a VolumeAttachment",
85787        "operationId": "deleteStorageV1VolumeAttachment",
85788        "parameters": [
85789          {
85790            "in": "body",
85791            "name": "body",
85792            "schema": {
85793              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
85794            }
85795          },
85796          {
85797            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
85798            "in": "query",
85799            "name": "dryRun",
85800            "type": "string",
85801            "uniqueItems": true
85802          },
85803          {
85804            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
85805            "in": "query",
85806            "name": "gracePeriodSeconds",
85807            "type": "integer",
85808            "uniqueItems": true
85809          },
85810          {
85811            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
85812            "in": "query",
85813            "name": "orphanDependents",
85814            "type": "boolean",
85815            "uniqueItems": true
85816          },
85817          {
85818            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
85819            "in": "query",
85820            "name": "propagationPolicy",
85821            "type": "string",
85822            "uniqueItems": true
85823          }
85824        ],
85825        "produces": [
85826          "application/json",
85827          "application/yaml",
85828          "application/vnd.kubernetes.protobuf"
85829        ],
85830        "responses": {
85831          "200": {
85832            "description": "OK",
85833            "schema": {
85834              "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeAttachment"
85835            }
85836          },
85837          "202": {
85838            "description": "Accepted",
85839            "schema": {
85840              "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeAttachment"
85841            }
85842          },
85843          "401": {
85844            "description": "Unauthorized"
85845          }
85846        },
85847        "schemes": [
85848          "https"
85849        ],
85850        "tags": [
85851          "storage_v1"
85852        ],
85853        "x-kubernetes-action": "delete",
85854        "x-kubernetes-group-version-kind": {
85855          "group": "storage.k8s.io",
85856          "kind": "VolumeAttachment",
85857          "version": "v1"
85858        }
85859      },
85860      "get": {
85861        "consumes": [
85862          "*/*"
85863        ],
85864        "description": "read the specified VolumeAttachment",
85865        "operationId": "readStorageV1VolumeAttachment",
85866        "produces": [
85867          "application/json",
85868          "application/yaml",
85869          "application/vnd.kubernetes.protobuf"
85870        ],
85871        "responses": {
85872          "200": {
85873            "description": "OK",
85874            "schema": {
85875              "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeAttachment"
85876            }
85877          },
85878          "401": {
85879            "description": "Unauthorized"
85880          }
85881        },
85882        "schemes": [
85883          "https"
85884        ],
85885        "tags": [
85886          "storage_v1"
85887        ],
85888        "x-kubernetes-action": "get",
85889        "x-kubernetes-group-version-kind": {
85890          "group": "storage.k8s.io",
85891          "kind": "VolumeAttachment",
85892          "version": "v1"
85893        }
85894      },
85895      "parameters": [
85896        {
85897          "description": "name of the VolumeAttachment",
85898          "in": "path",
85899          "name": "name",
85900          "required": true,
85901          "type": "string",
85902          "uniqueItems": true
85903        },
85904        {
85905          "description": "If 'true', then the output is pretty printed.",
85906          "in": "query",
85907          "name": "pretty",
85908          "type": "string",
85909          "uniqueItems": true
85910        }
85911      ],
85912      "patch": {
85913        "consumes": [
85914          "application/json-patch+json",
85915          "application/merge-patch+json",
85916          "application/strategic-merge-patch+json",
85917          "application/apply-patch+yaml"
85918        ],
85919        "description": "partially update the specified VolumeAttachment",
85920        "operationId": "patchStorageV1VolumeAttachment",
85921        "parameters": [
85922          {
85923            "in": "body",
85924            "name": "body",
85925            "required": true,
85926            "schema": {
85927              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
85928            }
85929          },
85930          {
85931            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
85932            "in": "query",
85933            "name": "dryRun",
85934            "type": "string",
85935            "uniqueItems": true
85936          },
85937          {
85938            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
85939            "in": "query",
85940            "name": "fieldManager",
85941            "type": "string",
85942            "uniqueItems": true
85943          },
85944          {
85945            "description": "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.",
85946            "in": "query",
85947            "name": "force",
85948            "type": "boolean",
85949            "uniqueItems": true
85950          }
85951        ],
85952        "produces": [
85953          "application/json",
85954          "application/yaml",
85955          "application/vnd.kubernetes.protobuf"
85956        ],
85957        "responses": {
85958          "200": {
85959            "description": "OK",
85960            "schema": {
85961              "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeAttachment"
85962            }
85963          },
85964          "201": {
85965            "description": "Created",
85966            "schema": {
85967              "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeAttachment"
85968            }
85969          },
85970          "401": {
85971            "description": "Unauthorized"
85972          }
85973        },
85974        "schemes": [
85975          "https"
85976        ],
85977        "tags": [
85978          "storage_v1"
85979        ],
85980        "x-kubernetes-action": "patch",
85981        "x-kubernetes-group-version-kind": {
85982          "group": "storage.k8s.io",
85983          "kind": "VolumeAttachment",
85984          "version": "v1"
85985        }
85986      },
85987      "put": {
85988        "consumes": [
85989          "*/*"
85990        ],
85991        "description": "replace the specified VolumeAttachment",
85992        "operationId": "replaceStorageV1VolumeAttachment",
85993        "parameters": [
85994          {
85995            "in": "body",
85996            "name": "body",
85997            "required": true,
85998            "schema": {
85999              "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeAttachment"
86000            }
86001          },
86002          {
86003            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
86004            "in": "query",
86005            "name": "dryRun",
86006            "type": "string",
86007            "uniqueItems": true
86008          },
86009          {
86010            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
86011            "in": "query",
86012            "name": "fieldManager",
86013            "type": "string",
86014            "uniqueItems": true
86015          }
86016        ],
86017        "produces": [
86018          "application/json",
86019          "application/yaml",
86020          "application/vnd.kubernetes.protobuf"
86021        ],
86022        "responses": {
86023          "200": {
86024            "description": "OK",
86025            "schema": {
86026              "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeAttachment"
86027            }
86028          },
86029          "201": {
86030            "description": "Created",
86031            "schema": {
86032              "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeAttachment"
86033            }
86034          },
86035          "401": {
86036            "description": "Unauthorized"
86037          }
86038        },
86039        "schemes": [
86040          "https"
86041        ],
86042        "tags": [
86043          "storage_v1"
86044        ],
86045        "x-kubernetes-action": "put",
86046        "x-kubernetes-group-version-kind": {
86047          "group": "storage.k8s.io",
86048          "kind": "VolumeAttachment",
86049          "version": "v1"
86050        }
86051      }
86052    },
86053    "/apis/storage.k8s.io/v1/volumeattachments/{name}/status": {
86054      "get": {
86055        "consumes": [
86056          "*/*"
86057        ],
86058        "description": "read status of the specified VolumeAttachment",
86059        "operationId": "readStorageV1VolumeAttachmentStatus",
86060        "produces": [
86061          "application/json",
86062          "application/yaml",
86063          "application/vnd.kubernetes.protobuf"
86064        ],
86065        "responses": {
86066          "200": {
86067            "description": "OK",
86068            "schema": {
86069              "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeAttachment"
86070            }
86071          },
86072          "401": {
86073            "description": "Unauthorized"
86074          }
86075        },
86076        "schemes": [
86077          "https"
86078        ],
86079        "tags": [
86080          "storage_v1"
86081        ],
86082        "x-kubernetes-action": "get",
86083        "x-kubernetes-group-version-kind": {
86084          "group": "storage.k8s.io",
86085          "kind": "VolumeAttachment",
86086          "version": "v1"
86087        }
86088      },
86089      "parameters": [
86090        {
86091          "description": "name of the VolumeAttachment",
86092          "in": "path",
86093          "name": "name",
86094          "required": true,
86095          "type": "string",
86096          "uniqueItems": true
86097        },
86098        {
86099          "description": "If 'true', then the output is pretty printed.",
86100          "in": "query",
86101          "name": "pretty",
86102          "type": "string",
86103          "uniqueItems": true
86104        }
86105      ],
86106      "patch": {
86107        "consumes": [
86108          "application/json-patch+json",
86109          "application/merge-patch+json",
86110          "application/strategic-merge-patch+json",
86111          "application/apply-patch+yaml"
86112        ],
86113        "description": "partially update status of the specified VolumeAttachment",
86114        "operationId": "patchStorageV1VolumeAttachmentStatus",
86115        "parameters": [
86116          {
86117            "in": "body",
86118            "name": "body",
86119            "required": true,
86120            "schema": {
86121              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
86122            }
86123          },
86124          {
86125            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
86126            "in": "query",
86127            "name": "dryRun",
86128            "type": "string",
86129            "uniqueItems": true
86130          },
86131          {
86132            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
86133            "in": "query",
86134            "name": "fieldManager",
86135            "type": "string",
86136            "uniqueItems": true
86137          },
86138          {
86139            "description": "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.",
86140            "in": "query",
86141            "name": "force",
86142            "type": "boolean",
86143            "uniqueItems": true
86144          }
86145        ],
86146        "produces": [
86147          "application/json",
86148          "application/yaml",
86149          "application/vnd.kubernetes.protobuf"
86150        ],
86151        "responses": {
86152          "200": {
86153            "description": "OK",
86154            "schema": {
86155              "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeAttachment"
86156            }
86157          },
86158          "201": {
86159            "description": "Created",
86160            "schema": {
86161              "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeAttachment"
86162            }
86163          },
86164          "401": {
86165            "description": "Unauthorized"
86166          }
86167        },
86168        "schemes": [
86169          "https"
86170        ],
86171        "tags": [
86172          "storage_v1"
86173        ],
86174        "x-kubernetes-action": "patch",
86175        "x-kubernetes-group-version-kind": {
86176          "group": "storage.k8s.io",
86177          "kind": "VolumeAttachment",
86178          "version": "v1"
86179        }
86180      },
86181      "put": {
86182        "consumes": [
86183          "*/*"
86184        ],
86185        "description": "replace status of the specified VolumeAttachment",
86186        "operationId": "replaceStorageV1VolumeAttachmentStatus",
86187        "parameters": [
86188          {
86189            "in": "body",
86190            "name": "body",
86191            "required": true,
86192            "schema": {
86193              "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeAttachment"
86194            }
86195          },
86196          {
86197            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
86198            "in": "query",
86199            "name": "dryRun",
86200            "type": "string",
86201            "uniqueItems": true
86202          },
86203          {
86204            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
86205            "in": "query",
86206            "name": "fieldManager",
86207            "type": "string",
86208            "uniqueItems": true
86209          }
86210        ],
86211        "produces": [
86212          "application/json",
86213          "application/yaml",
86214          "application/vnd.kubernetes.protobuf"
86215        ],
86216        "responses": {
86217          "200": {
86218            "description": "OK",
86219            "schema": {
86220              "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeAttachment"
86221            }
86222          },
86223          "201": {
86224            "description": "Created",
86225            "schema": {
86226              "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeAttachment"
86227            }
86228          },
86229          "401": {
86230            "description": "Unauthorized"
86231          }
86232        },
86233        "schemes": [
86234          "https"
86235        ],
86236        "tags": [
86237          "storage_v1"
86238        ],
86239        "x-kubernetes-action": "put",
86240        "x-kubernetes-group-version-kind": {
86241          "group": "storage.k8s.io",
86242          "kind": "VolumeAttachment",
86243          "version": "v1"
86244        }
86245      }
86246    },
86247    "/apis/storage.k8s.io/v1/watch/csidrivers": {
86248      "get": {
86249        "consumes": [
86250          "*/*"
86251        ],
86252        "description": "watch individual changes to a list of CSIDriver. deprecated: use the 'watch' parameter with a list operation instead.",
86253        "operationId": "watchStorageV1CSIDriverList",
86254        "produces": [
86255          "application/json",
86256          "application/yaml",
86257          "application/vnd.kubernetes.protobuf",
86258          "application/json;stream=watch",
86259          "application/vnd.kubernetes.protobuf;stream=watch"
86260        ],
86261        "responses": {
86262          "200": {
86263            "description": "OK",
86264            "schema": {
86265              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
86266            }
86267          },
86268          "401": {
86269            "description": "Unauthorized"
86270          }
86271        },
86272        "schemes": [
86273          "https"
86274        ],
86275        "tags": [
86276          "storage_v1"
86277        ],
86278        "x-kubernetes-action": "watchlist",
86279        "x-kubernetes-group-version-kind": {
86280          "group": "storage.k8s.io",
86281          "kind": "CSIDriver",
86282          "version": "v1"
86283        }
86284      },
86285      "parameters": [
86286        {
86287          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
86288          "in": "query",
86289          "name": "allowWatchBookmarks",
86290          "type": "boolean",
86291          "uniqueItems": true
86292        },
86293        {
86294          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
86295          "in": "query",
86296          "name": "continue",
86297          "type": "string",
86298          "uniqueItems": true
86299        },
86300        {
86301          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
86302          "in": "query",
86303          "name": "fieldSelector",
86304          "type": "string",
86305          "uniqueItems": true
86306        },
86307        {
86308          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
86309          "in": "query",
86310          "name": "labelSelector",
86311          "type": "string",
86312          "uniqueItems": true
86313        },
86314        {
86315          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
86316          "in": "query",
86317          "name": "limit",
86318          "type": "integer",
86319          "uniqueItems": true
86320        },
86321        {
86322          "description": "If 'true', then the output is pretty printed.",
86323          "in": "query",
86324          "name": "pretty",
86325          "type": "string",
86326          "uniqueItems": true
86327        },
86328        {
86329          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
86330          "in": "query",
86331          "name": "resourceVersion",
86332          "type": "string",
86333          "uniqueItems": true
86334        },
86335        {
86336          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
86337          "in": "query",
86338          "name": "resourceVersionMatch",
86339          "type": "string",
86340          "uniqueItems": true
86341        },
86342        {
86343          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
86344          "in": "query",
86345          "name": "timeoutSeconds",
86346          "type": "integer",
86347          "uniqueItems": true
86348        },
86349        {
86350          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
86351          "in": "query",
86352          "name": "watch",
86353          "type": "boolean",
86354          "uniqueItems": true
86355        }
86356      ]
86357    },
86358    "/apis/storage.k8s.io/v1/watch/csidrivers/{name}": {
86359      "get": {
86360        "consumes": [
86361          "*/*"
86362        ],
86363        "description": "watch changes to an object of kind CSIDriver. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.",
86364        "operationId": "watchStorageV1CSIDriver",
86365        "produces": [
86366          "application/json",
86367          "application/yaml",
86368          "application/vnd.kubernetes.protobuf",
86369          "application/json;stream=watch",
86370          "application/vnd.kubernetes.protobuf;stream=watch"
86371        ],
86372        "responses": {
86373          "200": {
86374            "description": "OK",
86375            "schema": {
86376              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
86377            }
86378          },
86379          "401": {
86380            "description": "Unauthorized"
86381          }
86382        },
86383        "schemes": [
86384          "https"
86385        ],
86386        "tags": [
86387          "storage_v1"
86388        ],
86389        "x-kubernetes-action": "watch",
86390        "x-kubernetes-group-version-kind": {
86391          "group": "storage.k8s.io",
86392          "kind": "CSIDriver",
86393          "version": "v1"
86394        }
86395      },
86396      "parameters": [
86397        {
86398          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
86399          "in": "query",
86400          "name": "allowWatchBookmarks",
86401          "type": "boolean",
86402          "uniqueItems": true
86403        },
86404        {
86405          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
86406          "in": "query",
86407          "name": "continue",
86408          "type": "string",
86409          "uniqueItems": true
86410        },
86411        {
86412          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
86413          "in": "query",
86414          "name": "fieldSelector",
86415          "type": "string",
86416          "uniqueItems": true
86417        },
86418        {
86419          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
86420          "in": "query",
86421          "name": "labelSelector",
86422          "type": "string",
86423          "uniqueItems": true
86424        },
86425        {
86426          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
86427          "in": "query",
86428          "name": "limit",
86429          "type": "integer",
86430          "uniqueItems": true
86431        },
86432        {
86433          "description": "name of the CSIDriver",
86434          "in": "path",
86435          "name": "name",
86436          "required": true,
86437          "type": "string",
86438          "uniqueItems": true
86439        },
86440        {
86441          "description": "If 'true', then the output is pretty printed.",
86442          "in": "query",
86443          "name": "pretty",
86444          "type": "string",
86445          "uniqueItems": true
86446        },
86447        {
86448          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
86449          "in": "query",
86450          "name": "resourceVersion",
86451          "type": "string",
86452          "uniqueItems": true
86453        },
86454        {
86455          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
86456          "in": "query",
86457          "name": "resourceVersionMatch",
86458          "type": "string",
86459          "uniqueItems": true
86460        },
86461        {
86462          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
86463          "in": "query",
86464          "name": "timeoutSeconds",
86465          "type": "integer",
86466          "uniqueItems": true
86467        },
86468        {
86469          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
86470          "in": "query",
86471          "name": "watch",
86472          "type": "boolean",
86473          "uniqueItems": true
86474        }
86475      ]
86476    },
86477    "/apis/storage.k8s.io/v1/watch/csinodes": {
86478      "get": {
86479        "consumes": [
86480          "*/*"
86481        ],
86482        "description": "watch individual changes to a list of CSINode. deprecated: use the 'watch' parameter with a list operation instead.",
86483        "operationId": "watchStorageV1CSINodeList",
86484        "produces": [
86485          "application/json",
86486          "application/yaml",
86487          "application/vnd.kubernetes.protobuf",
86488          "application/json;stream=watch",
86489          "application/vnd.kubernetes.protobuf;stream=watch"
86490        ],
86491        "responses": {
86492          "200": {
86493            "description": "OK",
86494            "schema": {
86495              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
86496            }
86497          },
86498          "401": {
86499            "description": "Unauthorized"
86500          }
86501        },
86502        "schemes": [
86503          "https"
86504        ],
86505        "tags": [
86506          "storage_v1"
86507        ],
86508        "x-kubernetes-action": "watchlist",
86509        "x-kubernetes-group-version-kind": {
86510          "group": "storage.k8s.io",
86511          "kind": "CSINode",
86512          "version": "v1"
86513        }
86514      },
86515      "parameters": [
86516        {
86517          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
86518          "in": "query",
86519          "name": "allowWatchBookmarks",
86520          "type": "boolean",
86521          "uniqueItems": true
86522        },
86523        {
86524          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
86525          "in": "query",
86526          "name": "continue",
86527          "type": "string",
86528          "uniqueItems": true
86529        },
86530        {
86531          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
86532          "in": "query",
86533          "name": "fieldSelector",
86534          "type": "string",
86535          "uniqueItems": true
86536        },
86537        {
86538          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
86539          "in": "query",
86540          "name": "labelSelector",
86541          "type": "string",
86542          "uniqueItems": true
86543        },
86544        {
86545          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
86546          "in": "query",
86547          "name": "limit",
86548          "type": "integer",
86549          "uniqueItems": true
86550        },
86551        {
86552          "description": "If 'true', then the output is pretty printed.",
86553          "in": "query",
86554          "name": "pretty",
86555          "type": "string",
86556          "uniqueItems": true
86557        },
86558        {
86559          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
86560          "in": "query",
86561          "name": "resourceVersion",
86562          "type": "string",
86563          "uniqueItems": true
86564        },
86565        {
86566          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
86567          "in": "query",
86568          "name": "resourceVersionMatch",
86569          "type": "string",
86570          "uniqueItems": true
86571        },
86572        {
86573          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
86574          "in": "query",
86575          "name": "timeoutSeconds",
86576          "type": "integer",
86577          "uniqueItems": true
86578        },
86579        {
86580          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
86581          "in": "query",
86582          "name": "watch",
86583          "type": "boolean",
86584          "uniqueItems": true
86585        }
86586      ]
86587    },
86588    "/apis/storage.k8s.io/v1/watch/csinodes/{name}": {
86589      "get": {
86590        "consumes": [
86591          "*/*"
86592        ],
86593        "description": "watch changes to an object of kind CSINode. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.",
86594        "operationId": "watchStorageV1CSINode",
86595        "produces": [
86596          "application/json",
86597          "application/yaml",
86598          "application/vnd.kubernetes.protobuf",
86599          "application/json;stream=watch",
86600          "application/vnd.kubernetes.protobuf;stream=watch"
86601        ],
86602        "responses": {
86603          "200": {
86604            "description": "OK",
86605            "schema": {
86606              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
86607            }
86608          },
86609          "401": {
86610            "description": "Unauthorized"
86611          }
86612        },
86613        "schemes": [
86614          "https"
86615        ],
86616        "tags": [
86617          "storage_v1"
86618        ],
86619        "x-kubernetes-action": "watch",
86620        "x-kubernetes-group-version-kind": {
86621          "group": "storage.k8s.io",
86622          "kind": "CSINode",
86623          "version": "v1"
86624        }
86625      },
86626      "parameters": [
86627        {
86628          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
86629          "in": "query",
86630          "name": "allowWatchBookmarks",
86631          "type": "boolean",
86632          "uniqueItems": true
86633        },
86634        {
86635          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
86636          "in": "query",
86637          "name": "continue",
86638          "type": "string",
86639          "uniqueItems": true
86640        },
86641        {
86642          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
86643          "in": "query",
86644          "name": "fieldSelector",
86645          "type": "string",
86646          "uniqueItems": true
86647        },
86648        {
86649          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
86650          "in": "query",
86651          "name": "labelSelector",
86652          "type": "string",
86653          "uniqueItems": true
86654        },
86655        {
86656          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
86657          "in": "query",
86658          "name": "limit",
86659          "type": "integer",
86660          "uniqueItems": true
86661        },
86662        {
86663          "description": "name of the CSINode",
86664          "in": "path",
86665          "name": "name",
86666          "required": true,
86667          "type": "string",
86668          "uniqueItems": true
86669        },
86670        {
86671          "description": "If 'true', then the output is pretty printed.",
86672          "in": "query",
86673          "name": "pretty",
86674          "type": "string",
86675          "uniqueItems": true
86676        },
86677        {
86678          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
86679          "in": "query",
86680          "name": "resourceVersion",
86681          "type": "string",
86682          "uniqueItems": true
86683        },
86684        {
86685          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
86686          "in": "query",
86687          "name": "resourceVersionMatch",
86688          "type": "string",
86689          "uniqueItems": true
86690        },
86691        {
86692          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
86693          "in": "query",
86694          "name": "timeoutSeconds",
86695          "type": "integer",
86696          "uniqueItems": true
86697        },
86698        {
86699          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
86700          "in": "query",
86701          "name": "watch",
86702          "type": "boolean",
86703          "uniqueItems": true
86704        }
86705      ]
86706    },
86707    "/apis/storage.k8s.io/v1/watch/storageclasses": {
86708      "get": {
86709        "consumes": [
86710          "*/*"
86711        ],
86712        "description": "watch individual changes to a list of StorageClass. deprecated: use the 'watch' parameter with a list operation instead.",
86713        "operationId": "watchStorageV1StorageClassList",
86714        "produces": [
86715          "application/json",
86716          "application/yaml",
86717          "application/vnd.kubernetes.protobuf",
86718          "application/json;stream=watch",
86719          "application/vnd.kubernetes.protobuf;stream=watch"
86720        ],
86721        "responses": {
86722          "200": {
86723            "description": "OK",
86724            "schema": {
86725              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
86726            }
86727          },
86728          "401": {
86729            "description": "Unauthorized"
86730          }
86731        },
86732        "schemes": [
86733          "https"
86734        ],
86735        "tags": [
86736          "storage_v1"
86737        ],
86738        "x-kubernetes-action": "watchlist",
86739        "x-kubernetes-group-version-kind": {
86740          "group": "storage.k8s.io",
86741          "kind": "StorageClass",
86742          "version": "v1"
86743        }
86744      },
86745      "parameters": [
86746        {
86747          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
86748          "in": "query",
86749          "name": "allowWatchBookmarks",
86750          "type": "boolean",
86751          "uniqueItems": true
86752        },
86753        {
86754          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
86755          "in": "query",
86756          "name": "continue",
86757          "type": "string",
86758          "uniqueItems": true
86759        },
86760        {
86761          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
86762          "in": "query",
86763          "name": "fieldSelector",
86764          "type": "string",
86765          "uniqueItems": true
86766        },
86767        {
86768          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
86769          "in": "query",
86770          "name": "labelSelector",
86771          "type": "string",
86772          "uniqueItems": true
86773        },
86774        {
86775          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
86776          "in": "query",
86777          "name": "limit",
86778          "type": "integer",
86779          "uniqueItems": true
86780        },
86781        {
86782          "description": "If 'true', then the output is pretty printed.",
86783          "in": "query",
86784          "name": "pretty",
86785          "type": "string",
86786          "uniqueItems": true
86787        },
86788        {
86789          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
86790          "in": "query",
86791          "name": "resourceVersion",
86792          "type": "string",
86793          "uniqueItems": true
86794        },
86795        {
86796          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
86797          "in": "query",
86798          "name": "resourceVersionMatch",
86799          "type": "string",
86800          "uniqueItems": true
86801        },
86802        {
86803          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
86804          "in": "query",
86805          "name": "timeoutSeconds",
86806          "type": "integer",
86807          "uniqueItems": true
86808        },
86809        {
86810          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
86811          "in": "query",
86812          "name": "watch",
86813          "type": "boolean",
86814          "uniqueItems": true
86815        }
86816      ]
86817    },
86818    "/apis/storage.k8s.io/v1/watch/storageclasses/{name}": {
86819      "get": {
86820        "consumes": [
86821          "*/*"
86822        ],
86823        "description": "watch changes to an object of kind StorageClass. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.",
86824        "operationId": "watchStorageV1StorageClass",
86825        "produces": [
86826          "application/json",
86827          "application/yaml",
86828          "application/vnd.kubernetes.protobuf",
86829          "application/json;stream=watch",
86830          "application/vnd.kubernetes.protobuf;stream=watch"
86831        ],
86832        "responses": {
86833          "200": {
86834            "description": "OK",
86835            "schema": {
86836              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
86837            }
86838          },
86839          "401": {
86840            "description": "Unauthorized"
86841          }
86842        },
86843        "schemes": [
86844          "https"
86845        ],
86846        "tags": [
86847          "storage_v1"
86848        ],
86849        "x-kubernetes-action": "watch",
86850        "x-kubernetes-group-version-kind": {
86851          "group": "storage.k8s.io",
86852          "kind": "StorageClass",
86853          "version": "v1"
86854        }
86855      },
86856      "parameters": [
86857        {
86858          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
86859          "in": "query",
86860          "name": "allowWatchBookmarks",
86861          "type": "boolean",
86862          "uniqueItems": true
86863        },
86864        {
86865          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
86866          "in": "query",
86867          "name": "continue",
86868          "type": "string",
86869          "uniqueItems": true
86870        },
86871        {
86872          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
86873          "in": "query",
86874          "name": "fieldSelector",
86875          "type": "string",
86876          "uniqueItems": true
86877        },
86878        {
86879          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
86880          "in": "query",
86881          "name": "labelSelector",
86882          "type": "string",
86883          "uniqueItems": true
86884        },
86885        {
86886          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
86887          "in": "query",
86888          "name": "limit",
86889          "type": "integer",
86890          "uniqueItems": true
86891        },
86892        {
86893          "description": "name of the StorageClass",
86894          "in": "path",
86895          "name": "name",
86896          "required": true,
86897          "type": "string",
86898          "uniqueItems": true
86899        },
86900        {
86901          "description": "If 'true', then the output is pretty printed.",
86902          "in": "query",
86903          "name": "pretty",
86904          "type": "string",
86905          "uniqueItems": true
86906        },
86907        {
86908          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
86909          "in": "query",
86910          "name": "resourceVersion",
86911          "type": "string",
86912          "uniqueItems": true
86913        },
86914        {
86915          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
86916          "in": "query",
86917          "name": "resourceVersionMatch",
86918          "type": "string",
86919          "uniqueItems": true
86920        },
86921        {
86922          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
86923          "in": "query",
86924          "name": "timeoutSeconds",
86925          "type": "integer",
86926          "uniqueItems": true
86927        },
86928        {
86929          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
86930          "in": "query",
86931          "name": "watch",
86932          "type": "boolean",
86933          "uniqueItems": true
86934        }
86935      ]
86936    },
86937    "/apis/storage.k8s.io/v1/watch/volumeattachments": {
86938      "get": {
86939        "consumes": [
86940          "*/*"
86941        ],
86942        "description": "watch individual changes to a list of VolumeAttachment. deprecated: use the 'watch' parameter with a list operation instead.",
86943        "operationId": "watchStorageV1VolumeAttachmentList",
86944        "produces": [
86945          "application/json",
86946          "application/yaml",
86947          "application/vnd.kubernetes.protobuf",
86948          "application/json;stream=watch",
86949          "application/vnd.kubernetes.protobuf;stream=watch"
86950        ],
86951        "responses": {
86952          "200": {
86953            "description": "OK",
86954            "schema": {
86955              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
86956            }
86957          },
86958          "401": {
86959            "description": "Unauthorized"
86960          }
86961        },
86962        "schemes": [
86963          "https"
86964        ],
86965        "tags": [
86966          "storage_v1"
86967        ],
86968        "x-kubernetes-action": "watchlist",
86969        "x-kubernetes-group-version-kind": {
86970          "group": "storage.k8s.io",
86971          "kind": "VolumeAttachment",
86972          "version": "v1"
86973        }
86974      },
86975      "parameters": [
86976        {
86977          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
86978          "in": "query",
86979          "name": "allowWatchBookmarks",
86980          "type": "boolean",
86981          "uniqueItems": true
86982        },
86983        {
86984          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
86985          "in": "query",
86986          "name": "continue",
86987          "type": "string",
86988          "uniqueItems": true
86989        },
86990        {
86991          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
86992          "in": "query",
86993          "name": "fieldSelector",
86994          "type": "string",
86995          "uniqueItems": true
86996        },
86997        {
86998          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
86999          "in": "query",
87000          "name": "labelSelector",
87001          "type": "string",
87002          "uniqueItems": true
87003        },
87004        {
87005          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
87006          "in": "query",
87007          "name": "limit",
87008          "type": "integer",
87009          "uniqueItems": true
87010        },
87011        {
87012          "description": "If 'true', then the output is pretty printed.",
87013          "in": "query",
87014          "name": "pretty",
87015          "type": "string",
87016          "uniqueItems": true
87017        },
87018        {
87019          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
87020          "in": "query",
87021          "name": "resourceVersion",
87022          "type": "string",
87023          "uniqueItems": true
87024        },
87025        {
87026          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
87027          "in": "query",
87028          "name": "resourceVersionMatch",
87029          "type": "string",
87030          "uniqueItems": true
87031        },
87032        {
87033          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
87034          "in": "query",
87035          "name": "timeoutSeconds",
87036          "type": "integer",
87037          "uniqueItems": true
87038        },
87039        {
87040          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
87041          "in": "query",
87042          "name": "watch",
87043          "type": "boolean",
87044          "uniqueItems": true
87045        }
87046      ]
87047    },
87048    "/apis/storage.k8s.io/v1/watch/volumeattachments/{name}": {
87049      "get": {
87050        "consumes": [
87051          "*/*"
87052        ],
87053        "description": "watch changes to an object of kind VolumeAttachment. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.",
87054        "operationId": "watchStorageV1VolumeAttachment",
87055        "produces": [
87056          "application/json",
87057          "application/yaml",
87058          "application/vnd.kubernetes.protobuf",
87059          "application/json;stream=watch",
87060          "application/vnd.kubernetes.protobuf;stream=watch"
87061        ],
87062        "responses": {
87063          "200": {
87064            "description": "OK",
87065            "schema": {
87066              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
87067            }
87068          },
87069          "401": {
87070            "description": "Unauthorized"
87071          }
87072        },
87073        "schemes": [
87074          "https"
87075        ],
87076        "tags": [
87077          "storage_v1"
87078        ],
87079        "x-kubernetes-action": "watch",
87080        "x-kubernetes-group-version-kind": {
87081          "group": "storage.k8s.io",
87082          "kind": "VolumeAttachment",
87083          "version": "v1"
87084        }
87085      },
87086      "parameters": [
87087        {
87088          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
87089          "in": "query",
87090          "name": "allowWatchBookmarks",
87091          "type": "boolean",
87092          "uniqueItems": true
87093        },
87094        {
87095          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
87096          "in": "query",
87097          "name": "continue",
87098          "type": "string",
87099          "uniqueItems": true
87100        },
87101        {
87102          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
87103          "in": "query",
87104          "name": "fieldSelector",
87105          "type": "string",
87106          "uniqueItems": true
87107        },
87108        {
87109          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
87110          "in": "query",
87111          "name": "labelSelector",
87112          "type": "string",
87113          "uniqueItems": true
87114        },
87115        {
87116          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
87117          "in": "query",
87118          "name": "limit",
87119          "type": "integer",
87120          "uniqueItems": true
87121        },
87122        {
87123          "description": "name of the VolumeAttachment",
87124          "in": "path",
87125          "name": "name",
87126          "required": true,
87127          "type": "string",
87128          "uniqueItems": true
87129        },
87130        {
87131          "description": "If 'true', then the output is pretty printed.",
87132          "in": "query",
87133          "name": "pretty",
87134          "type": "string",
87135          "uniqueItems": true
87136        },
87137        {
87138          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
87139          "in": "query",
87140          "name": "resourceVersion",
87141          "type": "string",
87142          "uniqueItems": true
87143        },
87144        {
87145          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
87146          "in": "query",
87147          "name": "resourceVersionMatch",
87148          "type": "string",
87149          "uniqueItems": true
87150        },
87151        {
87152          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
87153          "in": "query",
87154          "name": "timeoutSeconds",
87155          "type": "integer",
87156          "uniqueItems": true
87157        },
87158        {
87159          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
87160          "in": "query",
87161          "name": "watch",
87162          "type": "boolean",
87163          "uniqueItems": true
87164        }
87165      ]
87166    },
87167    "/apis/storage.k8s.io/v1alpha1/": {
87168      "get": {
87169        "consumes": [
87170          "application/json",
87171          "application/yaml",
87172          "application/vnd.kubernetes.protobuf"
87173        ],
87174        "description": "get available resources",
87175        "operationId": "getStorageV1alpha1APIResources",
87176        "produces": [
87177          "application/json",
87178          "application/yaml",
87179          "application/vnd.kubernetes.protobuf"
87180        ],
87181        "responses": {
87182          "200": {
87183            "description": "OK",
87184            "schema": {
87185              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
87186            }
87187          },
87188          "401": {
87189            "description": "Unauthorized"
87190          }
87191        },
87192        "schemes": [
87193          "https"
87194        ],
87195        "tags": [
87196          "storage_v1alpha1"
87197        ]
87198      }
87199    },
87200    "/apis/storage.k8s.io/v1alpha1/csistoragecapacities": {
87201      "get": {
87202        "consumes": [
87203          "*/*"
87204        ],
87205        "description": "list or watch objects of kind CSIStorageCapacity",
87206        "operationId": "listStorageV1alpha1CSIStorageCapacityForAllNamespaces",
87207        "produces": [
87208          "application/json",
87209          "application/yaml",
87210          "application/vnd.kubernetes.protobuf",
87211          "application/json;stream=watch",
87212          "application/vnd.kubernetes.protobuf;stream=watch"
87213        ],
87214        "responses": {
87215          "200": {
87216            "description": "OK",
87217            "schema": {
87218              "$ref": "#/definitions/io.k8s.api.storage.v1alpha1.CSIStorageCapacityList"
87219            }
87220          },
87221          "401": {
87222            "description": "Unauthorized"
87223          }
87224        },
87225        "schemes": [
87226          "https"
87227        ],
87228        "tags": [
87229          "storage_v1alpha1"
87230        ],
87231        "x-kubernetes-action": "list",
87232        "x-kubernetes-group-version-kind": {
87233          "group": "storage.k8s.io",
87234          "kind": "CSIStorageCapacity",
87235          "version": "v1alpha1"
87236        }
87237      },
87238      "parameters": [
87239        {
87240          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
87241          "in": "query",
87242          "name": "allowWatchBookmarks",
87243          "type": "boolean",
87244          "uniqueItems": true
87245        },
87246        {
87247          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
87248          "in": "query",
87249          "name": "continue",
87250          "type": "string",
87251          "uniqueItems": true
87252        },
87253        {
87254          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
87255          "in": "query",
87256          "name": "fieldSelector",
87257          "type": "string",
87258          "uniqueItems": true
87259        },
87260        {
87261          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
87262          "in": "query",
87263          "name": "labelSelector",
87264          "type": "string",
87265          "uniqueItems": true
87266        },
87267        {
87268          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
87269          "in": "query",
87270          "name": "limit",
87271          "type": "integer",
87272          "uniqueItems": true
87273        },
87274        {
87275          "description": "If 'true', then the output is pretty printed.",
87276          "in": "query",
87277          "name": "pretty",
87278          "type": "string",
87279          "uniqueItems": true
87280        },
87281        {
87282          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
87283          "in": "query",
87284          "name": "resourceVersion",
87285          "type": "string",
87286          "uniqueItems": true
87287        },
87288        {
87289          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
87290          "in": "query",
87291          "name": "resourceVersionMatch",
87292          "type": "string",
87293          "uniqueItems": true
87294        },
87295        {
87296          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
87297          "in": "query",
87298          "name": "timeoutSeconds",
87299          "type": "integer",
87300          "uniqueItems": true
87301        },
87302        {
87303          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
87304          "in": "query",
87305          "name": "watch",
87306          "type": "boolean",
87307          "uniqueItems": true
87308        }
87309      ]
87310    },
87311    "/apis/storage.k8s.io/v1alpha1/namespaces/{namespace}/csistoragecapacities": {
87312      "delete": {
87313        "consumes": [
87314          "*/*"
87315        ],
87316        "description": "delete collection of CSIStorageCapacity",
87317        "operationId": "deleteStorageV1alpha1CollectionNamespacedCSIStorageCapacity",
87318        "parameters": [
87319          {
87320            "in": "body",
87321            "name": "body",
87322            "schema": {
87323              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
87324            }
87325          },
87326          {
87327            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
87328            "in": "query",
87329            "name": "continue",
87330            "type": "string",
87331            "uniqueItems": true
87332          },
87333          {
87334            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
87335            "in": "query",
87336            "name": "dryRun",
87337            "type": "string",
87338            "uniqueItems": true
87339          },
87340          {
87341            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
87342            "in": "query",
87343            "name": "fieldSelector",
87344            "type": "string",
87345            "uniqueItems": true
87346          },
87347          {
87348            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
87349            "in": "query",
87350            "name": "gracePeriodSeconds",
87351            "type": "integer",
87352            "uniqueItems": true
87353          },
87354          {
87355            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
87356            "in": "query",
87357            "name": "labelSelector",
87358            "type": "string",
87359            "uniqueItems": true
87360          },
87361          {
87362            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
87363            "in": "query",
87364            "name": "limit",
87365            "type": "integer",
87366            "uniqueItems": true
87367          },
87368          {
87369            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
87370            "in": "query",
87371            "name": "orphanDependents",
87372            "type": "boolean",
87373            "uniqueItems": true
87374          },
87375          {
87376            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
87377            "in": "query",
87378            "name": "propagationPolicy",
87379            "type": "string",
87380            "uniqueItems": true
87381          },
87382          {
87383            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
87384            "in": "query",
87385            "name": "resourceVersion",
87386            "type": "string",
87387            "uniqueItems": true
87388          },
87389          {
87390            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
87391            "in": "query",
87392            "name": "resourceVersionMatch",
87393            "type": "string",
87394            "uniqueItems": true
87395          },
87396          {
87397            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
87398            "in": "query",
87399            "name": "timeoutSeconds",
87400            "type": "integer",
87401            "uniqueItems": true
87402          }
87403        ],
87404        "produces": [
87405          "application/json",
87406          "application/yaml",
87407          "application/vnd.kubernetes.protobuf"
87408        ],
87409        "responses": {
87410          "200": {
87411            "description": "OK",
87412            "schema": {
87413              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
87414            }
87415          },
87416          "401": {
87417            "description": "Unauthorized"
87418          }
87419        },
87420        "schemes": [
87421          "https"
87422        ],
87423        "tags": [
87424          "storage_v1alpha1"
87425        ],
87426        "x-kubernetes-action": "deletecollection",
87427        "x-kubernetes-group-version-kind": {
87428          "group": "storage.k8s.io",
87429          "kind": "CSIStorageCapacity",
87430          "version": "v1alpha1"
87431        }
87432      },
87433      "get": {
87434        "consumes": [
87435          "*/*"
87436        ],
87437        "description": "list or watch objects of kind CSIStorageCapacity",
87438        "operationId": "listStorageV1alpha1NamespacedCSIStorageCapacity",
87439        "parameters": [
87440          {
87441            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
87442            "in": "query",
87443            "name": "allowWatchBookmarks",
87444            "type": "boolean",
87445            "uniqueItems": true
87446          },
87447          {
87448            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
87449            "in": "query",
87450            "name": "continue",
87451            "type": "string",
87452            "uniqueItems": true
87453          },
87454          {
87455            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
87456            "in": "query",
87457            "name": "fieldSelector",
87458            "type": "string",
87459            "uniqueItems": true
87460          },
87461          {
87462            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
87463            "in": "query",
87464            "name": "labelSelector",
87465            "type": "string",
87466            "uniqueItems": true
87467          },
87468          {
87469            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
87470            "in": "query",
87471            "name": "limit",
87472            "type": "integer",
87473            "uniqueItems": true
87474          },
87475          {
87476            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
87477            "in": "query",
87478            "name": "resourceVersion",
87479            "type": "string",
87480            "uniqueItems": true
87481          },
87482          {
87483            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
87484            "in": "query",
87485            "name": "resourceVersionMatch",
87486            "type": "string",
87487            "uniqueItems": true
87488          },
87489          {
87490            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
87491            "in": "query",
87492            "name": "timeoutSeconds",
87493            "type": "integer",
87494            "uniqueItems": true
87495          },
87496          {
87497            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
87498            "in": "query",
87499            "name": "watch",
87500            "type": "boolean",
87501            "uniqueItems": true
87502          }
87503        ],
87504        "produces": [
87505          "application/json",
87506          "application/yaml",
87507          "application/vnd.kubernetes.protobuf",
87508          "application/json;stream=watch",
87509          "application/vnd.kubernetes.protobuf;stream=watch"
87510        ],
87511        "responses": {
87512          "200": {
87513            "description": "OK",
87514            "schema": {
87515              "$ref": "#/definitions/io.k8s.api.storage.v1alpha1.CSIStorageCapacityList"
87516            }
87517          },
87518          "401": {
87519            "description": "Unauthorized"
87520          }
87521        },
87522        "schemes": [
87523          "https"
87524        ],
87525        "tags": [
87526          "storage_v1alpha1"
87527        ],
87528        "x-kubernetes-action": "list",
87529        "x-kubernetes-group-version-kind": {
87530          "group": "storage.k8s.io",
87531          "kind": "CSIStorageCapacity",
87532          "version": "v1alpha1"
87533        }
87534      },
87535      "parameters": [
87536        {
87537          "description": "object name and auth scope, such as for teams and projects",
87538          "in": "path",
87539          "name": "namespace",
87540          "required": true,
87541          "type": "string",
87542          "uniqueItems": true
87543        },
87544        {
87545          "description": "If 'true', then the output is pretty printed.",
87546          "in": "query",
87547          "name": "pretty",
87548          "type": "string",
87549          "uniqueItems": true
87550        }
87551      ],
87552      "post": {
87553        "consumes": [
87554          "*/*"
87555        ],
87556        "description": "create a CSIStorageCapacity",
87557        "operationId": "createStorageV1alpha1NamespacedCSIStorageCapacity",
87558        "parameters": [
87559          {
87560            "in": "body",
87561            "name": "body",
87562            "required": true,
87563            "schema": {
87564              "$ref": "#/definitions/io.k8s.api.storage.v1alpha1.CSIStorageCapacity"
87565            }
87566          },
87567          {
87568            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
87569            "in": "query",
87570            "name": "dryRun",
87571            "type": "string",
87572            "uniqueItems": true
87573          },
87574          {
87575            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
87576            "in": "query",
87577            "name": "fieldManager",
87578            "type": "string",
87579            "uniqueItems": true
87580          }
87581        ],
87582        "produces": [
87583          "application/json",
87584          "application/yaml",
87585          "application/vnd.kubernetes.protobuf"
87586        ],
87587        "responses": {
87588          "200": {
87589            "description": "OK",
87590            "schema": {
87591              "$ref": "#/definitions/io.k8s.api.storage.v1alpha1.CSIStorageCapacity"
87592            }
87593          },
87594          "201": {
87595            "description": "Created",
87596            "schema": {
87597              "$ref": "#/definitions/io.k8s.api.storage.v1alpha1.CSIStorageCapacity"
87598            }
87599          },
87600          "202": {
87601            "description": "Accepted",
87602            "schema": {
87603              "$ref": "#/definitions/io.k8s.api.storage.v1alpha1.CSIStorageCapacity"
87604            }
87605          },
87606          "401": {
87607            "description": "Unauthorized"
87608          }
87609        },
87610        "schemes": [
87611          "https"
87612        ],
87613        "tags": [
87614          "storage_v1alpha1"
87615        ],
87616        "x-kubernetes-action": "post",
87617        "x-kubernetes-group-version-kind": {
87618          "group": "storage.k8s.io",
87619          "kind": "CSIStorageCapacity",
87620          "version": "v1alpha1"
87621        }
87622      }
87623    },
87624    "/apis/storage.k8s.io/v1alpha1/namespaces/{namespace}/csistoragecapacities/{name}": {
87625      "delete": {
87626        "consumes": [
87627          "*/*"
87628        ],
87629        "description": "delete a CSIStorageCapacity",
87630        "operationId": "deleteStorageV1alpha1NamespacedCSIStorageCapacity",
87631        "parameters": [
87632          {
87633            "in": "body",
87634            "name": "body",
87635            "schema": {
87636              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
87637            }
87638          },
87639          {
87640            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
87641            "in": "query",
87642            "name": "dryRun",
87643            "type": "string",
87644            "uniqueItems": true
87645          },
87646          {
87647            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
87648            "in": "query",
87649            "name": "gracePeriodSeconds",
87650            "type": "integer",
87651            "uniqueItems": true
87652          },
87653          {
87654            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
87655            "in": "query",
87656            "name": "orphanDependents",
87657            "type": "boolean",
87658            "uniqueItems": true
87659          },
87660          {
87661            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
87662            "in": "query",
87663            "name": "propagationPolicy",
87664            "type": "string",
87665            "uniqueItems": true
87666          }
87667        ],
87668        "produces": [
87669          "application/json",
87670          "application/yaml",
87671          "application/vnd.kubernetes.protobuf"
87672        ],
87673        "responses": {
87674          "200": {
87675            "description": "OK",
87676            "schema": {
87677              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
87678            }
87679          },
87680          "202": {
87681            "description": "Accepted",
87682            "schema": {
87683              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
87684            }
87685          },
87686          "401": {
87687            "description": "Unauthorized"
87688          }
87689        },
87690        "schemes": [
87691          "https"
87692        ],
87693        "tags": [
87694          "storage_v1alpha1"
87695        ],
87696        "x-kubernetes-action": "delete",
87697        "x-kubernetes-group-version-kind": {
87698          "group": "storage.k8s.io",
87699          "kind": "CSIStorageCapacity",
87700          "version": "v1alpha1"
87701        }
87702      },
87703      "get": {
87704        "consumes": [
87705          "*/*"
87706        ],
87707        "description": "read the specified CSIStorageCapacity",
87708        "operationId": "readStorageV1alpha1NamespacedCSIStorageCapacity",
87709        "produces": [
87710          "application/json",
87711          "application/yaml",
87712          "application/vnd.kubernetes.protobuf"
87713        ],
87714        "responses": {
87715          "200": {
87716            "description": "OK",
87717            "schema": {
87718              "$ref": "#/definitions/io.k8s.api.storage.v1alpha1.CSIStorageCapacity"
87719            }
87720          },
87721          "401": {
87722            "description": "Unauthorized"
87723          }
87724        },
87725        "schemes": [
87726          "https"
87727        ],
87728        "tags": [
87729          "storage_v1alpha1"
87730        ],
87731        "x-kubernetes-action": "get",
87732        "x-kubernetes-group-version-kind": {
87733          "group": "storage.k8s.io",
87734          "kind": "CSIStorageCapacity",
87735          "version": "v1alpha1"
87736        }
87737      },
87738      "parameters": [
87739        {
87740          "description": "name of the CSIStorageCapacity",
87741          "in": "path",
87742          "name": "name",
87743          "required": true,
87744          "type": "string",
87745          "uniqueItems": true
87746        },
87747        {
87748          "description": "object name and auth scope, such as for teams and projects",
87749          "in": "path",
87750          "name": "namespace",
87751          "required": true,
87752          "type": "string",
87753          "uniqueItems": true
87754        },
87755        {
87756          "description": "If 'true', then the output is pretty printed.",
87757          "in": "query",
87758          "name": "pretty",
87759          "type": "string",
87760          "uniqueItems": true
87761        }
87762      ],
87763      "patch": {
87764        "consumes": [
87765          "application/json-patch+json",
87766          "application/merge-patch+json",
87767          "application/strategic-merge-patch+json",
87768          "application/apply-patch+yaml"
87769        ],
87770        "description": "partially update the specified CSIStorageCapacity",
87771        "operationId": "patchStorageV1alpha1NamespacedCSIStorageCapacity",
87772        "parameters": [
87773          {
87774            "in": "body",
87775            "name": "body",
87776            "required": true,
87777            "schema": {
87778              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
87779            }
87780          },
87781          {
87782            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
87783            "in": "query",
87784            "name": "dryRun",
87785            "type": "string",
87786            "uniqueItems": true
87787          },
87788          {
87789            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
87790            "in": "query",
87791            "name": "fieldManager",
87792            "type": "string",
87793            "uniqueItems": true
87794          },
87795          {
87796            "description": "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.",
87797            "in": "query",
87798            "name": "force",
87799            "type": "boolean",
87800            "uniqueItems": true
87801          }
87802        ],
87803        "produces": [
87804          "application/json",
87805          "application/yaml",
87806          "application/vnd.kubernetes.protobuf"
87807        ],
87808        "responses": {
87809          "200": {
87810            "description": "OK",
87811            "schema": {
87812              "$ref": "#/definitions/io.k8s.api.storage.v1alpha1.CSIStorageCapacity"
87813            }
87814          },
87815          "201": {
87816            "description": "Created",
87817            "schema": {
87818              "$ref": "#/definitions/io.k8s.api.storage.v1alpha1.CSIStorageCapacity"
87819            }
87820          },
87821          "401": {
87822            "description": "Unauthorized"
87823          }
87824        },
87825        "schemes": [
87826          "https"
87827        ],
87828        "tags": [
87829          "storage_v1alpha1"
87830        ],
87831        "x-kubernetes-action": "patch",
87832        "x-kubernetes-group-version-kind": {
87833          "group": "storage.k8s.io",
87834          "kind": "CSIStorageCapacity",
87835          "version": "v1alpha1"
87836        }
87837      },
87838      "put": {
87839        "consumes": [
87840          "*/*"
87841        ],
87842        "description": "replace the specified CSIStorageCapacity",
87843        "operationId": "replaceStorageV1alpha1NamespacedCSIStorageCapacity",
87844        "parameters": [
87845          {
87846            "in": "body",
87847            "name": "body",
87848            "required": true,
87849            "schema": {
87850              "$ref": "#/definitions/io.k8s.api.storage.v1alpha1.CSIStorageCapacity"
87851            }
87852          },
87853          {
87854            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
87855            "in": "query",
87856            "name": "dryRun",
87857            "type": "string",
87858            "uniqueItems": true
87859          },
87860          {
87861            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
87862            "in": "query",
87863            "name": "fieldManager",
87864            "type": "string",
87865            "uniqueItems": true
87866          }
87867        ],
87868        "produces": [
87869          "application/json",
87870          "application/yaml",
87871          "application/vnd.kubernetes.protobuf"
87872        ],
87873        "responses": {
87874          "200": {
87875            "description": "OK",
87876            "schema": {
87877              "$ref": "#/definitions/io.k8s.api.storage.v1alpha1.CSIStorageCapacity"
87878            }
87879          },
87880          "201": {
87881            "description": "Created",
87882            "schema": {
87883              "$ref": "#/definitions/io.k8s.api.storage.v1alpha1.CSIStorageCapacity"
87884            }
87885          },
87886          "401": {
87887            "description": "Unauthorized"
87888          }
87889        },
87890        "schemes": [
87891          "https"
87892        ],
87893        "tags": [
87894          "storage_v1alpha1"
87895        ],
87896        "x-kubernetes-action": "put",
87897        "x-kubernetes-group-version-kind": {
87898          "group": "storage.k8s.io",
87899          "kind": "CSIStorageCapacity",
87900          "version": "v1alpha1"
87901        }
87902      }
87903    },
87904    "/apis/storage.k8s.io/v1alpha1/volumeattachments": {
87905      "delete": {
87906        "consumes": [
87907          "*/*"
87908        ],
87909        "description": "delete collection of VolumeAttachment",
87910        "operationId": "deleteStorageV1alpha1CollectionVolumeAttachment",
87911        "parameters": [
87912          {
87913            "in": "body",
87914            "name": "body",
87915            "schema": {
87916              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
87917            }
87918          },
87919          {
87920            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
87921            "in": "query",
87922            "name": "continue",
87923            "type": "string",
87924            "uniqueItems": true
87925          },
87926          {
87927            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
87928            "in": "query",
87929            "name": "dryRun",
87930            "type": "string",
87931            "uniqueItems": true
87932          },
87933          {
87934            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
87935            "in": "query",
87936            "name": "fieldSelector",
87937            "type": "string",
87938            "uniqueItems": true
87939          },
87940          {
87941            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
87942            "in": "query",
87943            "name": "gracePeriodSeconds",
87944            "type": "integer",
87945            "uniqueItems": true
87946          },
87947          {
87948            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
87949            "in": "query",
87950            "name": "labelSelector",
87951            "type": "string",
87952            "uniqueItems": true
87953          },
87954          {
87955            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
87956            "in": "query",
87957            "name": "limit",
87958            "type": "integer",
87959            "uniqueItems": true
87960          },
87961          {
87962            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
87963            "in": "query",
87964            "name": "orphanDependents",
87965            "type": "boolean",
87966            "uniqueItems": true
87967          },
87968          {
87969            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
87970            "in": "query",
87971            "name": "propagationPolicy",
87972            "type": "string",
87973            "uniqueItems": true
87974          },
87975          {
87976            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
87977            "in": "query",
87978            "name": "resourceVersion",
87979            "type": "string",
87980            "uniqueItems": true
87981          },
87982          {
87983            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
87984            "in": "query",
87985            "name": "resourceVersionMatch",
87986            "type": "string",
87987            "uniqueItems": true
87988          },
87989          {
87990            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
87991            "in": "query",
87992            "name": "timeoutSeconds",
87993            "type": "integer",
87994            "uniqueItems": true
87995          }
87996        ],
87997        "produces": [
87998          "application/json",
87999          "application/yaml",
88000          "application/vnd.kubernetes.protobuf"
88001        ],
88002        "responses": {
88003          "200": {
88004            "description": "OK",
88005            "schema": {
88006              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
88007            }
88008          },
88009          "401": {
88010            "description": "Unauthorized"
88011          }
88012        },
88013        "schemes": [
88014          "https"
88015        ],
88016        "tags": [
88017          "storage_v1alpha1"
88018        ],
88019        "x-kubernetes-action": "deletecollection",
88020        "x-kubernetes-group-version-kind": {
88021          "group": "storage.k8s.io",
88022          "kind": "VolumeAttachment",
88023          "version": "v1alpha1"
88024        }
88025      },
88026      "get": {
88027        "consumes": [
88028          "*/*"
88029        ],
88030        "description": "list or watch objects of kind VolumeAttachment",
88031        "operationId": "listStorageV1alpha1VolumeAttachment",
88032        "parameters": [
88033          {
88034            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
88035            "in": "query",
88036            "name": "allowWatchBookmarks",
88037            "type": "boolean",
88038            "uniqueItems": true
88039          },
88040          {
88041            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
88042            "in": "query",
88043            "name": "continue",
88044            "type": "string",
88045            "uniqueItems": true
88046          },
88047          {
88048            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
88049            "in": "query",
88050            "name": "fieldSelector",
88051            "type": "string",
88052            "uniqueItems": true
88053          },
88054          {
88055            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
88056            "in": "query",
88057            "name": "labelSelector",
88058            "type": "string",
88059            "uniqueItems": true
88060          },
88061          {
88062            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
88063            "in": "query",
88064            "name": "limit",
88065            "type": "integer",
88066            "uniqueItems": true
88067          },
88068          {
88069            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
88070            "in": "query",
88071            "name": "resourceVersion",
88072            "type": "string",
88073            "uniqueItems": true
88074          },
88075          {
88076            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
88077            "in": "query",
88078            "name": "resourceVersionMatch",
88079            "type": "string",
88080            "uniqueItems": true
88081          },
88082          {
88083            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
88084            "in": "query",
88085            "name": "timeoutSeconds",
88086            "type": "integer",
88087            "uniqueItems": true
88088          },
88089          {
88090            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
88091            "in": "query",
88092            "name": "watch",
88093            "type": "boolean",
88094            "uniqueItems": true
88095          }
88096        ],
88097        "produces": [
88098          "application/json",
88099          "application/yaml",
88100          "application/vnd.kubernetes.protobuf",
88101          "application/json;stream=watch",
88102          "application/vnd.kubernetes.protobuf;stream=watch"
88103        ],
88104        "responses": {
88105          "200": {
88106            "description": "OK",
88107            "schema": {
88108              "$ref": "#/definitions/io.k8s.api.storage.v1alpha1.VolumeAttachmentList"
88109            }
88110          },
88111          "401": {
88112            "description": "Unauthorized"
88113          }
88114        },
88115        "schemes": [
88116          "https"
88117        ],
88118        "tags": [
88119          "storage_v1alpha1"
88120        ],
88121        "x-kubernetes-action": "list",
88122        "x-kubernetes-group-version-kind": {
88123          "group": "storage.k8s.io",
88124          "kind": "VolumeAttachment",
88125          "version": "v1alpha1"
88126        }
88127      },
88128      "parameters": [
88129        {
88130          "description": "If 'true', then the output is pretty printed.",
88131          "in": "query",
88132          "name": "pretty",
88133          "type": "string",
88134          "uniqueItems": true
88135        }
88136      ],
88137      "post": {
88138        "consumes": [
88139          "*/*"
88140        ],
88141        "description": "create a VolumeAttachment",
88142        "operationId": "createStorageV1alpha1VolumeAttachment",
88143        "parameters": [
88144          {
88145            "in": "body",
88146            "name": "body",
88147            "required": true,
88148            "schema": {
88149              "$ref": "#/definitions/io.k8s.api.storage.v1alpha1.VolumeAttachment"
88150            }
88151          },
88152          {
88153            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
88154            "in": "query",
88155            "name": "dryRun",
88156            "type": "string",
88157            "uniqueItems": true
88158          },
88159          {
88160            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
88161            "in": "query",
88162            "name": "fieldManager",
88163            "type": "string",
88164            "uniqueItems": true
88165          }
88166        ],
88167        "produces": [
88168          "application/json",
88169          "application/yaml",
88170          "application/vnd.kubernetes.protobuf"
88171        ],
88172        "responses": {
88173          "200": {
88174            "description": "OK",
88175            "schema": {
88176              "$ref": "#/definitions/io.k8s.api.storage.v1alpha1.VolumeAttachment"
88177            }
88178          },
88179          "201": {
88180            "description": "Created",
88181            "schema": {
88182              "$ref": "#/definitions/io.k8s.api.storage.v1alpha1.VolumeAttachment"
88183            }
88184          },
88185          "202": {
88186            "description": "Accepted",
88187            "schema": {
88188              "$ref": "#/definitions/io.k8s.api.storage.v1alpha1.VolumeAttachment"
88189            }
88190          },
88191          "401": {
88192            "description": "Unauthorized"
88193          }
88194        },
88195        "schemes": [
88196          "https"
88197        ],
88198        "tags": [
88199          "storage_v1alpha1"
88200        ],
88201        "x-kubernetes-action": "post",
88202        "x-kubernetes-group-version-kind": {
88203          "group": "storage.k8s.io",
88204          "kind": "VolumeAttachment",
88205          "version": "v1alpha1"
88206        }
88207      }
88208    },
88209    "/apis/storage.k8s.io/v1alpha1/volumeattachments/{name}": {
88210      "delete": {
88211        "consumes": [
88212          "*/*"
88213        ],
88214        "description": "delete a VolumeAttachment",
88215        "operationId": "deleteStorageV1alpha1VolumeAttachment",
88216        "parameters": [
88217          {
88218            "in": "body",
88219            "name": "body",
88220            "schema": {
88221              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
88222            }
88223          },
88224          {
88225            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
88226            "in": "query",
88227            "name": "dryRun",
88228            "type": "string",
88229            "uniqueItems": true
88230          },
88231          {
88232            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
88233            "in": "query",
88234            "name": "gracePeriodSeconds",
88235            "type": "integer",
88236            "uniqueItems": true
88237          },
88238          {
88239            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
88240            "in": "query",
88241            "name": "orphanDependents",
88242            "type": "boolean",
88243            "uniqueItems": true
88244          },
88245          {
88246            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
88247            "in": "query",
88248            "name": "propagationPolicy",
88249            "type": "string",
88250            "uniqueItems": true
88251          }
88252        ],
88253        "produces": [
88254          "application/json",
88255          "application/yaml",
88256          "application/vnd.kubernetes.protobuf"
88257        ],
88258        "responses": {
88259          "200": {
88260            "description": "OK",
88261            "schema": {
88262              "$ref": "#/definitions/io.k8s.api.storage.v1alpha1.VolumeAttachment"
88263            }
88264          },
88265          "202": {
88266            "description": "Accepted",
88267            "schema": {
88268              "$ref": "#/definitions/io.k8s.api.storage.v1alpha1.VolumeAttachment"
88269            }
88270          },
88271          "401": {
88272            "description": "Unauthorized"
88273          }
88274        },
88275        "schemes": [
88276          "https"
88277        ],
88278        "tags": [
88279          "storage_v1alpha1"
88280        ],
88281        "x-kubernetes-action": "delete",
88282        "x-kubernetes-group-version-kind": {
88283          "group": "storage.k8s.io",
88284          "kind": "VolumeAttachment",
88285          "version": "v1alpha1"
88286        }
88287      },
88288      "get": {
88289        "consumes": [
88290          "*/*"
88291        ],
88292        "description": "read the specified VolumeAttachment",
88293        "operationId": "readStorageV1alpha1VolumeAttachment",
88294        "produces": [
88295          "application/json",
88296          "application/yaml",
88297          "application/vnd.kubernetes.protobuf"
88298        ],
88299        "responses": {
88300          "200": {
88301            "description": "OK",
88302            "schema": {
88303              "$ref": "#/definitions/io.k8s.api.storage.v1alpha1.VolumeAttachment"
88304            }
88305          },
88306          "401": {
88307            "description": "Unauthorized"
88308          }
88309        },
88310        "schemes": [
88311          "https"
88312        ],
88313        "tags": [
88314          "storage_v1alpha1"
88315        ],
88316        "x-kubernetes-action": "get",
88317        "x-kubernetes-group-version-kind": {
88318          "group": "storage.k8s.io",
88319          "kind": "VolumeAttachment",
88320          "version": "v1alpha1"
88321        }
88322      },
88323      "parameters": [
88324        {
88325          "description": "name of the VolumeAttachment",
88326          "in": "path",
88327          "name": "name",
88328          "required": true,
88329          "type": "string",
88330          "uniqueItems": true
88331        },
88332        {
88333          "description": "If 'true', then the output is pretty printed.",
88334          "in": "query",
88335          "name": "pretty",
88336          "type": "string",
88337          "uniqueItems": true
88338        }
88339      ],
88340      "patch": {
88341        "consumes": [
88342          "application/json-patch+json",
88343          "application/merge-patch+json",
88344          "application/strategic-merge-patch+json",
88345          "application/apply-patch+yaml"
88346        ],
88347        "description": "partially update the specified VolumeAttachment",
88348        "operationId": "patchStorageV1alpha1VolumeAttachment",
88349        "parameters": [
88350          {
88351            "in": "body",
88352            "name": "body",
88353            "required": true,
88354            "schema": {
88355              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
88356            }
88357          },
88358          {
88359            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
88360            "in": "query",
88361            "name": "dryRun",
88362            "type": "string",
88363            "uniqueItems": true
88364          },
88365          {
88366            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
88367            "in": "query",
88368            "name": "fieldManager",
88369            "type": "string",
88370            "uniqueItems": true
88371          },
88372          {
88373            "description": "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.",
88374            "in": "query",
88375            "name": "force",
88376            "type": "boolean",
88377            "uniqueItems": true
88378          }
88379        ],
88380        "produces": [
88381          "application/json",
88382          "application/yaml",
88383          "application/vnd.kubernetes.protobuf"
88384        ],
88385        "responses": {
88386          "200": {
88387            "description": "OK",
88388            "schema": {
88389              "$ref": "#/definitions/io.k8s.api.storage.v1alpha1.VolumeAttachment"
88390            }
88391          },
88392          "201": {
88393            "description": "Created",
88394            "schema": {
88395              "$ref": "#/definitions/io.k8s.api.storage.v1alpha1.VolumeAttachment"
88396            }
88397          },
88398          "401": {
88399            "description": "Unauthorized"
88400          }
88401        },
88402        "schemes": [
88403          "https"
88404        ],
88405        "tags": [
88406          "storage_v1alpha1"
88407        ],
88408        "x-kubernetes-action": "patch",
88409        "x-kubernetes-group-version-kind": {
88410          "group": "storage.k8s.io",
88411          "kind": "VolumeAttachment",
88412          "version": "v1alpha1"
88413        }
88414      },
88415      "put": {
88416        "consumes": [
88417          "*/*"
88418        ],
88419        "description": "replace the specified VolumeAttachment",
88420        "operationId": "replaceStorageV1alpha1VolumeAttachment",
88421        "parameters": [
88422          {
88423            "in": "body",
88424            "name": "body",
88425            "required": true,
88426            "schema": {
88427              "$ref": "#/definitions/io.k8s.api.storage.v1alpha1.VolumeAttachment"
88428            }
88429          },
88430          {
88431            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
88432            "in": "query",
88433            "name": "dryRun",
88434            "type": "string",
88435            "uniqueItems": true
88436          },
88437          {
88438            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
88439            "in": "query",
88440            "name": "fieldManager",
88441            "type": "string",
88442            "uniqueItems": true
88443          }
88444        ],
88445        "produces": [
88446          "application/json",
88447          "application/yaml",
88448          "application/vnd.kubernetes.protobuf"
88449        ],
88450        "responses": {
88451          "200": {
88452            "description": "OK",
88453            "schema": {
88454              "$ref": "#/definitions/io.k8s.api.storage.v1alpha1.VolumeAttachment"
88455            }
88456          },
88457          "201": {
88458            "description": "Created",
88459            "schema": {
88460              "$ref": "#/definitions/io.k8s.api.storage.v1alpha1.VolumeAttachment"
88461            }
88462          },
88463          "401": {
88464            "description": "Unauthorized"
88465          }
88466        },
88467        "schemes": [
88468          "https"
88469        ],
88470        "tags": [
88471          "storage_v1alpha1"
88472        ],
88473        "x-kubernetes-action": "put",
88474        "x-kubernetes-group-version-kind": {
88475          "group": "storage.k8s.io",
88476          "kind": "VolumeAttachment",
88477          "version": "v1alpha1"
88478        }
88479      }
88480    },
88481    "/apis/storage.k8s.io/v1alpha1/watch/csistoragecapacities": {
88482      "get": {
88483        "consumes": [
88484          "*/*"
88485        ],
88486        "description": "watch individual changes to a list of CSIStorageCapacity. deprecated: use the 'watch' parameter with a list operation instead.",
88487        "operationId": "watchStorageV1alpha1CSIStorageCapacityListForAllNamespaces",
88488        "produces": [
88489          "application/json",
88490          "application/yaml",
88491          "application/vnd.kubernetes.protobuf",
88492          "application/json;stream=watch",
88493          "application/vnd.kubernetes.protobuf;stream=watch"
88494        ],
88495        "responses": {
88496          "200": {
88497            "description": "OK",
88498            "schema": {
88499              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
88500            }
88501          },
88502          "401": {
88503            "description": "Unauthorized"
88504          }
88505        },
88506        "schemes": [
88507          "https"
88508        ],
88509        "tags": [
88510          "storage_v1alpha1"
88511        ],
88512        "x-kubernetes-action": "watchlist",
88513        "x-kubernetes-group-version-kind": {
88514          "group": "storage.k8s.io",
88515          "kind": "CSIStorageCapacity",
88516          "version": "v1alpha1"
88517        }
88518      },
88519      "parameters": [
88520        {
88521          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
88522          "in": "query",
88523          "name": "allowWatchBookmarks",
88524          "type": "boolean",
88525          "uniqueItems": true
88526        },
88527        {
88528          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
88529          "in": "query",
88530          "name": "continue",
88531          "type": "string",
88532          "uniqueItems": true
88533        },
88534        {
88535          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
88536          "in": "query",
88537          "name": "fieldSelector",
88538          "type": "string",
88539          "uniqueItems": true
88540        },
88541        {
88542          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
88543          "in": "query",
88544          "name": "labelSelector",
88545          "type": "string",
88546          "uniqueItems": true
88547        },
88548        {
88549          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
88550          "in": "query",
88551          "name": "limit",
88552          "type": "integer",
88553          "uniqueItems": true
88554        },
88555        {
88556          "description": "If 'true', then the output is pretty printed.",
88557          "in": "query",
88558          "name": "pretty",
88559          "type": "string",
88560          "uniqueItems": true
88561        },
88562        {
88563          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
88564          "in": "query",
88565          "name": "resourceVersion",
88566          "type": "string",
88567          "uniqueItems": true
88568        },
88569        {
88570          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
88571          "in": "query",
88572          "name": "resourceVersionMatch",
88573          "type": "string",
88574          "uniqueItems": true
88575        },
88576        {
88577          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
88578          "in": "query",
88579          "name": "timeoutSeconds",
88580          "type": "integer",
88581          "uniqueItems": true
88582        },
88583        {
88584          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
88585          "in": "query",
88586          "name": "watch",
88587          "type": "boolean",
88588          "uniqueItems": true
88589        }
88590      ]
88591    },
88592    "/apis/storage.k8s.io/v1alpha1/watch/namespaces/{namespace}/csistoragecapacities": {
88593      "get": {
88594        "consumes": [
88595          "*/*"
88596        ],
88597        "description": "watch individual changes to a list of CSIStorageCapacity. deprecated: use the 'watch' parameter with a list operation instead.",
88598        "operationId": "watchStorageV1alpha1NamespacedCSIStorageCapacityList",
88599        "produces": [
88600          "application/json",
88601          "application/yaml",
88602          "application/vnd.kubernetes.protobuf",
88603          "application/json;stream=watch",
88604          "application/vnd.kubernetes.protobuf;stream=watch"
88605        ],
88606        "responses": {
88607          "200": {
88608            "description": "OK",
88609            "schema": {
88610              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
88611            }
88612          },
88613          "401": {
88614            "description": "Unauthorized"
88615          }
88616        },
88617        "schemes": [
88618          "https"
88619        ],
88620        "tags": [
88621          "storage_v1alpha1"
88622        ],
88623        "x-kubernetes-action": "watchlist",
88624        "x-kubernetes-group-version-kind": {
88625          "group": "storage.k8s.io",
88626          "kind": "CSIStorageCapacity",
88627          "version": "v1alpha1"
88628        }
88629      },
88630      "parameters": [
88631        {
88632          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
88633          "in": "query",
88634          "name": "allowWatchBookmarks",
88635          "type": "boolean",
88636          "uniqueItems": true
88637        },
88638        {
88639          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
88640          "in": "query",
88641          "name": "continue",
88642          "type": "string",
88643          "uniqueItems": true
88644        },
88645        {
88646          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
88647          "in": "query",
88648          "name": "fieldSelector",
88649          "type": "string",
88650          "uniqueItems": true
88651        },
88652        {
88653          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
88654          "in": "query",
88655          "name": "labelSelector",
88656          "type": "string",
88657          "uniqueItems": true
88658        },
88659        {
88660          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
88661          "in": "query",
88662          "name": "limit",
88663          "type": "integer",
88664          "uniqueItems": true
88665        },
88666        {
88667          "description": "object name and auth scope, such as for teams and projects",
88668          "in": "path",
88669          "name": "namespace",
88670          "required": true,
88671          "type": "string",
88672          "uniqueItems": true
88673        },
88674        {
88675          "description": "If 'true', then the output is pretty printed.",
88676          "in": "query",
88677          "name": "pretty",
88678          "type": "string",
88679          "uniqueItems": true
88680        },
88681        {
88682          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
88683          "in": "query",
88684          "name": "resourceVersion",
88685          "type": "string",
88686          "uniqueItems": true
88687        },
88688        {
88689          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
88690          "in": "query",
88691          "name": "resourceVersionMatch",
88692          "type": "string",
88693          "uniqueItems": true
88694        },
88695        {
88696          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
88697          "in": "query",
88698          "name": "timeoutSeconds",
88699          "type": "integer",
88700          "uniqueItems": true
88701        },
88702        {
88703          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
88704          "in": "query",
88705          "name": "watch",
88706          "type": "boolean",
88707          "uniqueItems": true
88708        }
88709      ]
88710    },
88711    "/apis/storage.k8s.io/v1alpha1/watch/namespaces/{namespace}/csistoragecapacities/{name}": {
88712      "get": {
88713        "consumes": [
88714          "*/*"
88715        ],
88716        "description": "watch changes to an object of kind CSIStorageCapacity. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.",
88717        "operationId": "watchStorageV1alpha1NamespacedCSIStorageCapacity",
88718        "produces": [
88719          "application/json",
88720          "application/yaml",
88721          "application/vnd.kubernetes.protobuf",
88722          "application/json;stream=watch",
88723          "application/vnd.kubernetes.protobuf;stream=watch"
88724        ],
88725        "responses": {
88726          "200": {
88727            "description": "OK",
88728            "schema": {
88729              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
88730            }
88731          },
88732          "401": {
88733            "description": "Unauthorized"
88734          }
88735        },
88736        "schemes": [
88737          "https"
88738        ],
88739        "tags": [
88740          "storage_v1alpha1"
88741        ],
88742        "x-kubernetes-action": "watch",
88743        "x-kubernetes-group-version-kind": {
88744          "group": "storage.k8s.io",
88745          "kind": "CSIStorageCapacity",
88746          "version": "v1alpha1"
88747        }
88748      },
88749      "parameters": [
88750        {
88751          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
88752          "in": "query",
88753          "name": "allowWatchBookmarks",
88754          "type": "boolean",
88755          "uniqueItems": true
88756        },
88757        {
88758          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
88759          "in": "query",
88760          "name": "continue",
88761          "type": "string",
88762          "uniqueItems": true
88763        },
88764        {
88765          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
88766          "in": "query",
88767          "name": "fieldSelector",
88768          "type": "string",
88769          "uniqueItems": true
88770        },
88771        {
88772          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
88773          "in": "query",
88774          "name": "labelSelector",
88775          "type": "string",
88776          "uniqueItems": true
88777        },
88778        {
88779          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
88780          "in": "query",
88781          "name": "limit",
88782          "type": "integer",
88783          "uniqueItems": true
88784        },
88785        {
88786          "description": "name of the CSIStorageCapacity",
88787          "in": "path",
88788          "name": "name",
88789          "required": true,
88790          "type": "string",
88791          "uniqueItems": true
88792        },
88793        {
88794          "description": "object name and auth scope, such as for teams and projects",
88795          "in": "path",
88796          "name": "namespace",
88797          "required": true,
88798          "type": "string",
88799          "uniqueItems": true
88800        },
88801        {
88802          "description": "If 'true', then the output is pretty printed.",
88803          "in": "query",
88804          "name": "pretty",
88805          "type": "string",
88806          "uniqueItems": true
88807        },
88808        {
88809          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
88810          "in": "query",
88811          "name": "resourceVersion",
88812          "type": "string",
88813          "uniqueItems": true
88814        },
88815        {
88816          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
88817          "in": "query",
88818          "name": "resourceVersionMatch",
88819          "type": "string",
88820          "uniqueItems": true
88821        },
88822        {
88823          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
88824          "in": "query",
88825          "name": "timeoutSeconds",
88826          "type": "integer",
88827          "uniqueItems": true
88828        },
88829        {
88830          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
88831          "in": "query",
88832          "name": "watch",
88833          "type": "boolean",
88834          "uniqueItems": true
88835        }
88836      ]
88837    },
88838    "/apis/storage.k8s.io/v1alpha1/watch/volumeattachments": {
88839      "get": {
88840        "consumes": [
88841          "*/*"
88842        ],
88843        "description": "watch individual changes to a list of VolumeAttachment. deprecated: use the 'watch' parameter with a list operation instead.",
88844        "operationId": "watchStorageV1alpha1VolumeAttachmentList",
88845        "produces": [
88846          "application/json",
88847          "application/yaml",
88848          "application/vnd.kubernetes.protobuf",
88849          "application/json;stream=watch",
88850          "application/vnd.kubernetes.protobuf;stream=watch"
88851        ],
88852        "responses": {
88853          "200": {
88854            "description": "OK",
88855            "schema": {
88856              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
88857            }
88858          },
88859          "401": {
88860            "description": "Unauthorized"
88861          }
88862        },
88863        "schemes": [
88864          "https"
88865        ],
88866        "tags": [
88867          "storage_v1alpha1"
88868        ],
88869        "x-kubernetes-action": "watchlist",
88870        "x-kubernetes-group-version-kind": {
88871          "group": "storage.k8s.io",
88872          "kind": "VolumeAttachment",
88873          "version": "v1alpha1"
88874        }
88875      },
88876      "parameters": [
88877        {
88878          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
88879          "in": "query",
88880          "name": "allowWatchBookmarks",
88881          "type": "boolean",
88882          "uniqueItems": true
88883        },
88884        {
88885          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
88886          "in": "query",
88887          "name": "continue",
88888          "type": "string",
88889          "uniqueItems": true
88890        },
88891        {
88892          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
88893          "in": "query",
88894          "name": "fieldSelector",
88895          "type": "string",
88896          "uniqueItems": true
88897        },
88898        {
88899          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
88900          "in": "query",
88901          "name": "labelSelector",
88902          "type": "string",
88903          "uniqueItems": true
88904        },
88905        {
88906          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
88907          "in": "query",
88908          "name": "limit",
88909          "type": "integer",
88910          "uniqueItems": true
88911        },
88912        {
88913          "description": "If 'true', then the output is pretty printed.",
88914          "in": "query",
88915          "name": "pretty",
88916          "type": "string",
88917          "uniqueItems": true
88918        },
88919        {
88920          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
88921          "in": "query",
88922          "name": "resourceVersion",
88923          "type": "string",
88924          "uniqueItems": true
88925        },
88926        {
88927          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
88928          "in": "query",
88929          "name": "resourceVersionMatch",
88930          "type": "string",
88931          "uniqueItems": true
88932        },
88933        {
88934          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
88935          "in": "query",
88936          "name": "timeoutSeconds",
88937          "type": "integer",
88938          "uniqueItems": true
88939        },
88940        {
88941          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
88942          "in": "query",
88943          "name": "watch",
88944          "type": "boolean",
88945          "uniqueItems": true
88946        }
88947      ]
88948    },
88949    "/apis/storage.k8s.io/v1alpha1/watch/volumeattachments/{name}": {
88950      "get": {
88951        "consumes": [
88952          "*/*"
88953        ],
88954        "description": "watch changes to an object of kind VolumeAttachment. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.",
88955        "operationId": "watchStorageV1alpha1VolumeAttachment",
88956        "produces": [
88957          "application/json",
88958          "application/yaml",
88959          "application/vnd.kubernetes.protobuf",
88960          "application/json;stream=watch",
88961          "application/vnd.kubernetes.protobuf;stream=watch"
88962        ],
88963        "responses": {
88964          "200": {
88965            "description": "OK",
88966            "schema": {
88967              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
88968            }
88969          },
88970          "401": {
88971            "description": "Unauthorized"
88972          }
88973        },
88974        "schemes": [
88975          "https"
88976        ],
88977        "tags": [
88978          "storage_v1alpha1"
88979        ],
88980        "x-kubernetes-action": "watch",
88981        "x-kubernetes-group-version-kind": {
88982          "group": "storage.k8s.io",
88983          "kind": "VolumeAttachment",
88984          "version": "v1alpha1"
88985        }
88986      },
88987      "parameters": [
88988        {
88989          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
88990          "in": "query",
88991          "name": "allowWatchBookmarks",
88992          "type": "boolean",
88993          "uniqueItems": true
88994        },
88995        {
88996          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
88997          "in": "query",
88998          "name": "continue",
88999          "type": "string",
89000          "uniqueItems": true
89001        },
89002        {
89003          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
89004          "in": "query",
89005          "name": "fieldSelector",
89006          "type": "string",
89007          "uniqueItems": true
89008        },
89009        {
89010          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
89011          "in": "query",
89012          "name": "labelSelector",
89013          "type": "string",
89014          "uniqueItems": true
89015        },
89016        {
89017          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
89018          "in": "query",
89019          "name": "limit",
89020          "type": "integer",
89021          "uniqueItems": true
89022        },
89023        {
89024          "description": "name of the VolumeAttachment",
89025          "in": "path",
89026          "name": "name",
89027          "required": true,
89028          "type": "string",
89029          "uniqueItems": true
89030        },
89031        {
89032          "description": "If 'true', then the output is pretty printed.",
89033          "in": "query",
89034          "name": "pretty",
89035          "type": "string",
89036          "uniqueItems": true
89037        },
89038        {
89039          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
89040          "in": "query",
89041          "name": "resourceVersion",
89042          "type": "string",
89043          "uniqueItems": true
89044        },
89045        {
89046          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
89047          "in": "query",
89048          "name": "resourceVersionMatch",
89049          "type": "string",
89050          "uniqueItems": true
89051        },
89052        {
89053          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
89054          "in": "query",
89055          "name": "timeoutSeconds",
89056          "type": "integer",
89057          "uniqueItems": true
89058        },
89059        {
89060          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
89061          "in": "query",
89062          "name": "watch",
89063          "type": "boolean",
89064          "uniqueItems": true
89065        }
89066      ]
89067    },
89068    "/apis/storage.k8s.io/v1beta1/": {
89069      "get": {
89070        "consumes": [
89071          "application/json",
89072          "application/yaml",
89073          "application/vnd.kubernetes.protobuf"
89074        ],
89075        "description": "get available resources",
89076        "operationId": "getStorageV1beta1APIResources",
89077        "produces": [
89078          "application/json",
89079          "application/yaml",
89080          "application/vnd.kubernetes.protobuf"
89081        ],
89082        "responses": {
89083          "200": {
89084            "description": "OK",
89085            "schema": {
89086              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
89087            }
89088          },
89089          "401": {
89090            "description": "Unauthorized"
89091          }
89092        },
89093        "schemes": [
89094          "https"
89095        ],
89096        "tags": [
89097          "storage_v1beta1"
89098        ]
89099      }
89100    },
89101    "/apis/storage.k8s.io/v1beta1/csistoragecapacities": {
89102      "get": {
89103        "consumes": [
89104          "*/*"
89105        ],
89106        "description": "list or watch objects of kind CSIStorageCapacity",
89107        "operationId": "listStorageV1beta1CSIStorageCapacityForAllNamespaces",
89108        "produces": [
89109          "application/json",
89110          "application/yaml",
89111          "application/vnd.kubernetes.protobuf",
89112          "application/json;stream=watch",
89113          "application/vnd.kubernetes.protobuf;stream=watch"
89114        ],
89115        "responses": {
89116          "200": {
89117            "description": "OK",
89118            "schema": {
89119              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.CSIStorageCapacityList"
89120            }
89121          },
89122          "401": {
89123            "description": "Unauthorized"
89124          }
89125        },
89126        "schemes": [
89127          "https"
89128        ],
89129        "tags": [
89130          "storage_v1beta1"
89131        ],
89132        "x-kubernetes-action": "list",
89133        "x-kubernetes-group-version-kind": {
89134          "group": "storage.k8s.io",
89135          "kind": "CSIStorageCapacity",
89136          "version": "v1beta1"
89137        }
89138      },
89139      "parameters": [
89140        {
89141          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
89142          "in": "query",
89143          "name": "allowWatchBookmarks",
89144          "type": "boolean",
89145          "uniqueItems": true
89146        },
89147        {
89148          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
89149          "in": "query",
89150          "name": "continue",
89151          "type": "string",
89152          "uniqueItems": true
89153        },
89154        {
89155          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
89156          "in": "query",
89157          "name": "fieldSelector",
89158          "type": "string",
89159          "uniqueItems": true
89160        },
89161        {
89162          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
89163          "in": "query",
89164          "name": "labelSelector",
89165          "type": "string",
89166          "uniqueItems": true
89167        },
89168        {
89169          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
89170          "in": "query",
89171          "name": "limit",
89172          "type": "integer",
89173          "uniqueItems": true
89174        },
89175        {
89176          "description": "If 'true', then the output is pretty printed.",
89177          "in": "query",
89178          "name": "pretty",
89179          "type": "string",
89180          "uniqueItems": true
89181        },
89182        {
89183          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
89184          "in": "query",
89185          "name": "resourceVersion",
89186          "type": "string",
89187          "uniqueItems": true
89188        },
89189        {
89190          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
89191          "in": "query",
89192          "name": "resourceVersionMatch",
89193          "type": "string",
89194          "uniqueItems": true
89195        },
89196        {
89197          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
89198          "in": "query",
89199          "name": "timeoutSeconds",
89200          "type": "integer",
89201          "uniqueItems": true
89202        },
89203        {
89204          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
89205          "in": "query",
89206          "name": "watch",
89207          "type": "boolean",
89208          "uniqueItems": true
89209        }
89210      ]
89211    },
89212    "/apis/storage.k8s.io/v1beta1/namespaces/{namespace}/csistoragecapacities": {
89213      "delete": {
89214        "consumes": [
89215          "*/*"
89216        ],
89217        "description": "delete collection of CSIStorageCapacity",
89218        "operationId": "deleteStorageV1beta1CollectionNamespacedCSIStorageCapacity",
89219        "parameters": [
89220          {
89221            "in": "body",
89222            "name": "body",
89223            "schema": {
89224              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
89225            }
89226          },
89227          {
89228            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
89229            "in": "query",
89230            "name": "continue",
89231            "type": "string",
89232            "uniqueItems": true
89233          },
89234          {
89235            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
89236            "in": "query",
89237            "name": "dryRun",
89238            "type": "string",
89239            "uniqueItems": true
89240          },
89241          {
89242            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
89243            "in": "query",
89244            "name": "fieldSelector",
89245            "type": "string",
89246            "uniqueItems": true
89247          },
89248          {
89249            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
89250            "in": "query",
89251            "name": "gracePeriodSeconds",
89252            "type": "integer",
89253            "uniqueItems": true
89254          },
89255          {
89256            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
89257            "in": "query",
89258            "name": "labelSelector",
89259            "type": "string",
89260            "uniqueItems": true
89261          },
89262          {
89263            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
89264            "in": "query",
89265            "name": "limit",
89266            "type": "integer",
89267            "uniqueItems": true
89268          },
89269          {
89270            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
89271            "in": "query",
89272            "name": "orphanDependents",
89273            "type": "boolean",
89274            "uniqueItems": true
89275          },
89276          {
89277            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
89278            "in": "query",
89279            "name": "propagationPolicy",
89280            "type": "string",
89281            "uniqueItems": true
89282          },
89283          {
89284            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
89285            "in": "query",
89286            "name": "resourceVersion",
89287            "type": "string",
89288            "uniqueItems": true
89289          },
89290          {
89291            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
89292            "in": "query",
89293            "name": "resourceVersionMatch",
89294            "type": "string",
89295            "uniqueItems": true
89296          },
89297          {
89298            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
89299            "in": "query",
89300            "name": "timeoutSeconds",
89301            "type": "integer",
89302            "uniqueItems": true
89303          }
89304        ],
89305        "produces": [
89306          "application/json",
89307          "application/yaml",
89308          "application/vnd.kubernetes.protobuf"
89309        ],
89310        "responses": {
89311          "200": {
89312            "description": "OK",
89313            "schema": {
89314              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
89315            }
89316          },
89317          "401": {
89318            "description": "Unauthorized"
89319          }
89320        },
89321        "schemes": [
89322          "https"
89323        ],
89324        "tags": [
89325          "storage_v1beta1"
89326        ],
89327        "x-kubernetes-action": "deletecollection",
89328        "x-kubernetes-group-version-kind": {
89329          "group": "storage.k8s.io",
89330          "kind": "CSIStorageCapacity",
89331          "version": "v1beta1"
89332        }
89333      },
89334      "get": {
89335        "consumes": [
89336          "*/*"
89337        ],
89338        "description": "list or watch objects of kind CSIStorageCapacity",
89339        "operationId": "listStorageV1beta1NamespacedCSIStorageCapacity",
89340        "parameters": [
89341          {
89342            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
89343            "in": "query",
89344            "name": "allowWatchBookmarks",
89345            "type": "boolean",
89346            "uniqueItems": true
89347          },
89348          {
89349            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
89350            "in": "query",
89351            "name": "continue",
89352            "type": "string",
89353            "uniqueItems": true
89354          },
89355          {
89356            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
89357            "in": "query",
89358            "name": "fieldSelector",
89359            "type": "string",
89360            "uniqueItems": true
89361          },
89362          {
89363            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
89364            "in": "query",
89365            "name": "labelSelector",
89366            "type": "string",
89367            "uniqueItems": true
89368          },
89369          {
89370            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
89371            "in": "query",
89372            "name": "limit",
89373            "type": "integer",
89374            "uniqueItems": true
89375          },
89376          {
89377            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
89378            "in": "query",
89379            "name": "resourceVersion",
89380            "type": "string",
89381            "uniqueItems": true
89382          },
89383          {
89384            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
89385            "in": "query",
89386            "name": "resourceVersionMatch",
89387            "type": "string",
89388            "uniqueItems": true
89389          },
89390          {
89391            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
89392            "in": "query",
89393            "name": "timeoutSeconds",
89394            "type": "integer",
89395            "uniqueItems": true
89396          },
89397          {
89398            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
89399            "in": "query",
89400            "name": "watch",
89401            "type": "boolean",
89402            "uniqueItems": true
89403          }
89404        ],
89405        "produces": [
89406          "application/json",
89407          "application/yaml",
89408          "application/vnd.kubernetes.protobuf",
89409          "application/json;stream=watch",
89410          "application/vnd.kubernetes.protobuf;stream=watch"
89411        ],
89412        "responses": {
89413          "200": {
89414            "description": "OK",
89415            "schema": {
89416              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.CSIStorageCapacityList"
89417            }
89418          },
89419          "401": {
89420            "description": "Unauthorized"
89421          }
89422        },
89423        "schemes": [
89424          "https"
89425        ],
89426        "tags": [
89427          "storage_v1beta1"
89428        ],
89429        "x-kubernetes-action": "list",
89430        "x-kubernetes-group-version-kind": {
89431          "group": "storage.k8s.io",
89432          "kind": "CSIStorageCapacity",
89433          "version": "v1beta1"
89434        }
89435      },
89436      "parameters": [
89437        {
89438          "description": "object name and auth scope, such as for teams and projects",
89439          "in": "path",
89440          "name": "namespace",
89441          "required": true,
89442          "type": "string",
89443          "uniqueItems": true
89444        },
89445        {
89446          "description": "If 'true', then the output is pretty printed.",
89447          "in": "query",
89448          "name": "pretty",
89449          "type": "string",
89450          "uniqueItems": true
89451        }
89452      ],
89453      "post": {
89454        "consumes": [
89455          "*/*"
89456        ],
89457        "description": "create a CSIStorageCapacity",
89458        "operationId": "createStorageV1beta1NamespacedCSIStorageCapacity",
89459        "parameters": [
89460          {
89461            "in": "body",
89462            "name": "body",
89463            "required": true,
89464            "schema": {
89465              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.CSIStorageCapacity"
89466            }
89467          },
89468          {
89469            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
89470            "in": "query",
89471            "name": "dryRun",
89472            "type": "string",
89473            "uniqueItems": true
89474          },
89475          {
89476            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
89477            "in": "query",
89478            "name": "fieldManager",
89479            "type": "string",
89480            "uniqueItems": true
89481          }
89482        ],
89483        "produces": [
89484          "application/json",
89485          "application/yaml",
89486          "application/vnd.kubernetes.protobuf"
89487        ],
89488        "responses": {
89489          "200": {
89490            "description": "OK",
89491            "schema": {
89492              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.CSIStorageCapacity"
89493            }
89494          },
89495          "201": {
89496            "description": "Created",
89497            "schema": {
89498              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.CSIStorageCapacity"
89499            }
89500          },
89501          "202": {
89502            "description": "Accepted",
89503            "schema": {
89504              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.CSIStorageCapacity"
89505            }
89506          },
89507          "401": {
89508            "description": "Unauthorized"
89509          }
89510        },
89511        "schemes": [
89512          "https"
89513        ],
89514        "tags": [
89515          "storage_v1beta1"
89516        ],
89517        "x-kubernetes-action": "post",
89518        "x-kubernetes-group-version-kind": {
89519          "group": "storage.k8s.io",
89520          "kind": "CSIStorageCapacity",
89521          "version": "v1beta1"
89522        }
89523      }
89524    },
89525    "/apis/storage.k8s.io/v1beta1/namespaces/{namespace}/csistoragecapacities/{name}": {
89526      "delete": {
89527        "consumes": [
89528          "*/*"
89529        ],
89530        "description": "delete a CSIStorageCapacity",
89531        "operationId": "deleteStorageV1beta1NamespacedCSIStorageCapacity",
89532        "parameters": [
89533          {
89534            "in": "body",
89535            "name": "body",
89536            "schema": {
89537              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
89538            }
89539          },
89540          {
89541            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
89542            "in": "query",
89543            "name": "dryRun",
89544            "type": "string",
89545            "uniqueItems": true
89546          },
89547          {
89548            "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
89549            "in": "query",
89550            "name": "gracePeriodSeconds",
89551            "type": "integer",
89552            "uniqueItems": true
89553          },
89554          {
89555            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
89556            "in": "query",
89557            "name": "orphanDependents",
89558            "type": "boolean",
89559            "uniqueItems": true
89560          },
89561          {
89562            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
89563            "in": "query",
89564            "name": "propagationPolicy",
89565            "type": "string",
89566            "uniqueItems": true
89567          }
89568        ],
89569        "produces": [
89570          "application/json",
89571          "application/yaml",
89572          "application/vnd.kubernetes.protobuf"
89573        ],
89574        "responses": {
89575          "200": {
89576            "description": "OK",
89577            "schema": {
89578              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
89579            }
89580          },
89581          "202": {
89582            "description": "Accepted",
89583            "schema": {
89584              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
89585            }
89586          },
89587          "401": {
89588            "description": "Unauthorized"
89589          }
89590        },
89591        "schemes": [
89592          "https"
89593        ],
89594        "tags": [
89595          "storage_v1beta1"
89596        ],
89597        "x-kubernetes-action": "delete",
89598        "x-kubernetes-group-version-kind": {
89599          "group": "storage.k8s.io",
89600          "kind": "CSIStorageCapacity",
89601          "version": "v1beta1"
89602        }
89603      },
89604      "get": {
89605        "consumes": [
89606          "*/*"
89607        ],
89608        "description": "read the specified CSIStorageCapacity",
89609        "operationId": "readStorageV1beta1NamespacedCSIStorageCapacity",
89610        "produces": [
89611          "application/json",
89612          "application/yaml",
89613          "application/vnd.kubernetes.protobuf"
89614        ],
89615        "responses": {
89616          "200": {
89617            "description": "OK",
89618            "schema": {
89619              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.CSIStorageCapacity"
89620            }
89621          },
89622          "401": {
89623            "description": "Unauthorized"
89624          }
89625        },
89626        "schemes": [
89627          "https"
89628        ],
89629        "tags": [
89630          "storage_v1beta1"
89631        ],
89632        "x-kubernetes-action": "get",
89633        "x-kubernetes-group-version-kind": {
89634          "group": "storage.k8s.io",
89635          "kind": "CSIStorageCapacity",
89636          "version": "v1beta1"
89637        }
89638      },
89639      "parameters": [
89640        {
89641          "description": "name of the CSIStorageCapacity",
89642          "in": "path",
89643          "name": "name",
89644          "required": true,
89645          "type": "string",
89646          "uniqueItems": true
89647        },
89648        {
89649          "description": "object name and auth scope, such as for teams and projects",
89650          "in": "path",
89651          "name": "namespace",
89652          "required": true,
89653          "type": "string",
89654          "uniqueItems": true
89655        },
89656        {
89657          "description": "If 'true', then the output is pretty printed.",
89658          "in": "query",
89659          "name": "pretty",
89660          "type": "string",
89661          "uniqueItems": true
89662        }
89663      ],
89664      "patch": {
89665        "consumes": [
89666          "application/json-patch+json",
89667          "application/merge-patch+json",
89668          "application/strategic-merge-patch+json",
89669          "application/apply-patch+yaml"
89670        ],
89671        "description": "partially update the specified CSIStorageCapacity",
89672        "operationId": "patchStorageV1beta1NamespacedCSIStorageCapacity",
89673        "parameters": [
89674          {
89675            "in": "body",
89676            "name": "body",
89677            "required": true,
89678            "schema": {
89679              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
89680            }
89681          },
89682          {
89683            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
89684            "in": "query",
89685            "name": "dryRun",
89686            "type": "string",
89687            "uniqueItems": true
89688          },
89689          {
89690            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
89691            "in": "query",
89692            "name": "fieldManager",
89693            "type": "string",
89694            "uniqueItems": true
89695          },
89696          {
89697            "description": "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.",
89698            "in": "query",
89699            "name": "force",
89700            "type": "boolean",
89701            "uniqueItems": true
89702          }
89703        ],
89704        "produces": [
89705          "application/json",
89706          "application/yaml",
89707          "application/vnd.kubernetes.protobuf"
89708        ],
89709        "responses": {
89710          "200": {
89711            "description": "OK",
89712            "schema": {
89713              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.CSIStorageCapacity"
89714            }
89715          },
89716          "201": {
89717            "description": "Created",
89718            "schema": {
89719              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.CSIStorageCapacity"
89720            }
89721          },
89722          "401": {
89723            "description": "Unauthorized"
89724          }
89725        },
89726        "schemes": [
89727          "https"
89728        ],
89729        "tags": [
89730          "storage_v1beta1"
89731        ],
89732        "x-kubernetes-action": "patch",
89733        "x-kubernetes-group-version-kind": {
89734          "group": "storage.k8s.io",
89735          "kind": "CSIStorageCapacity",
89736          "version": "v1beta1"
89737        }
89738      },
89739      "put": {
89740        "consumes": [
89741          "*/*"
89742        ],
89743        "description": "replace the specified CSIStorageCapacity",
89744        "operationId": "replaceStorageV1beta1NamespacedCSIStorageCapacity",
89745        "parameters": [
89746          {
89747            "in": "body",
89748            "name": "body",
89749            "required": true,
89750            "schema": {
89751              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.CSIStorageCapacity"
89752            }
89753          },
89754          {
89755            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
89756            "in": "query",
89757            "name": "dryRun",
89758            "type": "string",
89759            "uniqueItems": true
89760          },
89761          {
89762            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
89763            "in": "query",
89764            "name": "fieldManager",
89765            "type": "string",
89766            "uniqueItems": true
89767          }
89768        ],
89769        "produces": [
89770          "application/json",
89771          "application/yaml",
89772          "application/vnd.kubernetes.protobuf"
89773        ],
89774        "responses": {
89775          "200": {
89776            "description": "OK",
89777            "schema": {
89778              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.CSIStorageCapacity"
89779            }
89780          },
89781          "201": {
89782            "description": "Created",
89783            "schema": {
89784              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.CSIStorageCapacity"
89785            }
89786          },
89787          "401": {
89788            "description": "Unauthorized"
89789          }
89790        },
89791        "schemes": [
89792          "https"
89793        ],
89794        "tags": [
89795          "storage_v1beta1"
89796        ],
89797        "x-kubernetes-action": "put",
89798        "x-kubernetes-group-version-kind": {
89799          "group": "storage.k8s.io",
89800          "kind": "CSIStorageCapacity",
89801          "version": "v1beta1"
89802        }
89803      }
89804    },
89805    "/apis/storage.k8s.io/v1beta1/watch/csistoragecapacities": {
89806      "get": {
89807        "consumes": [
89808          "*/*"
89809        ],
89810        "description": "watch individual changes to a list of CSIStorageCapacity. deprecated: use the 'watch' parameter with a list operation instead.",
89811        "operationId": "watchStorageV1beta1CSIStorageCapacityListForAllNamespaces",
89812        "produces": [
89813          "application/json",
89814          "application/yaml",
89815          "application/vnd.kubernetes.protobuf",
89816          "application/json;stream=watch",
89817          "application/vnd.kubernetes.protobuf;stream=watch"
89818        ],
89819        "responses": {
89820          "200": {
89821            "description": "OK",
89822            "schema": {
89823              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
89824            }
89825          },
89826          "401": {
89827            "description": "Unauthorized"
89828          }
89829        },
89830        "schemes": [
89831          "https"
89832        ],
89833        "tags": [
89834          "storage_v1beta1"
89835        ],
89836        "x-kubernetes-action": "watchlist",
89837        "x-kubernetes-group-version-kind": {
89838          "group": "storage.k8s.io",
89839          "kind": "CSIStorageCapacity",
89840          "version": "v1beta1"
89841        }
89842      },
89843      "parameters": [
89844        {
89845          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
89846          "in": "query",
89847          "name": "allowWatchBookmarks",
89848          "type": "boolean",
89849          "uniqueItems": true
89850        },
89851        {
89852          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
89853          "in": "query",
89854          "name": "continue",
89855          "type": "string",
89856          "uniqueItems": true
89857        },
89858        {
89859          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
89860          "in": "query",
89861          "name": "fieldSelector",
89862          "type": "string",
89863          "uniqueItems": true
89864        },
89865        {
89866          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
89867          "in": "query",
89868          "name": "labelSelector",
89869          "type": "string",
89870          "uniqueItems": true
89871        },
89872        {
89873          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
89874          "in": "query",
89875          "name": "limit",
89876          "type": "integer",
89877          "uniqueItems": true
89878        },
89879        {
89880          "description": "If 'true', then the output is pretty printed.",
89881          "in": "query",
89882          "name": "pretty",
89883          "type": "string",
89884          "uniqueItems": true
89885        },
89886        {
89887          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
89888          "in": "query",
89889          "name": "resourceVersion",
89890          "type": "string",
89891          "uniqueItems": true
89892        },
89893        {
89894          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
89895          "in": "query",
89896          "name": "resourceVersionMatch",
89897          "type": "string",
89898          "uniqueItems": true
89899        },
89900        {
89901          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
89902          "in": "query",
89903          "name": "timeoutSeconds",
89904          "type": "integer",
89905          "uniqueItems": true
89906        },
89907        {
89908          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
89909          "in": "query",
89910          "name": "watch",
89911          "type": "boolean",
89912          "uniqueItems": true
89913        }
89914      ]
89915    },
89916    "/apis/storage.k8s.io/v1beta1/watch/namespaces/{namespace}/csistoragecapacities": {
89917      "get": {
89918        "consumes": [
89919          "*/*"
89920        ],
89921        "description": "watch individual changes to a list of CSIStorageCapacity. deprecated: use the 'watch' parameter with a list operation instead.",
89922        "operationId": "watchStorageV1beta1NamespacedCSIStorageCapacityList",
89923        "produces": [
89924          "application/json",
89925          "application/yaml",
89926          "application/vnd.kubernetes.protobuf",
89927          "application/json;stream=watch",
89928          "application/vnd.kubernetes.protobuf;stream=watch"
89929        ],
89930        "responses": {
89931          "200": {
89932            "description": "OK",
89933            "schema": {
89934              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
89935            }
89936          },
89937          "401": {
89938            "description": "Unauthorized"
89939          }
89940        },
89941        "schemes": [
89942          "https"
89943        ],
89944        "tags": [
89945          "storage_v1beta1"
89946        ],
89947        "x-kubernetes-action": "watchlist",
89948        "x-kubernetes-group-version-kind": {
89949          "group": "storage.k8s.io",
89950          "kind": "CSIStorageCapacity",
89951          "version": "v1beta1"
89952        }
89953      },
89954      "parameters": [
89955        {
89956          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
89957          "in": "query",
89958          "name": "allowWatchBookmarks",
89959          "type": "boolean",
89960          "uniqueItems": true
89961        },
89962        {
89963          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
89964          "in": "query",
89965          "name": "continue",
89966          "type": "string",
89967          "uniqueItems": true
89968        },
89969        {
89970          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
89971          "in": "query",
89972          "name": "fieldSelector",
89973          "type": "string",
89974          "uniqueItems": true
89975        },
89976        {
89977          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
89978          "in": "query",
89979          "name": "labelSelector",
89980          "type": "string",
89981          "uniqueItems": true
89982        },
89983        {
89984          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
89985          "in": "query",
89986          "name": "limit",
89987          "type": "integer",
89988          "uniqueItems": true
89989        },
89990        {
89991          "description": "object name and auth scope, such as for teams and projects",
89992          "in": "path",
89993          "name": "namespace",
89994          "required": true,
89995          "type": "string",
89996          "uniqueItems": true
89997        },
89998        {
89999          "description": "If 'true', then the output is pretty printed.",
90000          "in": "query",
90001          "name": "pretty",
90002          "type": "string",
90003          "uniqueItems": true
90004        },
90005        {
90006          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
90007          "in": "query",
90008          "name": "resourceVersion",
90009          "type": "string",
90010          "uniqueItems": true
90011        },
90012        {
90013          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
90014          "in": "query",
90015          "name": "resourceVersionMatch",
90016          "type": "string",
90017          "uniqueItems": true
90018        },
90019        {
90020          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
90021          "in": "query",
90022          "name": "timeoutSeconds",
90023          "type": "integer",
90024          "uniqueItems": true
90025        },
90026        {
90027          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
90028          "in": "query",
90029          "name": "watch",
90030          "type": "boolean",
90031          "uniqueItems": true
90032        }
90033      ]
90034    },
90035    "/apis/storage.k8s.io/v1beta1/watch/namespaces/{namespace}/csistoragecapacities/{name}": {
90036      "get": {
90037        "consumes": [
90038          "*/*"
90039        ],
90040        "description": "watch changes to an object of kind CSIStorageCapacity. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.",
90041        "operationId": "watchStorageV1beta1NamespacedCSIStorageCapacity",
90042        "produces": [
90043          "application/json",
90044          "application/yaml",
90045          "application/vnd.kubernetes.protobuf",
90046          "application/json;stream=watch",
90047          "application/vnd.kubernetes.protobuf;stream=watch"
90048        ],
90049        "responses": {
90050          "200": {
90051            "description": "OK",
90052            "schema": {
90053              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
90054            }
90055          },
90056          "401": {
90057            "description": "Unauthorized"
90058          }
90059        },
90060        "schemes": [
90061          "https"
90062        ],
90063        "tags": [
90064          "storage_v1beta1"
90065        ],
90066        "x-kubernetes-action": "watch",
90067        "x-kubernetes-group-version-kind": {
90068          "group": "storage.k8s.io",
90069          "kind": "CSIStorageCapacity",
90070          "version": "v1beta1"
90071        }
90072      },
90073      "parameters": [
90074        {
90075          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
90076          "in": "query",
90077          "name": "allowWatchBookmarks",
90078          "type": "boolean",
90079          "uniqueItems": true
90080        },
90081        {
90082          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
90083          "in": "query",
90084          "name": "continue",
90085          "type": "string",
90086          "uniqueItems": true
90087        },
90088        {
90089          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
90090          "in": "query",
90091          "name": "fieldSelector",
90092          "type": "string",
90093          "uniqueItems": true
90094        },
90095        {
90096          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
90097          "in": "query",
90098          "name": "labelSelector",
90099          "type": "string",
90100          "uniqueItems": true
90101        },
90102        {
90103          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
90104          "in": "query",
90105          "name": "limit",
90106          "type": "integer",
90107          "uniqueItems": true
90108        },
90109        {
90110          "description": "name of the CSIStorageCapacity",
90111          "in": "path",
90112          "name": "name",
90113          "required": true,
90114          "type": "string",
90115          "uniqueItems": true
90116        },
90117        {
90118          "description": "object name and auth scope, such as for teams and projects",
90119          "in": "path",
90120          "name": "namespace",
90121          "required": true,
90122          "type": "string",
90123          "uniqueItems": true
90124        },
90125        {
90126          "description": "If 'true', then the output is pretty printed.",
90127          "in": "query",
90128          "name": "pretty",
90129          "type": "string",
90130          "uniqueItems": true
90131        },
90132        {
90133          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
90134          "in": "query",
90135          "name": "resourceVersion",
90136          "type": "string",
90137          "uniqueItems": true
90138        },
90139        {
90140          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
90141          "in": "query",
90142          "name": "resourceVersionMatch",
90143          "type": "string",
90144          "uniqueItems": true
90145        },
90146        {
90147          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
90148          "in": "query",
90149          "name": "timeoutSeconds",
90150          "type": "integer",
90151          "uniqueItems": true
90152        },
90153        {
90154          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
90155          "in": "query",
90156          "name": "watch",
90157          "type": "boolean",
90158          "uniqueItems": true
90159        }
90160      ]
90161    },
90162    "/logs/": {
90163      "get": {
90164        "operationId": "logFileListHandler",
90165        "responses": {
90166          "401": {
90167            "description": "Unauthorized"
90168          }
90169        },
90170        "schemes": [
90171          "https"
90172        ],
90173        "tags": [
90174          "logs"
90175        ]
90176      }
90177    },
90178    "/logs/{logpath}": {
90179      "get": {
90180        "operationId": "logFileHandler",
90181        "responses": {
90182          "401": {
90183            "description": "Unauthorized"
90184          }
90185        },
90186        "schemes": [
90187          "https"
90188        ],
90189        "tags": [
90190          "logs"
90191        ]
90192      },
90193      "parameters": [
90194        {
90195          "description": "path to the log",
90196          "in": "path",
90197          "name": "logpath",
90198          "required": true,
90199          "type": "string",
90200          "uniqueItems": true
90201        }
90202      ]
90203    },
90204    "/openid/v1/jwks/": {
90205      "get": {
90206        "description": "get service account issuer OpenID JSON Web Key Set (contains public token verification keys)",
90207        "operationId": "getServiceAccountIssuerOpenIDKeyset",
90208        "produces": [
90209          "application/jwk-set+json"
90210        ],
90211        "responses": {
90212          "200": {
90213            "description": "OK",
90214            "schema": {
90215              "type": "string"
90216            }
90217          },
90218          "401": {
90219            "description": "Unauthorized"
90220          }
90221        },
90222        "schemes": [
90223          "https"
90224        ],
90225        "tags": [
90226          "openid"
90227        ]
90228      }
90229    },
90230    "/version/": {
90231      "get": {
90232        "consumes": [
90233          "application/json"
90234        ],
90235        "description": "get the code version",
90236        "operationId": "getCodeVersion",
90237        "produces": [
90238          "application/json"
90239        ],
90240        "responses": {
90241          "200": {
90242            "description": "OK",
90243            "schema": {
90244              "$ref": "#/definitions/io.k8s.apimachinery.pkg.version.Info"
90245            }
90246          },
90247          "401": {
90248            "description": "Unauthorized"
90249          }
90250        },
90251        "schemes": [
90252          "https"
90253        ],
90254        "tags": [
90255          "version"
90256        ]
90257      }
90258    }
90259  },
90260  "security": [
90261    {
90262      "BearerToken": []
90263    }
90264  ],
90265  "securityDefinitions": {
90266    "BearerToken": {
90267      "description": "Bearer Token authentication",
90268      "in": "header",
90269      "name": "authorization",
90270      "type": "apiKey"
90271    }
90272  },
90273  "swagger": "2.0"
90274}
90275